log in as an OSBv2 user to get more resources and persisted workspaces.`);
+ }
html_message = progressMessage.html();
}
if (html_message) {
diff --git a/applications/jupyterlab-minimal/deploy/values.yaml b/applications/jupyterlab-minimal/deploy/values.yaml
index fc99dbec9..0779371e7 100644
--- a/applications/jupyterlab-minimal/deploy/values.yaml
+++ b/applications/jupyterlab-minimal/deploy/values.yaml
@@ -22,3 +22,9 @@ harness:
c.JupyterHub.tornado_settings = { "headers": { "Content-Security-Policy": "frame-ancestors *"}}
+singleuser:
+ storage:
+ capacity: 2Mi
+ cpu:
+ limit: 3
+ guarantee: 0.13
\ No newline at end of file
diff --git a/applications/jupyterlab/Dockerfile b/applications/jupyterlab/Dockerfile
index 151473ad1..ecf6a4e40 100644
--- a/applications/jupyterlab/Dockerfile
+++ b/applications/jupyterlab/Dockerfile
@@ -31,7 +31,6 @@ RUN pip install -r requirements.txt --upgrade --no-cache-dir
RUN jupyter labextension install plotlywidget
-
##############
USER root
@@ -44,6 +43,10 @@ RUN echo -e '#!/bin/bash\n#Reusing the jNeuroML jar from the pip installed pyNeu
RUN chmod +x /opt/conda/bin/jnml
ENV JNML_HOME=/opt/conda/bin
+### Set up lems, reusing pynml jar
+RUN echo -e '#!/bin/bash\n#Reusing the jNeuroML jar from the pip installed pyNeuroML for the lems command\n\njava -classpath /opt/conda/lib/python3.9/site-packages/pyneuroml/lib/jNeuroML-*-jar-with-dependencies.jar org.lemsml.jlems.viz.VizMain $@' >> /opt/conda/bin/lems
+RUN chmod +x /opt/conda/bin/lems
+
RUN cat ~/.bashrc
@@ -84,13 +87,34 @@ RUN apt-get update && apt-get install libopenmpi-dev -y
# Octave etc.
RUN apt-get update && apt-get install octave octave-statistics -y
+# NEST
+ENV NEST_VER=3.5
+ENV NEST_HOME=/opt/conda/nest
+RUN cd /tmp && \
+ wget -nv https://github.com/nest/nest-simulator/archive/v$NEST_VER.tar.gz && \
+ tar xvzf v$NEST_VER.tar.gz && \
+ mv nest-simulator-$NEST_VER nest && \
+ cd nest && \
+ mkdir $NEST_HOME && \
+ apt-get install libgsl-dev -y && \
+ cmake -DCMAKE_INSTALL_PREFIX:PATH=$NEST_HOME -DPYTHON_EXECUTABLE:FILEPATH=/opt/conda/bin/python -DPYTHON_INCLUDE_DIR=/opt/conda/include/python3.9 . && \
+ make -j7 && \
+ make install
+ENV PYTHONPATH=$NEST_HOME/lib/python3.9/site-packages
+ENV PATH=$PATH:$NEST_HOME/bin
+
USER jovyan
#### Install Python packages
RUN pip install -r requirements.txt --upgrade --no-cache-dir
+# Compile NEURON mod files for PyNN
+RUN cd /opt/conda/lib/python3.9/site-packages/pyNN/neuron/nmodl && nrnivmodl
+# See https://github.com/OpenSourceBrain/osb-model-validation/issues/91 for status of this
+RUN pip install 'numpy<=1.23.0' # temp fix for https://levelup.gitconnected.com/fix-attributeerror-module-numpy-has-no-attribute-float-d7d68c5a4971
+
#########################################################################
# fix for https://github.com/jupyter/notebook/issues/7048
-
RUN pip install traitlets==5.9.0
+
COPY --chown=jovyan:users overrides/* /opt/conda/share/jupyter/lab/static/
WORKDIR /opt/workspace
diff --git a/applications/jupyterlab/deploy/values.yaml b/applications/jupyterlab/deploy/values.yaml
index 838cbce41..20f1675cb 100755
--- a/applications/jupyterlab/deploy/values.yaml
+++ b/applications/jupyterlab/deploy/values.yaml
@@ -22,3 +22,10 @@ harness:
c.JupyterHub.tornado_settings = { "headers": { "Content-Security-Policy": "frame-ancestors 'self' localhost:3000 *.osb.local osb.local localhost *.metacell.us *.opensourcebrain.org "}}
+singleuser:
+ cpu:
+ limit: 0.1
+ guarantee: 0.02
+ memory:
+ limit: 0.5G
+ guarantee: 0.1G
\ No newline at end of file
diff --git a/applications/jupyterlab/requirements.txt b/applications/jupyterlab/requirements.txt
index c822378c1..9f0bb0c57 100644
--- a/applications/jupyterlab/requirements.txt
+++ b/applications/jupyterlab/requirements.txt
@@ -11,7 +11,7 @@ git+https://github.com/Neurosim-lab/netpyne.git@osbv2#egg=netpyne
#### Other simulators
# Arbor
-arbor==0.6.0
+arbor==0.9.0
# EDEN
eden-simulator==0.2.1
@@ -42,10 +42,10 @@ seaborn
# Note: this just installs pytorch for cpu, the default install adds a v large cuda lib
-f https://download.pytorch.org/whl/torch_stable.html
-torch==1.11.0+cpu
+torch==2.1.2+cpu
# For MDF
-modeci_mdf==0.4.5 # big jump in size of image...
+modeci_mdf==0.4.8 # big jump in size of image...
scikit-learn # Required for some Neuromatch Academy material
fasttext # Required for some Neuromatch Academy material
@@ -57,8 +57,18 @@ tvb-data
ipympl
+#### SBML/COMBINE packages
+python-libsbml
+tellurium
+
+
#### General Python packages
plotly
+
+#### Install OMV
+git+https://github.com/OpenSourceBrain/osb-model-validation.git@v0.2.15
+
+
#### Final updates
numpy # Removes some issues with LFPy...
\ No newline at end of file
diff --git a/applications/netpyne/Dockerfile b/applications/netpyne/Dockerfile
index 1b8f38a48..a1bccee03 100644
--- a/applications/netpyne/Dockerfile
+++ b/applications/netpyne/Dockerfile
@@ -1,4 +1,4 @@
-FROM gcr.io/metacellllc/netpyne-ui:1.0.0-osb
+FROM gcr.io/metacellllc/netpyne-ui:1.1.0
COPY overrides/requirements.txt overrides/requirements.txt
RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip &&\
diff --git a/applications/netpyne/deploy/values.yaml b/applications/netpyne/deploy/values.yaml
index de881486a..ed0426133 100644
--- a/applications/netpyne/deploy/values.yaml
+++ b/applications/netpyne/deploy/values.yaml
@@ -18,4 +18,11 @@ harness:
c.JupyterHub.tornado_settings = { "headers": { "Content-Security-Policy": "frame-ancestors 'self' localhost:3000 *.osb.local localhost *.metacell.us *.opensourcebrain.org "}}
dependencies:
hard:
- - jupyterhub
\ No newline at end of file
+ - jupyterhub
+singleuser:
+ cpu:
+ limit: 1
+ guarantee: 0.02
+ memory:
+ limit: 1G
+ guarantee: 0.5G
\ No newline at end of file
diff --git a/applications/nfsserver/deploy/values.yaml b/applications/nfsserver/deploy/values.yaml
index 067ce3c48..e6e80d7d1 100644
--- a/applications/nfsserver/deploy/values.yaml
+++ b/applications/nfsserver/deploy/values.yaml
@@ -1,4 +1,3 @@
-
# nfs server pvc disk size (/exports)
server:
- diskSize: 90Gi
+ diskSize: 120Gi
diff --git a/applications/nwb-explorer/.dockerignore b/applications/nwb-explorer/.dockerignore
index b8cad24a2..e97689c6f 100644
--- a/applications/nwb-explorer/.dockerignore
+++ b/applications/nwb-explorer/.dockerignore
@@ -1 +1,2 @@
-/deploy
\ No newline at end of file
+/deploy
+.git
\ No newline at end of file
diff --git a/applications/nwb-explorer/Dockerfile b/applications/nwb-explorer/Dockerfile
index c1ed7f37b..5871da33b 100644
--- a/applications/nwb-explorer/Dockerfile
+++ b/applications/nwb-explorer/Dockerfile
@@ -1,23 +1,14 @@
-FROM node:15 as clone
-ENV BRANCH_TAG="v0.7.0"
-ENV REPO=https://github.com/MetaCell/nwb-explorer.git
-RUN echo "cache 2023-12-23"
-RUN git clone $REPO -b $BRANCH_TAG
-RUN rm -Rf .git
-
-FROM node:15 as jsbuild
+FROM node:20 as jsbuild
ENV FOLDER=nwb-explorer
-
-
WORKDIR $FOLDER/webapp
-COPY --from=clone nwb-explorer/webapp/package.json .
-COPY --from=clone nwb-explorer/webapp/package-lock.json .
+COPY dependencies/nwb-explorer/webapp/package.json .
+COPY dependencies/nwb-explorer/webapp/yarn.lock .
RUN yarn install --network-timeout 1000000000
-COPY --from=clone nwb-explorer/webapp/ .
+COPY dependencies/nwb-explorer/webapp/ .
COPY geppetto/GeppettoConfiguration.json GeppettoConfiguration.json
RUN yarn build
@@ -40,23 +31,21 @@ RUN apt-get update -qq &&\
RUN chown $NB_UID /opt
RUN chown $NB_UID .
-
-
USER $NB_UID
-COPY --from=clone $FOLDER/requirements.txt requirements.txt
+COPY dependencies/nwb-explorer/requirements.txt requirements.txt
RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip &&\
pip install -r requirements.txt
RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip &&\
pip install cython --no-cache-dir
-COPY --from=clone $FOLDER .
+COPY dependencies/nwb-explorer/ .
RUN mkdir -p /opt/workspace
RUN ln -s /opt/workspace workspace
RUN mkdir -p /opt/home
RUN python utilities/install.py --npm-skip --no-test
-COPY --from=clone $FOLDER/utilities/custom.css /home/jovyan/.jupyter/custom/custom.css
+COPY dependencies/nwb-explorer/utilities/custom.css /home/jovyan/.jupyter/custom/custom.css
# this removes the frame ancestor default cors settings
RUN rm -f ~/.jupyter/*.json
diff --git a/applications/nwb-explorer/deploy/values.yaml b/applications/nwb-explorer/deploy/values.yaml
index ee5269d54..369a7dfca 100644
--- a/applications/nwb-explorer/deploy/values.yaml
+++ b/applications/nwb-explorer/deploy/values.yaml
@@ -4,6 +4,10 @@ harness:
auto: false
port: 80
name: proxy-public
+ dependencies:
+ git:
+ - url: https://github.com/MetaCell/nwb-explorer.git
+ branch_tag: development
jupyterhub:
args: ["--debug", "--NotebookApp.default_url=/geppetto", "--library=nwb_explorer", "--NotebookApp.notebook_dir=/opt/workspace"]
applicationHook: "osb_jupyter.change_pod_manifest"
diff --git a/applications/osb-portal/deploy/values-minimal.yaml b/applications/osb-portal/deploy/values-minimal.yaml
index 1b6a8b04c..91ac27755 100644
--- a/applications/osb-portal/deploy/values-minimal.yaml
+++ b/applications/osb-portal/deploy/values-minimal.yaml
@@ -6,5 +6,5 @@ harness:
- workspaces
- jupyterhub
- notifications
- - jupyterlab-minimal
+ - nwb-explorer
diff --git a/applications/osb-portal/package-lock.json b/applications/osb-portal/package-lock.json
index 5dead15e8..536f91b49 100644
--- a/applications/osb-portal/package-lock.json
+++ b/applications/osb-portal/package-lock.json
@@ -19,7 +19,7 @@
"@reduxjs/toolkit": "^1.9.3",
"@sentry/react": "^6.3.5",
"assert": "^2.0.0",
- "axios": "^0.21.4",
+ "axios": "^1.6.5",
"keycloak-js": "^12.0.0",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.21",
@@ -122,11 +122,15 @@
}
},
"node_modules/@babel/code-frame": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
- "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
+ "version": "7.23.5",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
+ "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
"dependencies": {
- "@babel/highlight": "^7.10.4"
+ "@babel/highlight": "^7.23.4",
+ "chalk": "^2.4.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
@@ -166,42 +170,10 @@
"url": "https://opencollective.com/babel"
}
},
- "node_modules/@babel/core/node_modules/@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "dependencies": {
- "@babel/highlight": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core/node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core/node_modules/@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/core/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"bin": {
"semver": "bin/semver.js"
}
@@ -234,21 +206,22 @@
}
},
"node_modules/@babel/eslint-parser/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/generator": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz",
- "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz",
+ "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==",
"dependencies": {
- "@babel/types": "^7.19.3",
+ "@babel/types": "^7.23.6",
"@jridgewell/gen-mapping": "^0.3.2",
+ "@jridgewell/trace-mapping": "^0.3.17",
"jsesc": "^2.5.1"
},
"engines": {
@@ -298,9 +271,9 @@
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"bin": {
"semver": "bin/semver.js"
}
@@ -360,18 +333,18 @@
}
},
"node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-environment-visitor": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
- "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+ "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
"engines": {
"node": ">=6.9.0"
}
@@ -389,23 +362,23 @@
}
},
"node_modules/@babel/helper-function-name": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz",
- "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==",
+ "version": "7.23.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
+ "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
"dependencies": {
- "@babel/template": "^7.18.10",
- "@babel/types": "^7.19.0"
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.23.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-hoist-variables": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
- "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
+ "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -452,14 +425,6 @@
"node": ">=6.9.0"
}
},
- "node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/helper-optimise-call-expression": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
@@ -538,28 +503,31 @@
}
},
"node_modules/@babel/helper-split-export-declaration": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
- "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
+ "version": "7.22.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
+ "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.18.10",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
- "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz",
+ "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
- "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
},
"node_modules/@babel/helper-validator-option": {
"version": "7.18.6",
@@ -598,19 +566,22 @@
}
},
"node_modules/@babel/highlight": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
- "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz",
+ "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "chalk": "^2.0.0",
+ "@babel/helper-validator-identifier": "^7.22.20",
+ "chalk": "^2.4.2",
"js-tokens": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz",
- "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz",
+ "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==",
"bin": {
"parser": "bin/babel-parser.js"
},
@@ -1431,15 +1402,6 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-transform-modules-systemjs/node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/plugin-transform-modules-umd": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
@@ -1836,9 +1798,9 @@
}
},
"node_modules/@babel/preset-env/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -1892,102 +1854,38 @@
}
},
"node_modules/@babel/template": {
- "version": "7.18.10",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
- "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
- "dependencies": {
- "@babel/code-frame": "^7.18.6",
- "@babel/parser": "^7.18.10",
- "@babel/types": "^7.18.10"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/template/node_modules/@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "dependencies": {
- "@babel/highlight": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/template/node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/template/node_modules/@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
+ "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
+ "@babel/code-frame": "^7.22.13",
+ "@babel/parser": "^7.22.15",
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz",
- "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==",
- "dependencies": {
- "@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.19.3",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.19.0",
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/parser": "^7.19.3",
- "@babel/types": "^7.19.3",
- "debug": "^4.1.0",
+ "version": "7.23.7",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz",
+ "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==",
+ "dependencies": {
+ "@babel/code-frame": "^7.23.5",
+ "@babel/generator": "^7.23.6",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-hoist-variables": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "@babel/parser": "^7.23.6",
+ "@babel/types": "^7.23.6",
+ "debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
- "node_modules/@babel/traverse/node_modules/@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "dependencies": {
- "@babel/highlight": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse/node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse/node_modules/@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/traverse/node_modules/globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
@@ -1997,26 +1895,18 @@
}
},
"node_modules/@babel/types": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz",
- "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz",
+ "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==",
"dependencies": {
- "@babel/helper-string-parser": "^7.18.10",
- "@babel/helper-validator-identifier": "^7.19.1",
+ "@babel/helper-string-parser": "^7.23.4",
+ "@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
- "node_modules/@babel/types/node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
@@ -3159,12 +3049,12 @@
"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.15",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz",
- "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==",
+ "version": "0.3.21",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.21.tgz",
+ "integrity": "sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==",
"dependencies": {
- "@jridgewell/resolve-uri": "^3.0.3",
- "@jridgewell/sourcemap-codec": "^1.4.10"
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"node_modules/@mui/base": {
@@ -4367,9 +4257,9 @@
"dev": true
},
"node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
@@ -4658,9 +4548,9 @@
"dev": true
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
@@ -5247,6 +5137,11 @@
"lodash": "^4.17.14"
}
},
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+ },
"node_modules/attr-accept": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.1.0.tgz",
@@ -5267,11 +5162,13 @@
}
},
"node_modules/axios": {
- "version": "0.21.4",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
- "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "version": "1.6.5",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.5.tgz",
+ "integrity": "sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==",
"dependencies": {
- "follow-redirects": "^1.14.0"
+ "follow-redirects": "^1.15.4",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
}
},
"node_modules/babel-eslint": {
@@ -5457,9 +5354,9 @@
}
},
"node_modules/babel-loader/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -5590,9 +5487,9 @@
}
},
"node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -6185,6 +6082,17 @@
"integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==",
"dev": true
},
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
"node_modules/comma-separated-tokens": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
@@ -6458,9 +6366,9 @@
}
},
"node_modules/css-loader/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
@@ -6659,6 +6567,14 @@
"node": ">=0.10.0"
}
},
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
"node_modules/depd": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
@@ -7447,9 +7363,9 @@
}
},
"node_modules/eslint-plugin-react/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -8228,9 +8144,9 @@
}
},
"node_modules/find-cache-dir/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -8292,9 +8208,9 @@
"dev": true
},
"node_modules/follow-redirects": {
- "version": "1.14.9",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz",
- "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==",
+ "version": "1.15.5",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz",
+ "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==",
"funding": [
{
"type": "individual",
@@ -8315,6 +8231,19 @@
"resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
"integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
},
+ "node_modules/form-data": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
"node_modules/forwarded": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
@@ -9555,9 +9484,9 @@
}
},
"node_modules/istanbul-lib-instrument/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -9602,9 +9531,9 @@
}
},
"node_modules/istanbul-lib-report/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -10311,55 +10240,6 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/jest-message-util/node_modules/@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "dev": true,
- "dependencies": {
- "@babel/highlight": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jest-message-util/node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jest-message-util/node_modules/@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
- "dev": true,
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jest-message-util/node_modules/@babel/highlight/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/jest-message-util/node_modules/chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
@@ -10430,18 +10310,6 @@
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true
},
- "node_modules/jest-message-util/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/jest-mock": {
"version": "29.1.1",
"resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.1.1.tgz",
@@ -10938,9 +10806,9 @@
}
},
"node_modules/jest-snapshot/node_modules/semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
@@ -12197,7 +12065,6 @@
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true,
"engines": {
"node": ">= 0.6"
}
@@ -12206,7 +12073,6 @@
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dev": true,
"dependencies": {
"mime-db": "1.52.0"
},
@@ -12285,10 +12151,15 @@
"dev": true
},
"node_modules/nanoid": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz",
- "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==",
- "dev": true,
+ "version": "3.3.7",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"bin": {
"nanoid": "bin/nanoid.cjs"
},
@@ -13029,21 +12900,30 @@
"dev": true
},
"node_modules/postcss": {
- "version": "8.2.13",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.13.tgz",
- "integrity": "sha512-FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ==",
- "dev": true,
+ "version": "8.4.33",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz",
+ "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"dependencies": {
- "colorette": "^1.2.2",
- "nanoid": "^3.1.22",
- "source-map": "^0.6.1"
+ "nanoid": "^3.3.7",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
},
"engines": {
"node": "^10 || ^12 || >=14"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-modules-extract-imports": {
@@ -13124,6 +13004,14 @@
"integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
"dev": true
},
+ "node_modules/postcss/node_modules/source-map-js": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
+ "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/prelude-ls": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
@@ -13276,6 +13164,11 @@
"node": ">= 0.10"
}
},
+ "node_modules/proxy-from-env": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
+ },
"node_modules/prr": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
@@ -14155,48 +14048,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/sanitize-html/node_modules/nanoid": {
- "version": "3.3.4",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
- "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
- "engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
- }
- },
- "node_modules/sanitize-html/node_modules/postcss": {
- "version": "8.4.17",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.17.tgz",
- "integrity": "sha512-UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- }
- ],
- "dependencies": {
- "nanoid": "^3.3.4",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/sanitize-html/node_modules/source-map-js": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
- "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/scheduler": {
"version": "0.23.0",
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
@@ -14251,9 +14102,9 @@
}
},
"node_modules/semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
"dev": true,
"bin": {
"semver": "bin/semver"
@@ -15163,9 +15014,9 @@
}
},
"node_modules/ts-loader/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
@@ -16163,9 +16014,9 @@
"dev": true
},
"node_modules/word-wrap": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
- "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
@@ -16390,11 +16241,12 @@
}
},
"@babel/code-frame": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
- "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
+ "version": "7.23.5",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
+ "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
"requires": {
- "@babel/highlight": "^7.10.4"
+ "@babel/highlight": "^7.23.4",
+ "chalk": "^2.4.2"
}
},
"@babel/compat-data": {
@@ -16424,33 +16276,10 @@
"semver": "^6.3.0"
},
"dependencies": {
- "@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "requires": {
- "@babel/highlight": "^7.18.6"
- }
- },
- "@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
- },
- "@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- },
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
}
}
},
@@ -16472,20 +16301,21 @@
"dev": true
},
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
},
"@babel/generator": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz",
- "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz",
+ "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==",
"requires": {
- "@babel/types": "^7.19.3",
+ "@babel/types": "^7.23.6",
"@jridgewell/gen-mapping": "^0.3.2",
+ "@jridgewell/trace-mapping": "^0.3.17",
"jsesc": "^2.5.1"
}
},
@@ -16520,9 +16350,9 @@
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
}
}
},
@@ -16566,17 +16396,17 @@
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
},
"@babel/helper-environment-visitor": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
- "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+ "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="
},
"@babel/helper-explode-assignable-expression": {
"version": "7.18.6",
@@ -16588,20 +16418,20 @@
}
},
"@babel/helper-function-name": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz",
- "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==",
+ "version": "7.23.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
+ "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
"requires": {
- "@babel/template": "^7.18.10",
- "@babel/types": "^7.19.0"
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.23.0"
}
},
"@babel/helper-hoist-variables": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
- "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
+ "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
"requires": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
}
},
"@babel/helper-member-expression-to-functions": {
@@ -16634,13 +16464,6 @@
"@babel/template": "^7.18.10",
"@babel/traverse": "^7.19.0",
"@babel/types": "^7.19.0"
- },
- "dependencies": {
- "@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
- }
}
},
"@babel/helper-optimise-call-expression": {
@@ -16700,22 +16523,22 @@
}
},
"@babel/helper-split-export-declaration": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
- "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
+ "version": "7.22.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
+ "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
"requires": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
}
},
"@babel/helper-string-parser": {
- "version": "7.18.10",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
- "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz",
+ "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ=="
},
"@babel/helper-validator-identifier": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
- "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
},
"@babel/helper-validator-option": {
"version": "7.18.6",
@@ -16745,19 +16568,19 @@
}
},
"@babel/highlight": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
- "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz",
+ "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==",
"requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "chalk": "^2.0.0",
+ "@babel/helper-validator-identifier": "^7.22.20",
+ "chalk": "^2.4.2",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz",
- "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ=="
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz",
+ "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ=="
},
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
"version": "7.18.6",
@@ -17290,14 +17113,6 @@
"@babel/helper-plugin-utils": "^7.19.0",
"@babel/helper-validator-identifier": "^7.18.6",
"babel-plugin-dynamic-import-node": "^2.3.3"
- },
- "dependencies": {
- "@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "dev": true
- }
}
},
"@babel/plugin-transform-modules-umd": {
@@ -17575,9 +17390,9 @@
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
@@ -17618,80 +17433,32 @@
}
},
"@babel/template": {
- "version": "7.18.10",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
- "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
+ "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
"requires": {
- "@babel/code-frame": "^7.18.6",
- "@babel/parser": "^7.18.10",
- "@babel/types": "^7.18.10"
- },
- "dependencies": {
- "@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "requires": {
- "@babel/highlight": "^7.18.6"
- }
- },
- "@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
- },
- "@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- }
+ "@babel/code-frame": "^7.22.13",
+ "@babel/parser": "^7.22.15",
+ "@babel/types": "^7.22.15"
}
},
"@babel/traverse": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz",
- "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==",
- "requires": {
- "@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.19.3",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.19.0",
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/parser": "^7.19.3",
- "@babel/types": "^7.19.3",
- "debug": "^4.1.0",
+ "version": "7.23.7",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz",
+ "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==",
+ "requires": {
+ "@babel/code-frame": "^7.23.5",
+ "@babel/generator": "^7.23.6",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-hoist-variables": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "@babel/parser": "^7.23.6",
+ "@babel/types": "^7.23.6",
+ "debug": "^4.3.1",
"globals": "^11.1.0"
},
"dependencies": {
- "@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "requires": {
- "@babel/highlight": "^7.18.6"
- }
- },
- "@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
- },
- "@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- },
"globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
@@ -17700,20 +17467,13 @@
}
},
"@babel/types": {
- "version": "7.19.3",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz",
- "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz",
+ "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==",
"requires": {
- "@babel/helper-string-parser": "^7.18.10",
- "@babel/helper-validator-identifier": "^7.19.1",
+ "@babel/helper-string-parser": "^7.23.4",
+ "@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
- },
- "dependencies": {
- "@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
- }
}
},
"@bcoe/v8-coverage": {
@@ -18582,12 +18342,12 @@
"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
},
"@jridgewell/trace-mapping": {
- "version": "0.3.15",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz",
- "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==",
+ "version": "0.3.21",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.21.tgz",
+ "integrity": "sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==",
"requires": {
- "@jridgewell/resolve-uri": "^3.0.3",
- "@jridgewell/sourcemap-codec": "^1.4.10"
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"@mui/base": {
@@ -19542,9 +19302,9 @@
"dev": true
},
"semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
@@ -19723,9 +19483,9 @@
"dev": true
},
"semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
@@ -20184,6 +19944,11 @@
"lodash": "^4.17.14"
}
},
+ "asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+ },
"attr-accept": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.1.0.tgz",
@@ -20195,11 +19960,13 @@
"integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="
},
"axios": {
- "version": "0.21.4",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
- "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "version": "1.6.5",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.5.tgz",
+ "integrity": "sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==",
"requires": {
- "follow-redirects": "^1.14.0"
+ "follow-redirects": "^1.15.4",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
}
},
"babel-eslint": {
@@ -20330,9 +20097,9 @@
}
},
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
@@ -20439,9 +20206,9 @@
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
@@ -20889,6 +20656,14 @@
"integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==",
"dev": true
},
+ "combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "requires": {
+ "delayed-stream": "~1.0.0"
+ }
+ },
"comma-separated-tokens": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
@@ -21094,9 +20869,9 @@
},
"dependencies": {
"semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
@@ -21250,6 +21025,11 @@
}
}
},
+ "delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
+ },
"depd": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
@@ -22009,9 +21789,9 @@
}
},
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
@@ -22412,9 +22192,9 @@
}
},
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
@@ -22462,15 +22242,25 @@
"dev": true
},
"follow-redirects": {
- "version": "1.14.9",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz",
- "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w=="
+ "version": "1.15.5",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz",
+ "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw=="
},
"foreach": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
"integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
},
+ "form-data": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ }
+ },
"forwarded": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
@@ -23344,9 +23134,9 @@
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
@@ -23378,9 +23168,9 @@
}
},
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
},
"supports-color": {
@@ -23972,45 +23762,6 @@
"stack-utils": "^2.0.3"
},
"dependencies": {
- "@babel/code-frame": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
- "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.18.6"
- }
- },
- "@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
- "dev": true
- },
- "@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "dependencies": {
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- }
- }
- },
"chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
@@ -24061,15 +23812,6 @@
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
}
}
},
@@ -24450,9 +24192,9 @@
"dev": true
},
"semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
@@ -25323,14 +25065,12 @@
"mime-db": {
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
},
"mime-types": {
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dev": true,
"requires": {
"mime-db": "1.52.0"
}
@@ -25394,10 +25134,9 @@
"dev": true
},
"nanoid": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz",
- "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==",
- "dev": true
+ "version": "3.3.7",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g=="
},
"native-request": {
"version": "1.1.0",
@@ -25964,14 +25703,20 @@
}
},
"postcss": {
- "version": "8.2.13",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.13.tgz",
- "integrity": "sha512-FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ==",
- "dev": true,
+ "version": "8.4.33",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz",
+ "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==",
"requires": {
- "colorette": "^1.2.2",
- "nanoid": "^3.1.22",
- "source-map": "^0.6.1"
+ "nanoid": "^3.3.7",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
+ "dependencies": {
+ "source-map-js": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
+ "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
+ }
}
},
"postcss-modules-extract-imports": {
@@ -26139,6 +25884,11 @@
}
}
},
+ "proxy-from-env": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
+ },
"prr": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
@@ -26762,26 +26512,6 @@
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
"integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="
- },
- "nanoid": {
- "version": "3.3.4",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
- "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="
- },
- "postcss": {
- "version": "8.4.17",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.17.tgz",
- "integrity": "sha512-UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q==",
- "requires": {
- "nanoid": "^3.3.4",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- }
- },
- "source-map-js": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
- "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
}
}
},
@@ -26829,9 +26559,9 @@
}
},
"semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
"dev": true
},
"send": {
@@ -27522,9 +27252,9 @@
"dev": true
},
"semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "version": "7.5.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
+ "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
@@ -28209,9 +27939,9 @@
"dev": true
},
"word-wrap": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
- "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
"dev": true
},
"wrap-ansi": {
diff --git a/applications/osb-portal/package.json b/applications/osb-portal/package.json
index d332027d9..ec3bfa62e 100644
--- a/applications/osb-portal/package.json
+++ b/applications/osb-portal/package.json
@@ -8,6 +8,7 @@
"start:dev": "webpack serve --progress --config webpack.dev.js --env DOMAIN=https://v2dev.opensourcebrain.org --env NAMESPACE=osb2dev --env NODE_OPTIONS='--max-old-space-size=12048'",
"start:prod": "webpack serve --progress --config webpack.dev.js --env DOMAIN=https://v2.opensourcebrain.org --env NAMESPACE=osb2 --env NODE_OPTIONS='--max-old-space-size=12048'",
"start:local": "webpack serve --progress --config webpack.dev.js --env DOMAIN=http://osb.local --env NAMESPACE=osblocal --env NODE_OPTIONS='--max-old-space-size=12048'",
+ "start:local-be": "webpack serve --progress --config webpack.dev.js --env APP_DOMAIN=http://localhost:8888 --env DOMAIN=https://osb.local --env WORKSPACES_DOMAIN=http://localhost:5001 --env NAMESPACE=osblocal --env NODE_OPTIONS='--max-old-space-size=12048'",
"start:dev-be": "webpack serve --progress --config webpack.dev.js --env DOMAIN=https://v2dev.opensourcebrain.org --env ACCOUNTS_API_DOMAIN=localhost:5001 --env WORKSPACES_DOMAIN=http://localhost:5001 --env NAMESPACE=osblocal --env NODE_OPTIONS='--max-old-space-size=12048'",
"start:dev-app": "webpack serve --progress --config webpack.dev.js --env APP_DOMAIN=https://localhost:8888 --env DOMAIN=https://v2.opensourcebrain.org --env NAMESPACE=osblocal --env NODE_OPTIONS='--max-old-space-size=12048'",
"start:local-app": "webpack serve --progress --config webpack.dev.js --env APP_DOMAIN=http://localhost:8888 --env DOMAIN=http://osb.local --env NAMESPACE=osblocal --env NODE_OPTIONS='--max-old-space-size=12048'",
@@ -34,7 +35,7 @@
"@reduxjs/toolkit": "^1.9.3",
"@sentry/react": "^6.3.5",
"assert": "^2.0.0",
- "axios": "^0.21.4",
+ "axios": "^1.6.5",
"keycloak-js": "^12.0.0",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.21",
diff --git a/applications/osb-portal/src/App.tsx b/applications/osb-portal/src/App.tsx
index 3296855de..55969787a 100644
--- a/applications/osb-portal/src/App.tsx
+++ b/applications/osb-portal/src/App.tsx
@@ -32,6 +32,7 @@ import {
import Box from "@mui/material/Box";
import { UserInfo } from "./types/user";
import SampleIframePage from "./pages/SampleIframePage";
+import NotFoundPage from "./pages/NotFoundPage";
declare module "@mui/styles/defaultTheme" {
// eslint-disable-next-line @typescript-eslint/no-empty-interface
@@ -43,9 +44,7 @@ const styles = {
minHeight: "100vh",
display: "flex",
flexDirection: "column",
- height: {
- md: "100vh",
- },
+ height: "100vh",
overflow: {
xs: "auto",
md: "hidden",
@@ -75,7 +74,7 @@ export const App = (props: AppProps) => {
return (
-
+
{!props.error && (
@@ -94,6 +93,34 @@ export const App = (props: AppProps) => {
}
/>
+
+
+
+ }
+ />
+
+
+
+ }
+ />
+ }
+ />
+
+
+
+ }
+ />
{
/>
}
/>
+ } />
diff --git a/applications/osb-portal/src/apiclient/workspaces/apis/RestApi.ts b/applications/osb-portal/src/apiclient/workspaces/apis/RestApi.ts
index 4cf0143f5..3b0123fb8 100644
--- a/applications/osb-portal/src/apiclient/workspaces/apis/RestApi.ts
+++ b/applications/osb-portal/src/apiclient/workspaces/apis/RestApi.ts
@@ -185,6 +185,11 @@ export interface WorkspaceresourcePostRequest {
workspaceResource: WorkspaceResource;
}
+export interface WorkspacesControllersOsbrepositoryControllerSetthumbnailRequest {
+ id: number;
+ thumbNail?: Blob;
+}
+
export interface WorkspacesControllersWorkspaceControllerAddimageRequest {
id: number;
image?: Blob;
@@ -1323,6 +1328,64 @@ export class RestApi extends runtime.BaseAPI {
return await response.value();
}
+ /**
+ * Sets the thumbnail of the workspace.
+ */
+ async workspacesControllersOsbrepositoryControllerSetthumbnailRaw(requestParameters: WorkspacesControllersOsbrepositoryControllerSetthumbnailRequest): Promise> {
+ if (requestParameters.id === null || requestParameters.id === undefined) {
+ throw new runtime.RequiredError('id','Required parameter requestParameters.id was null or undefined when calling workspacesControllersOsbrepositoryControllerSetthumbnail.');
+ }
+
+ const queryParameters: any = {};
+
+ const headerParameters: runtime.HTTPHeaders = {};
+
+ if (this.configuration && this.configuration.accessToken) {
+ const token = this.configuration.accessToken;
+ const tokenString = typeof token === 'function' ? token("bearerAuth", []) : token;
+
+ if (tokenString) {
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
+ }
+ }
+ const consumes: runtime.Consume[] = [
+ { contentType: 'multipart/form-data' },
+ ];
+ // @ts-ignore: canConsumeForm may be unused
+ const canConsumeForm = runtime.canConsumeForm(consumes);
+
+ let formParams: { append(param: string, value: any): any };
+ let useForm = false;
+ // use FormData to transmit files using content-type "multipart/form-data"
+ useForm = canConsumeForm;
+ if (useForm) {
+ formParams = new FormData();
+ } else {
+ formParams = new URLSearchParams();
+ }
+
+ if (requestParameters.thumbNail !== undefined) {
+ formParams.append('thumbNail', requestParameters.thumbNail as any);
+ }
+
+ const response = await this.request({
+ path: `/osbrepository/{id}/thumbnail/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters.id))),
+ method: 'POST',
+ headers: headerParameters,
+ query: queryParameters,
+ body: formParams,
+ });
+
+ return new runtime.VoidApiResponse(response);
+ }
+
+ /**
+ * Sets the thumbnail of the workspace.
+ */
+ async workspacesControllersOsbrepositoryControllerSetthumbnail(requestParameters: WorkspacesControllersOsbrepositoryControllerSetthumbnailRequest): Promise {
+ await this.workspacesControllersOsbrepositoryControllerSetthumbnailRaw(requestParameters);
+ }
+
/**
* Adds and image to the workspace.
*/
diff --git a/applications/osb-portal/src/apiclient/workspaces/models/OSBRepository.ts b/applications/osb-portal/src/apiclient/workspaces/models/OSBRepository.ts
index 5c961b9a9..1c920e7bc 100644
--- a/applications/osb-portal/src/apiclient/workspaces/models/OSBRepository.ts
+++ b/applications/osb-portal/src/apiclient/workspaces/models/OSBRepository.ts
@@ -98,6 +98,12 @@ export interface OSBRepository {
* @memberof OSBRepository
*/
defaultContext?: string;
+ /**
+ *
+ * @type {string}
+ * @memberof OSBRepository
+ */
+ thumbnail?: string;
/**
* OSBRepository keycloak user id, will be automatically be set to the logged in user
* @type {string}
@@ -178,6 +184,7 @@ export function OSBRepositoryFromJSONTyped(json: any, ignoreDiscriminator: boole
'autoSync': !exists(json, 'auto_sync') ? undefined : json['auto_sync'],
'uri': json['uri'],
'defaultContext': !exists(json, 'default_context') ? undefined : json['default_context'],
+ 'thumbnail': !exists(json, 'thumbnail') ? undefined : json['thumbnail'],
'userId': !exists(json, 'user_id') ? undefined : json['user_id'],
'timestampCreated': !exists(json, 'timestamp_created') ? undefined : (new Date(json['timestamp_created'])),
'timestampUpdated': !exists(json, 'timestamp_updated') ? undefined : (new Date(json['timestamp_updated'])),
@@ -208,6 +215,7 @@ export function OSBRepositoryToJSON(value?: OSBRepository | null): any {
'auto_sync': value.autoSync,
'uri': value.uri,
'default_context': value.defaultContext,
+ 'thumbnail': value.thumbnail,
'user_id': value.userId,
'timestamp_created': value.timestampCreated === undefined ? undefined : (value.timestampCreated.toISOString()),
'timestamp_updated': value.timestampUpdated === undefined ? undefined : (value.timestampUpdated.toISOString()),
diff --git a/applications/osb-portal/src/apiclient/workspaces/models/OSBRepositoryBase.ts b/applications/osb-portal/src/apiclient/workspaces/models/OSBRepositoryBase.ts
index 99d3352b7..5b256def4 100644
--- a/applications/osb-portal/src/apiclient/workspaces/models/OSBRepositoryBase.ts
+++ b/applications/osb-portal/src/apiclient/workspaces/models/OSBRepositoryBase.ts
@@ -78,6 +78,12 @@ export interface OSBRepositoryBase {
* @memberof OSBRepositoryBase
*/
defaultContext?: string;
+ /**
+ *
+ * @type {string}
+ * @memberof OSBRepositoryBase
+ */
+ thumbnail?: string;
/**
* OSBRepository keycloak user id, will be automatically be set to the logged in user
* @type {string}
@@ -122,6 +128,7 @@ export function OSBRepositoryBaseFromJSONTyped(json: any, ignoreDiscriminator: b
'autoSync': !exists(json, 'auto_sync') ? undefined : json['auto_sync'],
'uri': json['uri'],
'defaultContext': !exists(json, 'default_context') ? undefined : json['default_context'],
+ 'thumbnail': !exists(json, 'thumbnail') ? undefined : json['thumbnail'],
'userId': !exists(json, 'user_id') ? undefined : json['user_id'],
'timestampCreated': !exists(json, 'timestamp_created') ? undefined : (new Date(json['timestamp_created'])),
'timestampUpdated': !exists(json, 'timestamp_updated') ? undefined : (new Date(json['timestamp_updated'])),
@@ -146,6 +153,7 @@ export function OSBRepositoryBaseToJSON(value?: OSBRepositoryBase | null): any {
'auto_sync': value.autoSync,
'uri': value.uri,
'default_context': value.defaultContext,
+ 'thumbnail': value.thumbnail,
'user_id': value.userId,
'timestamp_created': value.timestampCreated === undefined ? undefined : (value.timestampCreated.toISOString()),
'timestamp_updated': value.timestampUpdated === undefined ? undefined : (value.timestampUpdated.toISOString()),
diff --git a/applications/osb-portal/src/apiclient/workspaces/models/OSBRepositoryEntity.ts b/applications/osb-portal/src/apiclient/workspaces/models/OSBRepositoryEntity.ts
index 90814e4c6..315b869e9 100644
--- a/applications/osb-portal/src/apiclient/workspaces/models/OSBRepositoryEntity.ts
+++ b/applications/osb-portal/src/apiclient/workspaces/models/OSBRepositoryEntity.ts
@@ -82,6 +82,12 @@ export interface OSBRepositoryEntity {
* @memberof OSBRepositoryEntity
*/
defaultContext?: string;
+ /**
+ *
+ * @type {string}
+ * @memberof OSBRepositoryEntity
+ */
+ thumbnail?: string;
/**
* OSBRepository keycloak user id, will be automatically be set to the logged in user
* @type {string}
@@ -126,6 +132,7 @@ export function OSBRepositoryEntityFromJSONTyped(json: any, ignoreDiscriminator:
'autoSync': !exists(json, 'auto_sync') ? undefined : json['auto_sync'],
'uri': json['uri'],
'defaultContext': !exists(json, 'default_context') ? undefined : json['default_context'],
+ 'thumbnail': !exists(json, 'thumbnail') ? undefined : json['thumbnail'],
'userId': !exists(json, 'user_id') ? undefined : json['user_id'],
'timestampCreated': !exists(json, 'timestamp_created') ? undefined : (new Date(json['timestamp_created'])),
'timestampUpdated': !exists(json, 'timestamp_updated') ? undefined : (new Date(json['timestamp_updated'])),
@@ -150,6 +157,7 @@ export function OSBRepositoryEntityToJSON(value?: OSBRepositoryEntity | null): a
'auto_sync': value.autoSync,
'uri': value.uri,
'default_context': value.defaultContext,
+ 'thumbnail': value.thumbnail,
'user_id': value.userId,
'timestamp_created': value.timestampCreated === undefined ? undefined : (value.timestampCreated.toISOString()),
'timestamp_updated': value.timestampUpdated === undefined ? undefined : (value.timestampUpdated.toISOString()),
diff --git a/applications/osb-portal/src/components/common/RepositoriesWorkspacesSearchField.tsx b/applications/osb-portal/src/components/common/RepositoriesWorkspacesSearchField.tsx
index 7f4d92b21..0e5fbe552 100644
--- a/applications/osb-portal/src/components/common/RepositoriesWorkspacesSearchField.tsx
+++ b/applications/osb-portal/src/components/common/RepositoriesWorkspacesSearchField.tsx
@@ -40,6 +40,7 @@ const StyledTextField = styled(TextField)(({ theme }) => ({
interface RepositoriesSearchProps {
filterChanged: (newFilter: string) => void;
borderRadius?: number;
+ value?: string;
}
export default (props: RepositoriesSearchProps) => {
@@ -48,6 +49,7 @@ export default (props: RepositoriesSearchProps) => {
variant="standard"
id="standard-start-adornment"
fullWidth={true}
+ value={props?.value}
sx={{
borderRadius: props?.borderRadius
? `${props?.borderRadius}px`
diff --git a/applications/osb-portal/src/components/common/SearchFilterReposWorkspaces.tsx b/applications/osb-portal/src/components/common/SearchFilterReposWorkspaces.tsx
index 0e4286872..65eec78c1 100644
--- a/applications/osb-portal/src/components/common/SearchFilterReposWorkspaces.tsx
+++ b/applications/osb-portal/src/components/common/SearchFilterReposWorkspaces.tsx
@@ -34,6 +34,7 @@ import searchFilter from "../../types/searchFilter";
//services
import RepositoryService from "../../service/RepositoryService";
+import { Badge } from "@mui/material";
interface SearchReposWorkspacesProps {
searchFilterValues: searchFilter;
@@ -185,13 +186,13 @@ export const SearchFilterReposWorkspaces = (
return (
<>
-
+
}
+ startIcon={ }
>
Filter
@@ -244,6 +245,7 @@ export const SearchFilterReposWorkspaces = (
<>
diff --git a/applications/osb-portal/src/components/common/ThumbnailUploadArea.tsx b/applications/osb-portal/src/components/common/ThumbnailUploadArea.tsx
new file mode 100644
index 000000000..e6920ea2c
--- /dev/null
+++ b/applications/osb-portal/src/components/common/ThumbnailUploadArea.tsx
@@ -0,0 +1,193 @@
+import * as React from "react";
+import Dropzone from "react-dropzone";
+import { Box, Button, Grid, IconButton, Typography } from "@mui/material";
+
+//icons
+import DeleteForeverIcon from "@mui/icons-material/DeleteForever";
+
+//style
+import styled from "@mui/system/styled";
+import { radius, gutter, bgInputs } from "../../theme";
+
+// import style manually
+import { alpha } from "@mui/material/styles";
+
+
+const MAX_ALLOWED_THUMBNAIL_SIZE = 1024 * 1024; // 1MB
+
+export const StyledDropZoneBox = styled(Box)(({ theme }) => ({
+ color: bgInputs,
+ border: `2px dashed ${bgInputs}`,
+ borderRadius: 5,
+ padding: 4,
+ "& .MuiTypography-subtitle2": {
+ marginTop: theme.spacing(1),
+ marginBottom: theme.spacing(2),
+ },
+ "& .MuiButton-outlined": {
+ margin: "0 auto",
+ display: "flex",
+ justifyContent: "center",
+ color: bgInputs,
+ borderRadius: radius,
+ border: `2px solid ${bgInputs}`,
+ },
+}));
+
+export const StyledImagePreviewSection = styled("section")(() => ({
+ display: "flex",
+ minHeight: "15em",
+ alignItems: "stretch",
+ backgroundPosition: "center",
+ backgroundSize: "cover",
+ flex: 1,
+}));
+
+export const dropAreaStyle = (error: any) => ({
+ flex: 1,
+ display: "flex",
+ alignItems: "center",
+ borderRadius: radius,
+ padding: gutter,
+ borderColor: error ? "red" : alpha(bgInputs, 1),
+});
+
+
+interface UploadAreaProps {
+ setThumbnail: any;
+ thumbnail: any;
+ thumbnailError: any;
+ setThumbnailError: any;
+ workspace: any;
+}
+
+export const OSBDialog: React.FunctionComponent = ({
+ setThumbnail,
+ thumbnail,
+ thumbnailError,
+ setThumbnailError,
+ workspace
+}) => {
+ const [thumbnailPreview, setThumbnailPreview] = React.useState(
+ workspace?.thumbnail ? "/proxy/workspaces/" + workspace.thumbnail : null
+ );
+
+
+ const dropThumbnail = (uploadedThumbnail: any) => {
+ setThumbnail(uploadedThumbnail);
+ previewFile(uploadedThumbnail);
+ };
+
+ const previewFile = (file: Blob) => {
+ if (!file) {
+ setThumbnailError(null);
+ setThumbnailPreview(null);
+ return;
+ }
+
+ if (!file.type.includes("image")) {
+ setThumbnailError("Not an image file");
+ return;
+ }
+ if (file.size > MAX_ALLOWED_THUMBNAIL_SIZE) {
+ setThumbnailError("File exceeds allowed size (1MB)");
+ return;
+ }
+
+ setThumbnailError(null);
+
+ const fileReader: FileReader = new FileReader();
+
+ fileReader.onload = () => {
+ setThumbnailPreview(fileReader.result);
+ };
+
+ fileReader.readAsDataURL(file);
+ };
+ return (
+
+ {
+ dropThumbnail(acceptedFiles[0]);
+ }}
+ >
+ {({
+ getRootProps,
+ getInputProps,
+ acceptedFiles,
+ }: {
+ getRootProps: (p: any) => any;
+ getInputProps: () => any;
+ acceptedFiles: any[];
+ }) => (
+
+
+
+
+ {thumbnail && (
+
+ {!thumbnail ? (
+ ""
+ ) : (
+ {
+ e.preventDefault();
+ dropThumbnail(null);
+ }}
+ size="large"
+ >
+
+
+ )}
+
+ )}
+
+
+ {!thumbnail ? (
+ <>
+ Drop file here to upload...
+
+ Browse files
+
+ >
+ ) : null}
+
+ {thumbnailError && (
+
+ {thumbnailError}
+
+ )}
+
+
+
+
+
+ )}
+
+
+
+ );
+};
+
+export default OSBDialog;
diff --git a/applications/osb-portal/src/components/dialogs/DeleteDialog.tsx b/applications/osb-portal/src/components/dialogs/PrimaryDialog.tsx
similarity index 60%
rename from applications/osb-portal/src/components/dialogs/DeleteDialog.tsx
rename to applications/osb-portal/src/components/dialogs/PrimaryDialog.tsx
index e8392a4c2..b64c0bd91 100644
--- a/applications/osb-portal/src/components/dialogs/DeleteDialog.tsx
+++ b/applications/osb-portal/src/components/dialogs/PrimaryDialog.tsx
@@ -3,29 +3,18 @@ import DialogTitle from "@mui/material/DialogTitle";
import DialogContent from "@mui/material/DialogContent";
import DialogActions from "@mui/material/DialogActions";
import Dialog from "@mui/material/Dialog";
-import {
- useNavigate,
-} from "react-router-dom";
import { Button } from "@mui/material";
-const DeleteDialog = ({
+const PrimaryDialog = ({
open,
setOpen,
title,
description,
- handleDeleteCallback,
- navigateToPath
+ handleCallback,
+ actionButtonText,
+ cancelButtonText,
}) => {
- const navigate = useNavigate();
-
- const handleDelete = () => {
- handleDeleteCallback();
- if (navigateToPath && window.location.pathname !== "/") {
- navigate(navigateToPath)
- }
- }
-
return (
- CANCEL
+ {cancelButtonText || "CANCEL"}
-
- DELETE
+
+ {actionButtonText || "DELETE"}
)
}
-export default DeleteDialog;
\ No newline at end of file
+export default PrimaryDialog;
\ No newline at end of file
diff --git a/applications/osb-portal/src/components/handlers/OSBErrorBoundary.tsx b/applications/osb-portal/src/components/handlers/OSBErrorBoundary.tsx
index f3a41d5f2..21ff4a5a6 100644
--- a/applications/osb-portal/src/components/handlers/OSBErrorBoundary.tsx
+++ b/applications/osb-portal/src/components/handlers/OSBErrorBoundary.tsx
@@ -7,6 +7,10 @@ import DialogContent from "@mui/material/DialogContent";
import DialogTitle from "@mui/material/DialogTitle";
import Button from "@mui/material/Button";
+interface OSBErrorBoundaryProps {
+ error?: any;
+}
+
interface OwnState {
eventId: string;
hasError: string;
@@ -23,9 +27,12 @@ const ERROR_MESSAGES: any = {
// 404
"NOT FOUND":
"Oops. This resource could not be found. Please check the URL you are trying to access and try again.",
+ // User 404
+ "USER_NOT_FOUND":
+ "Oops. This user could not be found. Please check the URL you are trying to access and try again.",
};
-class OSBErrorBoundary extends React.Component<{}, OwnState> {
+class OSBErrorBoundary extends React.Component {
public state: OwnState = {
eventId: null,
hasError: null,
@@ -46,7 +53,9 @@ class OSBErrorBoundary extends React.Component<{}, OwnState> {
let message =
"Oops. Something went wrong. Please report this error to us.";
- if (error.status && error.status < 500) {
+ if (window.location.pathname.startsWith("/user/")) {
+ message = ERROR_MESSAGES["USER_NOT_FOUND"];
+ } else if (error.status && error.status < 500) {
message = ERROR_MESSAGES[error.statusText] || error.statusText;
} else {
Sentry.captureException(error);
@@ -55,6 +64,13 @@ class OSBErrorBoundary extends React.Component<{}, OwnState> {
});
}
+ static getDerivedStateFromProps(nextProps: any, prevState: any) {
+ if (nextProps.error) {
+ return { ...prevState, hasError: 'true', message: nextProps.error };
+ }
+ return { ...prevState };
+ }
+
render() {
if (this.state.hasError) {
// render fallback UI
diff --git a/applications/osb-portal/src/components/icons.tsx b/applications/osb-portal/src/components/icons.tsx
index a16115149..1ccbfbc35 100644
--- a/applications/osb-portal/src/components/icons.tsx
+++ b/applications/osb-portal/src/components/icons.tsx
@@ -162,6 +162,37 @@ export const RepositoriesCardIcon = (props: SvgIconProps) => (
);
+export const GithubCardIcon = (props: SvgIconProps) => (
+
+
+
+);
+
+export const FigshareCardIcon = (props: SvgIconProps) => (
+
+
+
+
+
+
+
+
+
+
+);
+
+export const DandiArchiveCardIcon = (props: SvgIconProps) => (
+
+
+
+);
+
export const ContextIcon = (props: SvgIconProps) => (
();
const [uri, setUri] = useState(repository?.uri);
+ const [thumbnail, setThumbnail] = React.useState(null);
+ const [thumbnailError, setThumbnailError] = React.useState(null);
const [error, setError] = useState({
uri: "",
@@ -269,6 +273,31 @@ export const EditRepoDialog = ({
setFormValues({ ...formValues, defaultContext: value });
};
+ async function submitRepositoryThumbnail(obj: any) {
+ if (thumbnail && !thumbnailError) {
+ const fileThumbnail: any = await readFile(thumbnail);
+ RepositoryService.updateRepostioryThumbnail(
+ obj.id,
+ new Blob([fileThumbnail])
+ ).then(
+ () => {
+ refreshRepositories();
+ // Computed fields are not updated: remove so that the repo can be merged by the caller
+ Object.keys(obj).forEach((key) => obj[key] === undefined ? delete obj[key] : {}
+ );
+ onSubmit(obj);
+ },
+ (e) => {
+ console.error(e);
+ throw new Error("Error updating the repository thumbnail");
+ });
+ setThumbnail(null);
+ } else {
+ setLoading(true);
+ refreshRepositories();
+ }
+ }
+
const addOrUpdateRepository = () => {
console.log("original repository", repository);
const errors = {
@@ -288,16 +317,11 @@ export const EditRepoDialog = ({
setLoading(true);
if (repository === RepositoryService.EMPTY_REPOSITORY) {
RepositoryService.addRepository(formValues).then(
- (r) => {
+ async (returnedRepository) => {
setLoading(false);
handleClose(false);
- refreshRepositories();
- const obj: any = r;
- // Computed fields are not updated: remove so that the repo can be merged by the caller
- Object.keys(r).forEach((key) =>
- obj[key] === undefined ? delete obj[key] : {}
- );
- onSubmit(r);
+ const obj: any = returnedRepository;
+ await submitRepositoryThumbnail(obj);
},
(e) => {
setLoading(false);
@@ -313,16 +337,16 @@ export const EditRepoDialog = ({
console.log("sending this repository", putRequestRepository);
RepositoryService.updateRepository(putRequestRepository)
.then(
- (r: OSBRepository) => {
+ async (returnedRepository) => {
setLoading(false);
handleClose(false);
- refreshRepositories();
- const obj: any = r;
+ const obj: any = returnedRepository;
// Computed fields are not updated: remove so that the repo can be merged by the caller
- Object.keys(r).forEach((key) =>
+ Object.keys(returnedRepository).forEach((key) =>
obj[key] === undefined ? delete obj[key] : {}
);
- onSubmit(r);
+ onSubmit(returnedRepository);
+ await submitRepositoryThumbnail(obj);
},
(e) => {
setLoading(false);
@@ -615,6 +639,15 @@ export const EditRepoDialog = ({
renderHTML={(text: string) => }
/>
+
+
+
handleClose(false)} color="primary">
diff --git a/applications/osb-portal/src/components/repository/RepositoryActionsMenu.tsx b/applications/osb-portal/src/components/repository/RepositoryActionsMenu.tsx
index c900faaea..0c35bb7c3 100644
--- a/applications/osb-portal/src/components/repository/RepositoryActionsMenu.tsx
+++ b/applications/osb-portal/src/components/repository/RepositoryActionsMenu.tsx
@@ -16,7 +16,7 @@ import { styled } from "@mui/styles";
import { chipBg } from "../../theme";
import IconButton from "@mui/material/IconButton";
import RepositoryService from "../../service/RepositoryService";
-import DeleteDialog from "../dialogs/DeleteDialog";
+import PrimaryDialog from "../dialogs/PrimaryDialog";
interface RepositoryActionsMenuProps {
@@ -73,6 +73,7 @@ export default (props: RepositoryActionsMenuProps) => {
RepositoryService.deleteRepository(props.repository.id).then(() => {
props.onAction(null);
handleCloseMenu();
+ navigate('/repositories')
});
};
@@ -122,11 +123,12 @@ export default (props: RepositoryActionsMenuProps) => {
{
showDeleteRepositoryDialog && (
-
diff --git a/applications/osb-portal/src/components/repository/RespositoriesTable.tsx b/applications/osb-portal/src/components/repository/RespositoriesTable.tsx
index 36e75b592..5b022b472 100644
--- a/applications/osb-portal/src/components/repository/RespositoriesTable.tsx
+++ b/applications/osb-portal/src/components/repository/RespositoriesTable.tsx
@@ -147,16 +147,19 @@ export const RepositoriesList = (props: RepositoriesProps) => {
{!compact &&
- navigate(`/user/${row?.user?.id}`)}
- >
- {row.user.username}
-
+ {
+ row?.user &&
+ navigate(`/user/${row?.user?.username}`)}
+ >
+ {row?.user?.username}
+
+ }
}
{
size="small"
clickable={true}
onDelete={
- handleTagUnclick && searchFilterValues?.tags?.includes(
- tagObject.tag
+ handleTagUnclick && searchFilterValues?.tags?.map((t) => t.toLowerCase()).includes(
+ tagObject.tag.toLowerCase()
)
? () => handleTagUnclick(tagObject)
: null
diff --git a/applications/osb-portal/src/components/user/UserEditor.tsx b/applications/osb-portal/src/components/user/UserEditor.tsx
index 8138206d0..86076bdab 100644
--- a/applications/osb-portal/src/components/user/UserEditor.tsx
+++ b/applications/osb-portal/src/components/user/UserEditor.tsx
@@ -284,32 +284,34 @@ export default (props: UserEditProps) => {
}}
/>
-
- Email address
-
-
-
- ),
- }}
- />
-
- Your email address is private. Other users can't see it.
-
-
+ {
+ props.user.email &&
+ Email address
+
+
+
+ ),
+ }}
+ />
+
+ Your email address is private. Other users can't see it.
+
+
+ }
Links
diff --git a/applications/osb-portal/src/components/workspace/NewWorkspaceItem.tsx b/applications/osb-portal/src/components/workspace/NewWorkspaceItem.tsx
index 8156f52e1..3d96c1b09 100644
--- a/applications/osb-portal/src/components/workspace/NewWorkspaceItem.tsx
+++ b/applications/osb-portal/src/components/workspace/NewWorkspaceItem.tsx
@@ -172,7 +172,7 @@ export const NewWorkspaceItem = (props: ItemProps) => {
// if non-default workspace
if (defaultWorkspace) {
- setWorkspaceLink(`/workspace/${ws.id}`);
+ setWorkspaceLink(`/workspaces/${ws.id}`);
setCreatedWorkspaceConfirmationContent((prevContent) => ({
...prevContent,
title: "Success!",
diff --git a/applications/osb-portal/src/components/workspace/WorkspaceActionsMenu.tsx b/applications/osb-portal/src/components/workspace/WorkspaceActionsMenu.tsx
index 58970b7ca..47123842a 100644
--- a/applications/osb-portal/src/components/workspace/WorkspaceActionsMenu.tsx
+++ b/applications/osb-portal/src/components/workspace/WorkspaceActionsMenu.tsx
@@ -5,9 +5,10 @@ import Menu from "@mui/material/Menu";
import MenuItem from "@mui/material/MenuItem";
import NestedMenuItem from "../common/NestedMenuItems";
import Button from "@mui/material/Button";
-import { IconButton } from "@mui/material";
+import { IconButton, Link } from "@mui/material";
import Snackbar from "@mui/material/Snackbar";
import CloseIcon from "@mui/icons-material/Close";
+import { useSelector } from "react-redux";
import { OSBApplications, Workspace } from "../../types/workspace";
import { WorkspaceEditor } from "../index";
@@ -18,7 +19,8 @@ import OSBLoader from "../common/OSBLoader";
import { bgDarkest, textColor, lightWhite } from "../../theme";
import MoreHorizIcon from "@mui/icons-material/MoreHoriz";
import * as Icons from "../icons";
-import DeleteDialog from "../dialogs/DeleteDialog";
+import PrimaryDialog from "../dialogs/PrimaryDialog";
+import { RootState } from "../../store/rootReducer";
interface WorkspaceActionsMenuProps {
@@ -53,7 +55,12 @@ export default (props: WorkspaceActionsMenuProps) => {
const canEdit = canEditWorkspace(props?.user, props?.workspace);
const navigate = useNavigate();
const [showDeleteWorkspaceDialog, setShowDeleteWorkspaceDialog] = React.useState(false);
+ const [showFailCloneDialog, setShowFailCloneDialog] = React.useState<{open: boolean, message: any}>({
+ open: false,
+ message: "",
+ });
+ const user = useSelector((state: RootState) => state.user);
const handleClick = (event: React.MouseEvent) => {
setAnchorEl(event.currentTarget);
@@ -71,6 +78,10 @@ export default (props: WorkspaceActionsMenuProps) => {
const handleDeleteWorkspace = () => {
props.deleteWorkspace(props.workspace.id);
handleCloseMenu();
+
+ if (window.location.pathname !== "/") {
+ navigate('/')
+ }
};
const handlePublicWorkspace = () => {
@@ -92,7 +103,7 @@ export default (props: WorkspaceActionsMenuProps) => {
};
const handleOpenWorkspace = () => {
- navigate(`/workspace/${props.workspace.id}`);
+ navigate(`/workspaces/${props.workspace.id}`);
};
const handleCloseEditWorkspace = () => {
@@ -110,23 +121,35 @@ export default (props: WorkspaceActionsMenuProps) => {
setCloneComplete(true);
setClonedWSId(res.id);
},
- () => {
- setCloneInProgress(true);
+ (e) => {
+ setCloneInProgress(false);
+ if (e.status === 405) {
+ setShowFailCloneDialog({ open: true, message: <>
+ Workspaces quota exceeded. Try to delete some workspace before retry.
+ To see and manage your quotas, go to your
+ navigate(`/user/${user.username}`)}>account page.
+ > });
+ } else {
+ setShowFailCloneDialog({ open: true, message: "Unexpected error cloning the workspace. Please try again later." });
+ }
}
- );
+ )
};
const handleOpenClonedWorkspace = () => {
- navigate(`/workspace/${clonedWSId}`);
+ navigate(`/workspaces/${clonedWSId}`);
};
+ const navigateToAccountsPage = () => {
+ navigate(`/user/${user.username}`);
+ }
/*
*
* @param applicatonType OSBApplication key
*/
const handleOpenWorkspaceWithApp = (applicatonType: string) => {
- navigate(`/workspace/open/${props.workspace.id}/${applicatonType}`);
+ navigate(`/workspaces/open/${props.workspace.id}/${applicatonType}`);
};
return (
@@ -269,17 +292,31 @@ export default (props: WorkspaceActionsMenuProps) => {
<>
{
showDeleteWorkspaceDialog && (
-
)
}
>
+ {
+ showFailCloneDialog && (
+ setShowFailCloneDialog({ open: !showFailCloneDialog.open, message: "" })}
+ handleCallback={navigateToAccountsPage}
+ actionButtonText={'Go to Account Page'}
+ cancelButtonText={'Close'}
+ title="Failed to clone workspace"
+ description={showFailCloneDialog.message}
+ />
+ )
+ }
>
);
};
diff --git a/applications/osb-portal/src/components/workspace/WorkspaceCard.tsx b/applications/osb-portal/src/components/workspace/WorkspaceCard.tsx
index f152b6321..c37026632 100644
--- a/applications/osb-portal/src/components/workspace/WorkspaceCard.tsx
+++ b/applications/osb-portal/src/components/workspace/WorkspaceCard.tsx
@@ -78,7 +78,7 @@ export const WorkspaceCard = (props: Props) => {
navigate(`/workspace/${workspace.id}`)}
+ onClick={() => navigate(`/workspaces/${workspace.id}`)}
className={`workspace-page-link`}
underline="none"
>
diff --git a/applications/osb-portal/src/components/workspace/WorkspaceEditor.tsx b/applications/osb-portal/src/components/workspace/WorkspaceEditor.tsx
index cd90d2aa5..ce6246867 100644
--- a/applications/osb-portal/src/components/workspace/WorkspaceEditor.tsx
+++ b/applications/osb-portal/src/components/workspace/WorkspaceEditor.tsx
@@ -4,8 +4,6 @@ import * as React from "react";
import Button from "@mui/material/Button";
import TextField from "@mui/material/TextField";
import Box from "@mui/material/Box";
-import Grid from "@mui/material/Grid";
-import Typography from "@mui/material/Typography";
import CircularProgress from "@mui/material/CircularProgress";
import Dialog from "@mui/material/Dialog";
import DialogTitle from "@mui/material/DialogTitle";
@@ -13,21 +11,16 @@ import DialogContent from "@mui/material/DialogContent";
import DialogActions from "@mui/material/DialogActions";
import MenuItem from "@mui/material/MenuItem";
import Select from "@mui/material/Select";
-import Dropzone from "react-dropzone";
import Chip from "@mui/material/Chip";
import Alert from '@mui/material/Alert';
import Autocomplete from "@mui/material/Autocomplete";
import MDEditor from "react-markdown-editor-lite";
import MarkdownViewer from "../common/MarkdownViewer";
import OSBDialog from "../common/OSBDialog";
-
-//icons
-import IconButton from "@mui/material/IconButton";
-import DeleteForeverIcon from "@mui/icons-material/DeleteForever";
+import ThumbnailUploadArea from "../common/ThumbnailUploadArea";
// import style manually
import "react-markdown-editor-lite/lib/index.css";
-import { alpha } from "@mui/material/styles";
//style
import styled from "@mui/system/styled";
@@ -42,36 +35,10 @@ import { Tag } from "../../apiclient/workspaces";
import WorkspaceService from "../../service/WorkspaceService";
import StyledLabel from "../styled/FormLabel";
+import { readFile } from "../../utils";
-export const StyledDropZoneBox = styled(Box)(({ theme }) => ({
- color: bgInputs,
- border: `2px dashed ${bgInputs}`,
- borderRadius: 5,
- padding: 4,
- "& .MuiTypography-subtitle2": {
- marginTop: theme.spacing(1),
- marginBottom: theme.spacing(2),
- },
- "& .MuiButton-outlined": {
- margin: "0 auto",
- display: "flex",
- justifyContent: "center",
- color: bgInputs,
- borderRadius: radius,
- border: `2px solid ${bgInputs}`,
- },
-}));
-export const StyledImagePreviewSection = styled("section")(() => ({
- display: "flex",
- minHeight: "15em",
- alignItems: "stretch",
- backgroundPosition: "center",
- backgroundSize: "cover",
- flex: 1,
-}));
-
const StyledAutocomplete = styled(Autocomplete)(({ theme }) => ({
"& .MuiChip-root": {
backgroundColor: bgLight,
@@ -99,32 +66,9 @@ interface WorkspaceEditProps {
user: UserInfo;
}
-export const dropAreaStyle = (error: any) => ({
- flex: 1,
- display: "flex",
- alignItems: "center",
-
- borderRadius: radius,
- padding: gutter,
- borderColor: error ? "red" : alpha(bgInputs, 1),
-});
-async function readFile(file: Blob) {
- return new Promise((resolve, reject) => {
- const fileReader: FileReader = new FileReader();
- fileReader.onload = () => {
- resolve(fileReader.result);
- };
-
- fileReader.onerror = reject;
-
- fileReader.readAsArrayBuffer(file);
- });
-}
-
-const MAX_ALLOWED_THUMBNAIL_SIZE = 1024 * 1024; // 1MB
-let thumbnail: Blob;
+// let thumbnail: Blob;
export default (props: WorkspaceEditProps) => {
const { workspace, user } = props;
@@ -132,16 +76,15 @@ export default (props: WorkspaceEditProps) => {
...props.workspace,
});
+ // let's have a thumbnail state here, so we can pass it to the thumbnail upload area
+ const [thumbnail, setThumbnail] = React.useState(null);
const closeWorkSpaceEditor = () => {
if (props.closeHandler) {
props.closeHandler();
}
};
-
- const [thumbnailPreview, setThumbnailPreview] = React.useState(
- workspace?.thumbnail ? "/proxy/workspaces/" + workspace.thumbnail : null
- );
const [thumbnailError, setThumbnailError] = React.useState(null);
+
const [showNoFilesSelectedDialog, setShowNoFilesSelectedDialog] =
React.useState(false);
const workspaceTags =
@@ -188,7 +131,7 @@ export default (props: WorkspaceEditProps) => {
(e) => {
setLoading(false);
if (e.status === 405) {
- setSubmitError("Workspaces quota exceeded. Try to delete some workspaces or see the documentation to know how to manage your quotas.");
+ setSubmitError("Workspaces quota exceeded. Try to delete some workspace before retry. To see and manage your quotas, go to your account page.");
} else {
setSubmitError("Unexpected error submitting the workspace. Please try again later.");
}
@@ -198,41 +141,12 @@ export default (props: WorkspaceEditProps) => {
);
};
- const previewFile = (file: Blob) => {
- if (!file) {
- setThumbnailError(null);
- setThumbnailPreview(null);
- return;
- }
-
- if (!file.type.includes("image")) {
- setThumbnailError("Not an image file");
- return;
- }
- if (file.size > MAX_ALLOWED_THUMBNAIL_SIZE) {
- setThumbnailError("File exceeds allowed size (1MB)");
- return;
- }
-
- setThumbnailError(null);
- const fileReader: FileReader = new FileReader();
-
- fileReader.onload = () => {
- setThumbnailPreview(fileReader.result);
- };
-
- fileReader.readAsDataURL(file);
- };
const setNameField = (e: any) =>
setWorkspaceForm({ ...workspaceForm, name: e.target.value });
const setDescriptionField = (e: any) =>
setWorkspaceForm({ ...workspaceForm, description: e.text });
- const setThumbnail = (uploadedThumbnail: any) => {
- thumbnail = uploadedThumbnail;
- previewFile(thumbnail);
- };
const setWorkspaceTags = (tagsArray: string[]) => {
const arrayOfTags: Tag[] = [];
tagsArray.forEach((tag) => {
@@ -361,87 +275,14 @@ export default (props: WorkspaceEditProps) => {
Workspace thumbnail
-
- {
- setThumbnail(acceptedFiles[0]);
- }}
- >
- {({
- getRootProps,
- getInputProps,
- acceptedFiles,
- }: {
- getRootProps: (p: any) => any;
- getInputProps: () => any;
- acceptedFiles: any[];
- }) => (
-
-
-
-
- {thumbnail && (
-
- {!thumbnail ? (
- ""
- ) : (
- {
- e.preventDefault();
- setThumbnail(null);
- }}
- size="large"
- >
-
-
- )}
-
- )}
-
-
- {!thumbnail ? (
- <>
- Drop file here to upload...
-
- Browse files
-
- >
- ) : null}
-
- {thumbnailError && (
-
- {thumbnailError}
-
- )}
-
-
-
-
-
- )}
-
-
+
diff --git a/applications/osb-portal/src/components/workspace/WorkspaceFromRepository.tsx b/applications/osb-portal/src/components/workspace/WorkspaceFromRepository.tsx
index bdbb3ec27..00a02a48f 100644
--- a/applications/osb-portal/src/components/workspace/WorkspaceFromRepository.tsx
+++ b/applications/osb-portal/src/components/workspace/WorkspaceFromRepository.tsx
@@ -186,7 +186,7 @@ export const WorkspaceFromRepository = ({
ws.id,
checked.map((c) => c.resource)
).then(() => {
- setWorkspaceLink(`/workspace/${ws.id}`);
+ setWorkspaceLink(`/workspaces/${ws.id}`);
setCreatedWorkspaceConfirmationContent((prevContent) => ({
...prevContent,
title: "Success!",
diff --git a/applications/osb-portal/src/components/workspace/WorkspacesTable.tsx b/applications/osb-portal/src/components/workspace/WorkspacesTable.tsx
index 723f7ff44..e2c0e30e2 100644
--- a/applications/osb-portal/src/components/workspace/WorkspacesTable.tsx
+++ b/applications/osb-portal/src/components/workspace/WorkspacesTable.tsx
@@ -154,9 +154,8 @@ export const WorkspacesList = (props: WorkspacesProps) => {
label={tagObject.tag}
clickable={true}
onDelete={
- searchFilterValues?.tags?.includes(
- tagObject.tag
- )
+ searchFilterValues?.tags?.map((tag) =>
+ tag.toLowerCase()).includes(tagObject.tag.toLowerCase())
? () => handleTagUnclick(tagObject)
: null
}
diff --git a/applications/osb-portal/src/components/workspace/drawer/WorkspaceDrawer.tsx b/applications/osb-portal/src/components/workspace/drawer/WorkspaceDrawer.tsx
index 43ac44248..73e18298f 100644
--- a/applications/osb-portal/src/components/workspace/drawer/WorkspaceDrawer.tsx
+++ b/applications/osb-portal/src/components/workspace/drawer/WorkspaceDrawer.tsx
@@ -158,6 +158,7 @@ export const WorkspaceDrawer: React.FunctionComponent = ({
alignItems="stretch"
flex="1"
className="verticalFill"
+ height={1}
>
void;
currentResource: WorkspaceResource;
hideTabs: Boolean;
+ staticPage: Boolean;
}
const SidebarBox = styled(Box)(({ theme }) => ({
@@ -129,6 +130,7 @@ function TabPanel(props) {
hidden={value !== index}
id={`simple-tabpanel-${index}`}
aria-labelledby={`simple-tab-${index}`}
+ className="verticalFit"
{...other}
>
{value === index && (
@@ -200,7 +202,7 @@ export default (props: WorkspaceProps | any) => {
return (
<>
{props.open ? (
-
+
{!hideTabs && (
{
currentResource={props.currentResource}
refreshWorkspace={handleWorkspaceRefresh}
user={props.user}
+ staticPage={props.staticPage}
/>
diff --git a/applications/osb-portal/src/components/workspace/drawer/WorkspaceResourceBrowser.tsx b/applications/osb-portal/src/components/workspace/drawer/WorkspaceResourceBrowser.tsx
index 7049131f3..232b1fc4e 100644
--- a/applications/osb-portal/src/components/workspace/drawer/WorkspaceResourceBrowser.tsx
+++ b/applications/osb-portal/src/components/workspace/drawer/WorkspaceResourceBrowser.tsx
@@ -46,7 +46,7 @@ const SidebarIconButton = styled(IconButton)(({ theme }) => ({
padding: 0,
"& .MuiSvgIcon-root": {
color: paragraph,
- width: '1rem',
+ width: '1rem',
height: '1rem'
},
"&:hover": {
@@ -98,6 +98,7 @@ const OSBResourceItem = (props: {
currentResourceId: number;
Icon: JSX.Element;
workspaceId: number;
+ currentResource: WorkspaceResource;
}) => {
const {
resource,
@@ -105,6 +106,7 @@ const OSBResourceItem = (props: {
refreshWorkspace,
workspaceId,
Icon,
+ currentResource
} = props;
const canOpenFile: boolean =
resource.status === ResourceStatus.available;
@@ -130,13 +132,22 @@ const OSBResourceItem = (props: {
};
const handleOpenResource =
- (e: any | Event) => {
- e.preventDefault();
- navigate(
- {pathname: `/workspace/open/${workspaceId}/${resource.type.application.code}`,
- search: `?resource=${encodeURIComponent(resource.name)}`},
- )
- };
+ (e: any | Event) => {
+ e.preventDefault();
+ const isApplicationChanged = currentResource && currentResource.type.application.code !== resource.type.application.code;
+ if(isApplicationChanged && window.confirm("Unsaved changes will be lost: are you sure you want to change application?")){
+ navigate(
+ {pathname: `/workspaces/open/${workspaceId}/${resource.type.application.code}`,
+ search: `?resource=${encodeURIComponent(resource.name)}`},
+ )
+ }
+ if(!isApplicationChanged){
+ navigate(
+ {pathname: `/workspaces/open/${workspaceId}/${resource.type.application.code}`,
+ search: `?resource=${encodeURIComponent(resource.name)}`},
+ )
+ }
+ };
return (
{!active &&
-
- }
+
+ }
}
>
@@ -170,8 +181,8 @@ const OSBResourceItem = (props: {
title={`${workspaceResourceService.getResourcePath(resource)}.
${
active
- ? "This is the resource currently opened on"
- : "Click on this resource to open with"
+ ? "This is the resource currently opened on"
+ : "Click on this resource to open with"
} ${resource.type.application.name}.`}
>
@@ -186,6 +197,7 @@ interface WorkspaceProps {
refreshWorkspace: () => void;
currentResource: WorkspaceResource;
user: UserInfo;
+ staticPage: Boolean;
}
const WorkspaceResourceBrowser = (props: WorkspaceProps) => {
@@ -201,7 +213,7 @@ const WorkspaceResourceBrowser = (props: WorkspaceProps) => {
if (!workspace.resources || workspace.resources.length === 0) {
return null;
}
-
+
const resources = workspace.resources.filter(
(resource) => resource.id !== undefined && resource.id !== -1
);
@@ -231,8 +243,9 @@ const WorkspaceResourceBrowser = (props: WorkspaceProps) => {
open?: boolean;
resources: WorkspaceResource[];
onToggle: () => void;
+ currentResource: WorkspaceResource;
}) => {
- const { label, Icon, open, resources, onToggle } = tprops;
+ const { label, Icon, open, resources, onToggle, currentResource } = tprops;
return (
<>
@@ -254,7 +267,7 @@ const WorkspaceResourceBrowser = (props: WorkspaceProps) => {
/>
{resources.length}
-
+
{open &&
resources.map((resource) => (
{
currentResourceId={currentResourceId}
Icon={Icon}
workspaceId={workspace.id}
+ currentResource={props.staticPage ? null: currentResource}
+
/>
))}
@@ -273,64 +288,65 @@ const WorkspaceResourceBrowser = (props: WorkspaceProps) => {
};
return (
-
-
-
- {experimentalResources.length > 0 && (
- }
- onToggle={() => toggleResourceGroup('experimental')}
- />
- )}
- {modelResources.length > 0 && (
- }
- onToggle={() => toggleResourceGroup('model')}
- />
- )}
- {notebookResources.length > 0 && (
- }
- onToggle={() => toggleResourceGroup('notebook')}
- />
- )}
-
- {pendingResource && (
-
-
-
-
-
-
-
-
+
+
+ {experimentalResources.length > 0 && (
+ }
+ onToggle={() => toggleResourceGroup('experimental')}
+ currentResource={currentResource}
+ />
+ )}
+ {modelResources.length > 0 && (
+ }
+ onToggle={() => toggleResourceGroup('model')}
+ currentResource={currentResource}
+ />
+ )}
+ {notebookResources.length > 0 && (
+ }
+ onToggle={() => toggleResourceGroup('notebook')}
+ currentResource={currentResource}
+ />
)}
-
+
+ {pendingResource && (
+
+
+
+
+
+
+
+
+ )}
);
};
diff --git a/applications/osb-portal/src/pages/NotFoundPage.tsx b/applications/osb-portal/src/pages/NotFoundPage.tsx
new file mode 100644
index 000000000..7d63d2d5f
--- /dev/null
+++ b/applications/osb-portal/src/pages/NotFoundPage.tsx
@@ -0,0 +1,43 @@
+import React from 'react'
+import { Alert, Button, Dialog, DialogActions, DialogContent, DialogTitle } from '@mui/material'
+import { getCleanPath } from '../utils'
+
+const NotFoundPage = () => {
+ const [message, setMessage] = React.useState("")
+ const pathParts = getCleanPath(window.location.pathname)
+ React.useEffect(() => {
+ setMessage("This path doesn't exist")
+ }, [pathParts])
+ return (
+ <>
+
+
+
+
+
+ {message}
+
+
+
+
+ window.history.back()}
+ >
+ Go back
+
+ window.open("/", "_self")}
+ >
+ Return to homepage
+
+
+
+ >
+ )
+
+
+}
+
+export default NotFoundPage
\ No newline at end of file
diff --git a/applications/osb-portal/src/pages/Repositories/RepositoriesCards.tsx b/applications/osb-portal/src/pages/Repositories/RepositoriesCards.tsx
index c3d65c43a..e78a0233b 100644
--- a/applications/osb-portal/src/pages/Repositories/RepositoriesCards.tsx
+++ b/applications/osb-portal/src/pages/Repositories/RepositoriesCards.tsx
@@ -22,10 +22,10 @@ import styled from "@mui/system/styled";
import OpenInNewIcon from "@mui/icons-material/OpenInNew";
import LocalOfferIcon from "@mui/icons-material/LocalOffer";
-import { CodeBranchIcon, RepositoriesCardIcon } from "../../components/icons";
+import { CodeBranchIcon, RepositoriesCardIcon, GithubCardIcon, FigshareCardIcon, DandiArchiveCardIcon } from "../../components/icons";
//types
-import { OSBRepository } from "../../apiclient/workspaces";
+import { OSBRepository, RepositoryType } from "../../apiclient/workspaces";
import { UserInfo } from "../../types/user";
//utils
@@ -60,8 +60,6 @@ export const RepositoriesListCards = (props: RepositoriesProps) => {
props;
const openRepoUrl = (uri: string) => window.open(uri, "_blank");
- const navigate = useNavigate();
-
return (
<>
{loading ? (
@@ -88,13 +86,12 @@ export const RepositoriesListCards = (props: RepositoriesProps) => {
return (
-
-
+
{
alignItems="center"
display="flex"
mb={2}
+ overflow="hidden"
+ flex="1"
+ sx={{
+ backgroundImage: repository.thumbnail && `url(/proxy/workspaces/${repository.thumbnail}?v=${repository.timestampUpdated.getMilliseconds()})`,
+ backgroundSize: "cover",
+ }}
onClick={() => handleRepositoryClick(repository)}
>
-
+ {
+ !repository.thumbnail && (
+ repository.repositoryType === RepositoryType.Github ? (
+
+ ) : repository.repositoryType === RepositoryType.Figshare ? (
+
+ ) : repository.repositoryType === RepositoryType.Dandi ? (
+
+ ) : ( )
+ )
+ }
diff --git a/applications/osb-portal/src/pages/Repositories/RepositoriesPage.tsx b/applications/osb-portal/src/pages/Repositories/RepositoriesPage.tsx
index c11d1491a..be680744d 100644
--- a/applications/osb-portal/src/pages/Repositories/RepositoriesPage.tsx
+++ b/applications/osb-portal/src/pages/Repositories/RepositoriesPage.tsx
@@ -27,7 +27,7 @@ import { OSBRepository, Tag } from "../../apiclient/workspaces";
import searchFilter from "../../types/searchFilter";
//hooks
-import { useNavigate } from "react-router-dom";
+import { useNavigate, useSearchParams } from "react-router-dom";
//api
import RepositoryService from "../../service/RepositoryService";
@@ -89,12 +89,13 @@ export const RepositoriesPage = ({
user: UserInfo;
counter: number;
}) => {
+ const [searchParams, ] = useSearchParams();
const navigate = useNavigate();
const [searchFilterValues, setSearchFilterValues] =
React.useState({
- text: undefined,
- tags: [],
- types: [],
+ text: searchParams.get("q"),
+ tags: searchParams.getAll("tags"),
+ types: searchParams.getAll("types"),
});
const [repositories, setRepositories] = React.useState([]);
const [page, setPage] = React.useState(1);
@@ -110,9 +111,10 @@ export const RepositoriesPage = ({
navigate(`/repositories/${repositoryId}`);
};
- const debouncedHandleSearchFilter = debounce((newTextFilter: string) => {
+ const debouncedHandleSearchFilter = (newTextFilter: string) => {
setSearchFilterValues({ ...searchFilterValues, text: newTextFilter });
- }, 500);
+ debounce(() => updateReposList(newTextFilter), 500)();
+ };
const setReposValues = (reposDetails) => {
setRepositories(reposDetails.osbrepositories);
@@ -121,15 +123,15 @@ export const RepositoriesPage = ({
setLoading(false);
};
- const updateReposList = () => {
+ const updateReposList = (updatedSearchFilterValues) => {
const isSearchFieldsEmpty =
- searchFilterValues.tags.length === 0 &&
- searchFilterValues.types.length === 0 &&
- (typeof searchFilterValues.text === "undefined" ||
- searchFilterValues.text === "");
+ updatedSearchFilterValues.tags.length === 0 &&
+ updatedSearchFilterValues.types.length === 0 &&
+ (typeof updatedSearchFilterValues.text === "undefined" ||
+ updatedSearchFilterValues.text === "");
setLoading(true);
if (!isSearchFieldsEmpty) {
- const myReposFilter = tabValue ? {...searchFilterValues, user_id: user.id} : searchFilterValues
+ const myReposFilter = tabValue ? { ...updatedSearchFilterValues, user_id: user.id } : updatedSearchFilterValues
RepositoryService.getRepositoriesByFilter(
page,
@@ -151,12 +153,13 @@ export const RepositoriesPage = ({
};
const handleRefreshRepositories = () => {
- updateReposList();
+ updateReposList(searchFilterValues);
}
const handleTabChange = (event: any, newValue: RepositoriesTab) => {
setTotal(0);
setTabValue(newValue);
+ setPage(1)
};
const changeListView = (type: string) => {
@@ -188,12 +191,12 @@ export const RepositoriesPage = ({
);
}
};
- React.useEffect(updateReposList, [page, searchFilterValues, tabValue, counter]);
+ React.useEffect(() => updateReposList(searchFilterValues), [page, searchFilterValues, tabValue, counter]);
return (
<>
-
+
)}
-
+
{repositories && totalPages > 1 && (
({
padding: 0,
@@ -190,7 +191,7 @@ export const RepositoryPage = (props: any) => {
)
.then(() => {
setShowWorkspaceEditor(false);
- setWorkspaceLink(`/workspace/${ws.id}`);
+ setWorkspaceLink(`/workspaces/${ws.id}`);
confirmAction("Success", "New workspace created!", true);
})
.catch((e) => {
@@ -219,7 +220,7 @@ export const RepositoryPage = (props: any) => {
.then(() => {
setSelectedWorkspace(null);
confirmAction("Success", "Resources added to workspace!", true);
- setWorkspaceLink(`/workspace/${selectedWorkspace.id}`);
+ setWorkspaceLink(`/workspaces/${selectedWorkspace.id}`);
setLoading(false);
setShowExisitngWorkspaceEditor(false);
})
@@ -452,10 +453,18 @@ export const RepositoryPage = (props: any) => {
}
>
{checked.length > 0 && (
- handleChipDelete(chipPath)}
- />
+
+
handleChipDelete(chipPath)}
+ />
+
+ Please note that adding a file when a file with the same name already exists will overwrite the previous version of the file in the workspace.
+
+
)}
setWorkspace(ws)}
diff --git a/applications/osb-portal/src/pages/UserPage.tsx b/applications/osb-portal/src/pages/UserPage.tsx
index 44b069e2a..05cac6398 100644
--- a/applications/osb-portal/src/pages/UserPage.tsx
+++ b/applications/osb-portal/src/pages/UserPage.tsx
@@ -182,7 +182,8 @@ export const UserPage = (props: any) => {
React.useEffect(() => {
getUser(userName).then((u) => {
setUser(u);
-
+ }).catch((e) => {
+ setError(e);
});
}, [userName, props.workspacesCounter]);
@@ -282,7 +283,7 @@ export const UserPage = (props: any) => {
setProfileEditDialogOpen(false);
updateUser(u)
.then((updatedUser) => {
- setUser(updatedUser);
+ setUser({ ...updatedUser, ...u });
setLoading(false);
})
.catch((err) => {
@@ -308,7 +309,7 @@ export const UserPage = (props: any) => {
}
const openWorkspaceUrl = (workspaceId: number) => {
- navigate(`/workspace/${workspaceId}`);
+ navigate(`/workspaces/${workspaceId}`);
};
const canEdit =
@@ -793,7 +794,7 @@ export const UserPage = (props: any) => {
{canEdit && profileEditDialogOpen && (
setProfileEditDialogOpen(false)}
/>
diff --git a/applications/osb-portal/src/pages/WorkspaceOpenPage.tsx b/applications/osb-portal/src/pages/WorkspaceOpenPage.tsx
index 383857d91..c58473395 100644
--- a/applications/osb-portal/src/pages/WorkspaceOpenPage.tsx
+++ b/applications/osb-portal/src/pages/WorkspaceOpenPage.tsx
@@ -19,7 +19,7 @@ export default (props: any) => {
}, [workspaceId]);
return (
-
+
diff --git a/applications/osb-portal/src/pages/WorkspacePage.tsx b/applications/osb-portal/src/pages/WorkspacePage.tsx
index 541b3c040..ec296f96b 100644
--- a/applications/osb-portal/src/pages/WorkspacePage.tsx
+++ b/applications/osb-portal/src/pages/WorkspacePage.tsx
@@ -80,7 +80,7 @@ export const WorkspacePage = (props: any) => {
};
const openWithApp = (selectedOption: OSBApplication) => {
- navigate(`/workspace/open/${workspaceId}/${selectedOption.code}`);
+ navigate(`/workspaces/open/${workspaceId}/${selectedOption.code}`);
};
const canEdit = canEditWorkspace(props.user, workspace);
@@ -97,16 +97,13 @@ export const WorkspacePage = (props: any) => {
{
@@ -240,6 +233,7 @@ export const WorkspacePage = (props: any) => {
user={user}
open={true}
hideTabs={true}
+ staticPage={true}
refreshWorkspace={props.refreshWorkspace}
currentResource={
workspace.lastOpen || workspace.resources[0]
@@ -248,7 +242,7 @@ export const WorkspacePage = (props: any) => {
{
},
}}
>
-
+
{workspace?.thumbnail && (
{
}
title={workspace.name}
alt={workspace.name}
+ style={{
+ width: 'auto',
+ height: 'auto',
+ maxWidth: '100%',
+ maxHeight: '300px'
+ }}
/>
)}
diff --git a/applications/osb-portal/src/pages/WorkspacesPage.tsx b/applications/osb-portal/src/pages/WorkspacesPage.tsx
index da0a94545..8726c7dab 100644
--- a/applications/osb-portal/src/pages/WorkspacesPage.tsx
+++ b/applications/osb-portal/src/pages/WorkspacesPage.tsx
@@ -1,7 +1,7 @@
import * as React from "react";
import { ReactElement } from "react";
import debounce from "lodash/debounce";
-import { useNavigate } from "react-router-dom";
+import { useNavigate, useSearchParams } from "react-router-dom";
//components
import Box from "@mui/material/Box";
@@ -46,12 +46,13 @@ interface WorkspacesPageProps {
export const WorkspacesPage = (props: WorkspacesPageProps) => {
const navigate = useNavigate();
+ const [searchParams, ] = useSearchParams();
const [searchFilterValues, setSearchFilterValues] =
React.useState({
- text: undefined,
- tags: [],
- types: [],
+ text: searchParams.get("q"),
+ tags: searchParams.getAll("tags"),
+ types: searchParams.getAll("types"),
});
const [workspaces, setWorkspaces] = React.useState(null);
@@ -81,15 +82,23 @@ export const WorkspacesPage = (props: WorkspacesPageProps) => {
searchFilterValues.text === "");
const openWorkspaceUrl = (workspaceId: number) => {
- navigate(`/workspace/${workspaceId}`);
+ navigate(`/workspaces/${workspaceId}`);
};
- const debouncedHandleSearchFilter = debounce((newTextFilter: string) => {
+
+ const debouncedHandleSearchFilter = (newTextFilter: string) => {
setSearchFilterValues({
...searchFilterValues,
text: newTextFilter,
});
- }, 500);
+
+ debounce(() => {
+ getWorkspacesList({ searchFilterValues: { ...searchFilterValues, text: newTextFilter } });
+ }, 500);
+ };
+
+
+
const setWorkspacesValues = (workspacesDetails) => {
setWorkspaces(workspacesDetails.items);
diff --git a/applications/osb-portal/src/service/RepositoryService.tsx b/applications/osb-portal/src/service/RepositoryService.tsx
index 7d78be45d..2b1d99f2d 100644
--- a/applications/osb-portal/src/service/RepositoryService.tsx
+++ b/applications/osb-portal/src/service/RepositoryService.tsx
@@ -151,6 +151,17 @@ class RepositoryService {
return this.workspacesApi.osbrepositoryIdPut(requestParameters);
}
+ async updateRepostioryThumbnail(
+ repositoryId: number,
+ thumbNailBlob: Blob
+ ): Promise {
+ const repoRequest: workspaceApi.WorkspacesControllersOsbrepositoryControllerSetthumbnailRequest =
+ { id: repositoryId, thumbNail: thumbNailBlob };
+ await this.workspacesApi.workspacesControllersOsbrepositoryControllerSetthumbnail(
+ repoRequest
+ );
+ }
+
async getAllTags(
page?: number,
perPage?: number,
diff --git a/applications/osb-portal/src/utils.ts b/applications/osb-portal/src/utils.ts
index a59aba8c2..1feacfc2f 100644
--- a/applications/osb-portal/src/utils.ts
+++ b/applications/osb-portal/src/utils.ts
@@ -32,4 +32,26 @@ export function getNotebooksNamedServerLink() {
return null;
}
return `//${OSBAllApplications.jupyter.subdomain}.${getBaseDomain()}/hub/home`
+}
+
+export function getCleanPath(path: string) {
+ const pathParts = path.split("/")
+ if (pathParts[pathParts.length - 1] === "") {
+ pathParts.pop()
+ }
+ return pathParts
+}
+
+export async function readFile(file: Blob) {
+ return new Promise((resolve, reject) => {
+ const fileReader: FileReader = new FileReader();
+
+ fileReader.onload = () => {
+ resolve(fileReader.result);
+ };
+
+ fileReader.onerror = reject;
+
+ fileReader.readAsArrayBuffer(file);
+ });
}
\ No newline at end of file
diff --git a/applications/osb-portal/test/e2e/main_flows.spec.ts b/applications/osb-portal/test/e2e/main_flows.spec.ts
index c40289435..82bb6fe2e 100644
--- a/applications/osb-portal/test/e2e/main_flows.spec.ts
+++ b/applications/osb-portal/test/e2e/main_flows.spec.ts
@@ -59,7 +59,7 @@ const testApplication =
}
await page.waitForSelector(selectors.OPENED_WORKSPACE);
- expect(page.url()).toContain("/workspace/");
+ expect(page.url()).toContain("/workspaces/");
await page.waitForSelector(selectors.SELECT_APPLICATION);
await page.click(selectors.SELECT_APPLICATION);
diff --git a/applications/workspaces/README.md b/applications/workspaces/README.md
index 587f7815c..4c3d014bf 100644
--- a/applications/workspaces/README.md
+++ b/applications/workspaces/README.md
@@ -43,6 +43,8 @@ Configuration of the server can be changed in the config.py file
### Regenerate backend from openapi
+
+Check the workspaces/api/README.md for more information about the openapi generation.
```
openapi-generator-cli generate -i api/openapi.yaml -g python-flask -o server -c api/config.json
```
diff --git a/applications/workspaces/api/README.md b/applications/workspaces/api/README.md
index 246a28553..71f7933a8 100644
--- a/applications/workspaces/api/README.md
+++ b/applications/workspaces/api/README.md
@@ -1,5 +1,7 @@
# Generate the frontend and backend openapi clients
+You can use the script `generate_openapi_stubs.sh` to generate the openapi stubs for the frontend and backend. Ensure you are in the right directory and run the script.
+
## Set openapi version
```
diff --git a/applications/workspaces/api/generate_openapi_stubs.sh b/applications/workspaces/api/generate_openapi_stubs.sh
new file mode 100644
index 000000000..4673ed636
--- /dev/null
+++ b/applications/workspaces/api/generate_openapi_stubs.sh
@@ -0,0 +1,24 @@
+
+
+# Install OpenAPI Generator
+npm install @openapitools/openapi-generator-cli -g
+
+# Set OpenAPI Generator Version
+openapi-generator-cli version-manager set 5.1.0
+
+# Generate OpenAPI Stubs - be in the api directory
+if [[ $(pwd) == */applications/workspaces/api ]]; then
+ # Generate Backend Stubs
+ openapi-generator-cli generate -i openapi.yaml -g python-flask -o ../server -c config.json
+
+ # Since /workspaces/api/openapi.yaml and /workspaces/api/server/workspaces/openapi/openapi.yaml are suppose to be same
+ # we need to copy the generated file to the correct location
+ cp openapi.yaml ../server/workspaces/openapi/openapi.yaml
+
+ # Generate Frontend Stubs
+ openapi-generator-cli generate -i openapi.yaml -g typescript-fetch -o ../../osb-portal/src/apiclient/workspaces -c config.json
+
+else
+ echo "Please run this script from the api directory"
+fi
+
diff --git a/applications/workspaces/api/openapi.yaml b/applications/workspaces/api/openapi.yaml
index 060074f8f..295f37de1 100644
--- a/applications/workspaces/api/openapi.yaml
+++ b/applications/workspaces/api/openapi.yaml
@@ -932,6 +932,37 @@ paths:
$ref: '#/components/schemas/RepositoryType'
in: query
required: true
+ '/osbrepository/{id}/thumbnail/':
+ post:
+ requestBody:
+ content:
+ multipart/form-data:
+ schema:
+ type: object
+ properties:
+ thumbNail:
+ format: binary
+ type: string
+ tags:
+ - rest
+ responses:
+ '200':
+ description: The repository was updated with the thumbnail.
+ '404':
+ description: The repository was not found or the thumbnail was not specified
+ security:
+ -
+ bearerAuth: []
+ operationId: workspaces.controllers.osbrepository_controller.setthumbnail
+ summary: Sets the thumbnail of the workspace.
+ parameters:
+ -
+ name: id
+ description: 'Repository ID '
+ schema:
+ type: integer
+ in: path
+ required: true
components:
schemas:
Valid:
@@ -1342,66 +1373,6 @@ components:
type: array
items:
type: string
- OSBRepositoryBase:
- description: OSB Repository Base model
- required:
- - name
- - repository_type
- - content_types
- - uri
- type: object
- properties:
- id:
- $ref: '#/components/schemas/PrimaryKey'
- description: Unique identifier of the repository
- name:
- description: Repository name.
- type: string
- example: Repo One
- summary:
- description: Summary describing the OSB Repository
- type: string
- example: Sample repository with experimental data
- repository_type:
- $ref: '#/components/schemas/RepositoryType'
- description: Repository type
- content_types:
- description: List of Repository Content Types
- type: string
- auto_sync:
- description: Auto sync of the resources
- default: true
- type: boolean
- example: true
- uri:
- description: URI of the repository
- type: string
- example: 'https://github.com/OpenSourceBrain/OSBv2'
- default_context:
- description: The default branch to show for this repository
- type: string
- example: develop
- user_id:
- description: 'OSBRepository keycloak user id, will be automatically be set to the logged in user'
- type: string
- timestamp_created:
- format: date-time
- description: Date/time the Workspace is created
- type: string
- example: '2019-11-23T01:23:45.000Z'
- timestamp_updated:
- format: date-time
- description: Date/time the Workspace is last updated
- type: string
- example: '2019-11-23T01:23:45.000Z'
- tags:
- type: array
- items:
- allOf:
- -
- $ref: '#/components/schemas/Tag'
- -
- x-secondary: osbrepository_tag
WorkspaceResourceBase:
required:
- name
@@ -1441,6 +1412,7 @@ components:
-
$ref: '#/components/schemas/WorkspaceResourceBase'
-
+ x-tablename: Workspaceresource
properties:
origin:
description: Origin data JSON formatted of the WorkspaceResource
@@ -1453,7 +1425,6 @@ components:
description: WorkspaceResource path where the resource will stored in the pvc.
type: string
example: repo/sample.nwb
- x-tablename: Workspaceresource
WorkspaceResource:
description: Workspace Resource item of a Workspace
allOf:
@@ -1471,6 +1442,69 @@ components:
description: WorkspaceResource path where the resource will stored in the pvc.
type: string
example: repo/sample.nwb
+ OSBRepositoryBase:
+ description: OSB Repository Base model
+ required:
+ - name
+ - repository_type
+ - content_types
+ - uri
+ type: object
+ properties:
+ id:
+ $ref: '#/components/schemas/PrimaryKey'
+ description: Unique identifier of the repository
+ name:
+ description: Repository name.
+ type: string
+ example: Repo One
+ summary:
+ description: Summary describing the OSB Repository
+ type: string
+ example: Sample repository with experimental data
+ repository_type:
+ $ref: '#/components/schemas/RepositoryType'
+ description: Repository type
+ content_types:
+ description: List of Repository Content Types
+ type: string
+ auto_sync:
+ description: Auto sync of the resources
+ default: true
+ type: boolean
+ example: true
+ uri:
+ description: URI of the repository
+ type: string
+ example: 'https://github.com/OpenSourceBrain/OSBv2'
+ default_context:
+ description: The default branch to show for this repository
+ type: string
+ example: develop
+ thumbnail:
+ $ref: '#/components/schemas/ImageType'
+ description: Resource OSB thumbnail.
+ user_id:
+ description: 'OSBRepository keycloak user id, will be automatically be set to the logged in user'
+ type: string
+ timestamp_created:
+ format: date-time
+ description: Date/time the Workspace is created
+ type: string
+ example: '2019-11-23T01:23:45.000Z'
+ timestamp_updated:
+ format: date-time
+ description: Date/time the Workspace is last updated
+ type: string
+ example: '2019-11-23T01:23:45.000Z'
+ tags:
+ type: array
+ items:
+ allOf:
+ -
+ $ref: '#/components/schemas/Tag'
+ -
+ x-secondary: osbrepository_tag
securitySchemes:
bearerAuth:
scheme: bearer
@@ -1489,4 +1523,4 @@ tags:
description: Consumer
-
name: Client
- description: Client
+ description: Client
\ No newline at end of file
diff --git a/applications/workspaces/deploy/values.yaml b/applications/workspaces/deploy/values.yaml
index 10bed4c35..66ade3d6c 100644
--- a/applications/workspaces/deploy/values.yaml
+++ b/applications/workspaces/deploy/values.yaml
@@ -25,7 +25,7 @@ harness:
resources:
requests:
memory: 128Mi
- cpu: 200m
+ cpu: 20m
limits:
memory: 512Mi
cpu: 1500m
@@ -64,14 +64,14 @@ harness:
resources:
requests:
memory: 128Mi
- cpu: 200m
+ cpu: 20m
limits:
memory: "256Mi"
- cpu: "500m"
+ cpu: "2000m"
test:
unit:
enabled: true
commands:
- pytest /usr/src/app/
-workspace_size: 2Gi
\ No newline at end of file
+workspace_size: 2Gi
diff --git a/applications/workspaces/server/.openapi-generator-ignore b/applications/workspaces/server/.openapi-generator-ignore
index 31ebaaafd..5faf9aa73 100644
--- a/applications/workspaces/server/.openapi-generator-ignore
+++ b/applications/workspaces/server/.openapi-generator-ignore
@@ -33,4 +33,7 @@ test-requirements.txt
**/__init__.py
**/encoder.py
openapi
-**/controllers
\ No newline at end of file
+**/controllers
+
+**/test/test_k8s_controller.py
+**/test/test_rest_controller.py
diff --git a/applications/workspaces/server/README.md b/applications/workspaces/server/README.md
index 96cf07018..0b09f21d8 100644
--- a/applications/workspaces/server/README.md
+++ b/applications/workspaces/server/README.md
@@ -8,7 +8,7 @@ is an example of building a OpenAPI-enabled Flask server.
This example uses the [Connexion](https://github.com/zalando/connexion) library on top of Flask.
## Requirements
-Python 3.5.2+
+Python 3.9+
## Usage
To run the server, please execute the following from the root directory:
diff --git a/applications/workspaces/server/requirements.txt b/applications/workspaces/server/requirements.txt
index 4cd709b21..2e6977895 100644
--- a/applications/workspaces/server/requirements.txt
+++ b/applications/workspaces/server/requirements.txt
@@ -1,94 +1,72 @@
argo-workflows==5.0.0
-asn1crypto==0.24.0
-atomicwrites==1.4.0
-attrs==21.4.0
-autopep8==1.6.0
-black==22.1.0
-blinker==1.4
-cachetools==5.0.0
-certifi==2019.3.9
-cffi==1.15.0
-chardet==3.0.4
-charset-normalizer==2.0.12
-click==8.0.4
+attrs==23.2.0
+blinker==1.7.0
+cachetools==5.3.2
+certifi==2023.11.17
+cffi==1.16.0
+charset-normalizer==3.3.2
+click==8.1.7
clickclick==20.10.2
-connexion==2.6.0
-coverage==6.3.2
-cryptography==3.3.2
-distlib==0.3.4
-ecdsa==0.17.0
-filelock==3.6.0
-flake8==4.0.1
-Flask==1.1.2
-Flask-Cors==3.0.8
-flask-oidc==1.4.0
-Flask-SQLAlchemy==2.4.1
-Flask-Testing==0.6.1
-google-auth==2.6.2
-greenlet==1.1.2
-gunicorn==20.1.0
-httplib2==0.20.4
-idna==2.8
-importlib-metadata==4.2.0
-importlib-resources==5.4.0
+connexion==2.14.2
+cryptography==41.0.7
+deprecation==2.1.0
+ecdsa==0.18.0
+exceptiongroup==1.1.2
+Flask==2.2.5
+Flask-Cors==4.0.0
+Flask-SQLAlchemy==3.0.2
+frozendict==2.4.0
+google-auth==2.26.2
+greenlet==3.0.3
+gunicorn==21.2.0
+idna==3.6
+importlib-metadata==7.0.1
inflection==0.5.1
-isort==5.10.1
-itsdangerous==2.0.1
+iniconfig==2.0.0
+itsdangerous==2.1.2
Jinja2==3.0.3
jsonschema==4.4.0
kafka-python==2.0.2
-kazoo==2.5.0
-kubernetes==11.0.0
-MarkupSafe==2.1.1
-mccabe==0.6.1
-more-itertools==8.12.0
-mypy-extensions==0.4.3
-oauth2client==4.1.3
-oauthlib==3.2.0
-OpenAlchemy==1.1.0
+kubernetes==29.0.0
+MarkupSafe==2.1.3
+oauthlib==3.2.2
+openalchemy==1.1.0
openapi-schema-validator==0.2.3
openapi-spec-validator==0.4.0
-packaging==21.3
-pathspec==0.9.0
-pep517==0.12.0
-pip-tools==6.5.1
-platformdirs==2.5.1
-pluggy==0.13.1
-psycopg2-binary
-py==1.11.0
-pyasn1==0.4.8
-pyasn1-modules==0.2.8
-pycodestyle==2.8.0
+oyaml==1.0
+packaging==23.2
+pluggy==1.2.0
+psutil==5.9.4
+psycopg2-binary==2.9.9
+pyaml==23.12.0
+pyasn1==0.5.1
+pyasn1-modules==0.3.0
pycparser==2.21
-pyflakes==2.4.0
-PyJWT>=2.0.0
-pykafka==2.8.0
-pyOpenSSL==19.0.0
-pyparsing==3.0.7
-pyrsistent==0.18.1
-PySocks==1.6.8
-pytest==4.6.11
-pytest-cov==3.0.0
-pytest-randomly==1.2.3
+pyhumps==3.8.0
+PyJWT==2.8.0
+pyrsistent==0.20.0
+pytest==7.4.0
python-dateutil==2.8.2
python-jose==3.3.0
-requests==2.27.1
+python-keycloak==3.7.0
+PyYAML==6.0.1
+referencing==0.32.1
+requests==2.31.0
requests-oauthlib==1.3.1
-rsa==4.8
-sentry-sdk==0.14.4
+requests-toolbelt==1.0.0
+responses==0.22.0
+rpds-py==0.17.1
+rsa==4.9
+sentry-sdk==1.39.2
six==1.16.0
-SQLAlchemy==1.4.32
-swagger-ui-bundle==0.0.8
-tabulate==0.8.9
+SQLAlchemy==1.4.51
+sqlalchemy-stubs==0.4
+swagger-ui-bundle==0.0.9
toml==0.10.2
tomli==2.0.1
-tox==3.24.5
-typed-ast==1.5.2
-typing_extensions==4.1.1
-urllib3==1.26.9
-virtualenv==20.13.4
-wcwidth==0.2.5
-websocket-client==1.3.1
-Werkzeug==2.0.3
-zipp==3.7.0
-responses==0.22.0
+types-toml==0.10.8.7
+typing_extensions==4.9.0
+urllib3==2.1.0
+websocket-client==1.7.0
+Werkzeug==2.2.3
+zipp==3.17.0
diff --git a/applications/workspaces/server/setup.py b/applications/workspaces/server/setup.py
index 12f2a04f9..9053227d2 100644
--- a/applications/workspaces/server/setup.py
+++ b/applications/workspaces/server/setup.py
@@ -14,14 +14,17 @@
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
- "connexion>=2.0.2",
+ "connexion[swagger-ui]>=2.6.0",
"swagger-ui-bundle>=0.0.2",
"python_dateutil>=2.6.0",
- "Flask-SQLAlchemy>=2.4.1",
- "OpenAlchemy>=1.1.0",
+ "Flask-SQLAlchemy>3.0.0",
+ "OpenAlchemy==1.1.0",
"psycopg2-binary",
"cloudharness",
- "flask_cors"
+ "flask_cors",
+ "sentry-sdk",
+ "responses==0.22.0",
+ "jinja2<3.1.0"
]
setup(
diff --git a/applications/workspaces/server/workspaces/__main__.py b/applications/workspaces/server/workspaces/__main__.py
index d206e2536..b5d874145 100644
--- a/applications/workspaces/server/workspaces/__main__.py
+++ b/applications/workspaces/server/workspaces/__main__.py
@@ -32,8 +32,7 @@ def setup_static_router(app):
# remove the static route (if exists)
app.url_map._rules_by_endpoint["static"] = []
# add / as static route
- app.add_url_rule(f"/", endpoint="static", view_func=app.send_static_file)
-
+ app.add_url_rule(f"/", view_func=app.send_static_file)
def init_app(app):
cors = CORS(app, resources={r"/api/*": {"origins": "*"}})
@@ -56,7 +55,7 @@ def init_app(app):
"Could not start kafka consumers. Some application functionality won't be available.", exc_info=True
)
mkdirs()
- setup_static_router(app)
+ setup_static_router(app)
app.template_folder = Config.TEMPLATE_DIR
@@ -70,7 +69,6 @@ def init_app(app):
-
if __name__ == "__main__":
cloudharness.set_debug()
main()
diff --git a/applications/workspaces/server/workspaces/config.py b/applications/workspaces/server/workspaces/config.py
index 0b3accf15..de44ae1cf 100644
--- a/applications/workspaces/server/workspaces/config.py
+++ b/applications/workspaces/server/workspaces/config.py
@@ -22,6 +22,7 @@ class Config(object):
STATIC_DIR = os.path.join(BASE_DIR, "static")
TEMPLATE_DIR = os.path.join(BASE_DIR, "templates")
WORKSPACES_DIR = "workspaces"
+ REPOSITORY_DIR = "repositories"
OPENAPI_DIR = os.path.join(BASE_DIR, "openapi")
OPENAPI_FILE = "openapi.yaml"
LOG_LEVEL = logging.DEBUG
diff --git a/applications/workspaces/server/workspaces/controllers/crud/crud_controllers.py b/applications/workspaces/server/workspaces/controllers/crud/crud_controllers.py
index e10baf987..68df4eaed 100644
--- a/applications/workspaces/server/workspaces/controllers/crud/crud_controllers.py
+++ b/applications/workspaces/server/workspaces/controllers/crud/crud_controllers.py
@@ -13,6 +13,8 @@
from workspaces.controllers.crud.base_model_controller import BaseModelView
+from cloudharness.workflows.argo import delete_workflow
+
class WorkspaceView(BaseModelView):
@@ -24,6 +26,17 @@ def post(self, body):
except NotAllowed:
return "Not allowed", 405
+
+
+ def delete(self, id_):
+ """Delete an object from the repository."""
+ for wf in WorkspaceService.get_workspace_workflows(id_):
+ delete_workflow(wf.name)
+
+ return super().delete(id_)
+
+
+
class OsbrepositoryView(BaseModelView):
service = OsbrepositoryService()
diff --git a/applications/workspaces/server/workspaces/controllers/osbrepository_controller.py b/applications/workspaces/server/workspaces/controllers/osbrepository_controller.py
index 943eb9ea6..78d901e9e 100644
--- a/applications/workspaces/server/workspaces/controllers/osbrepository_controller.py
+++ b/applications/workspaces/server/workspaces/controllers/osbrepository_controller.py
@@ -1,6 +1,10 @@
from cloudharness import log
import workspaces.service.osbrepository as repository_service
+from workspaces.persistence.crud_persistence import OSBRepositoryRepository, db
+from .workspace_controller import _save_image
+from workspaces.config import Config
+from workspaces.controllers.workspace_controller import setthumbnail
def get_contexts(uri=None, repository_type=None, **kwargs):
# get the branches of the repository
@@ -49,4 +53,18 @@ def get_info(uri=None, repository_type=None):
return info, 200
except Exception as e:
log.error("Error getting repo info", exc_info=True)
- return str(e), 500
\ No newline at end of file
+ return str(e), 500
+
+
+def setthumbnail(id_=None, thumb_nail=None, body=None, **kwargs):
+ repository = OSBRepositoryRepository().get(id=id_)
+ if repository is None:
+ return f"Repository with id {id_} not found.", 404
+ if not thumb_nail:
+ return f"Thumbnail is not specified.", 404
+
+ saved_filename = _save_image(id_=id_, image=thumb_nail, filename_base="thumbnail", dirname=Config.REPOSITORY_DIR)
+ repository.thumbnail = saved_filename
+ db.session.add(repository)
+ db.session.commit()
+ return "Saved", 200
\ No newline at end of file
diff --git a/applications/workspaces/server/workspaces/controllers/rest_controller.py b/applications/workspaces/server/workspaces/controllers/rest_controller.py
index 8c31bb4ba..b55e7858b 100644
--- a/applications/workspaces/server/workspaces/controllers/rest_controller.py
+++ b/applications/workspaces/server/workspaces/controllers/rest_controller.py
@@ -442,6 +442,21 @@ def workspaceresource_post(workspace_resource): # noqa: E501
return 'do some magic!'
+def workspaces_controllers_osbrepository_controller_setthumbnail(id, thumb_nail=None): # noqa: E501
+ """Sets the thumbnail of the workspace.
+
+ # noqa: E501
+
+ :param id: Repository ID
+ :type id: int
+ :param thumb_nail:
+ :type thumb_nail: str
+
+ :rtype: Union[None, Tuple[None, int], Tuple[None, int, Dict[str, str]]
+ """
+ return 'do some magic!'
+
+
def workspaces_controllers_workspace_controller_addimage(id, image=None): # noqa: E501
"""Adds and image to the workspace.
diff --git a/applications/workspaces/server/workspaces/controllers/workspace_controller.py b/applications/workspaces/server/workspaces/controllers/workspace_controller.py
index 83ad1463f..d52e13d5a 100644
--- a/applications/workspaces/server/workspaces/controllers/workspace_controller.py
+++ b/applications/workspaces/server/workspaces/controllers/workspace_controller.py
@@ -12,9 +12,9 @@
from workspaces.helpers.etl_helpers import copy_origins
from workspaces.service.crud_service import NotAuthorized, NotAllowed, WorkspaceService
-def _save_image(id_=None, image=None, filename_base=None):
+def _save_image(id_=None, image=None, filename_base=None, dirname=None):
ext = mimetypes.guess_extension(image.mimetype)
- folder = os.path.join(Config.WORKSPACES_DIR, f"{id_}")
+ folder = os.path.join(dirname, f"{id_}")
Path(os.path.join(Config.STATIC_DIR, folder)).mkdir(parents=True, exist_ok=True)
if filename_base is None:
@@ -38,7 +38,7 @@ def setthumbnail(id_=None, thumb_nail=None, body=None, **kwargs):
# filename = f"{folder}/thumbnail{ext}"
# thumbNail.save(os.path.join(Config.STATIC_DIR,filename))
- saved_filename = _save_image(id_=id_, image=thumb_nail, filename_base="thumbnail")
+ saved_filename = _save_image(id_=id_, image=thumb_nail, filename_base="thumbnail", dirname=Config.WORKSPACES_DIR)
workspace.thumbnail = saved_filename
db.session.add(workspace)
db.session.commit()
@@ -58,7 +58,7 @@ def addimage(id_=None, image=None, body=None, **kwargs):
# image.save(os.path.join(Config.STATIC_DIR, image.filename))
- saved_filename = _save_image(id=id_, image=image)
+ saved_filename = _save_image(id=id_, image=image, dirname=Config.WORKSPACES_DIR)
workspace.gallery.append(WorkspaceImage(image=saved_filename))
db.session.add(workspace)
db.session.commit()
diff --git a/applications/workspaces/server/workspaces/models/base_model_.py b/applications/workspaces/server/workspaces/models/base_model_.py
index eb41d484c..da965052c 100644
--- a/applications/workspaces/server/workspaces/models/base_model_.py
+++ b/applications/workspaces/server/workspaces/models/base_model_.py
@@ -2,7 +2,7 @@
import six
import typing
-import datetime
+
from workspaces import util
T = typing.TypeVar('T')
@@ -11,11 +11,11 @@
class Model(object):
# openapiTypes: The key is attribute name and the
# value is attribute type.
- openapi_types: typing.Dict[str, type] = {}
+ openapi_types = {}
# attributeMap: The key is attribute name and the
# value is json key in definition.
- attribute_map: typing.Dict[str, str] = {}
+ attribute_map = {}
@classmethod
def from_dict(cls: typing.Type[T], dikt) -> T:
@@ -44,8 +44,6 @@ def to_dict(self):
if hasattr(item[1], "to_dict") else item,
value.items()
))
- elif isinstance(value, datetime.datetime):
- result[attr] = value.isoformat()
else:
result[attr] = value
diff --git a/applications/workspaces/server/workspaces/models/dandi_repository_resource.py b/applications/workspaces/server/workspaces/models/dandi_repository_resource.py
index 98babb44c..1f6a8d2af 100644
--- a/applications/workspaces/server/workspaces/models/dandi_repository_resource.py
+++ b/applications/workspaces/server/workspaces/models/dandi_repository_resource.py
@@ -6,8 +6,10 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
+from workspaces.models.repository_resource_base import RepositoryResourceBase
from workspaces import util
+from workspaces.models.repository_resource_base import RepositoryResourceBase # noqa: E501
class DandiRepositoryResource(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/applications/workspaces/server/workspaces/models/download_resource.py b/applications/workspaces/server/workspaces/models/download_resource.py
index 85fb17b38..56b35e6fb 100644
--- a/applications/workspaces/server/workspaces/models/download_resource.py
+++ b/applications/workspaces/server/workspaces/models/download_resource.py
@@ -6,8 +6,10 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
+from workspaces.models.resource_base import ResourceBase
from workspaces import util
+from workspaces.models.resource_base import ResourceBase # noqa: E501
class DownloadResource(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/applications/workspaces/server/workspaces/models/figshare_repository_resource.py b/applications/workspaces/server/workspaces/models/figshare_repository_resource.py
index eb1dab803..083b05c51 100644
--- a/applications/workspaces/server/workspaces/models/figshare_repository_resource.py
+++ b/applications/workspaces/server/workspaces/models/figshare_repository_resource.py
@@ -6,8 +6,10 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
+from workspaces.models.repository_resource_base import RepositoryResourceBase
from workspaces import util
+from workspaces.models.repository_resource_base import RepositoryResourceBase # noqa: E501
class FigshareRepositoryResource(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/applications/workspaces/server/workspaces/models/git_repository_resource.py b/applications/workspaces/server/workspaces/models/git_repository_resource.py
index ead0b27f7..d090ea78d 100644
--- a/applications/workspaces/server/workspaces/models/git_repository_resource.py
+++ b/applications/workspaces/server/workspaces/models/git_repository_resource.py
@@ -6,8 +6,12 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
+from workspaces.models.git_repository_resource_all_of import GITRepositoryResourceAllOf
+from workspaces.models.repository_resource_base import RepositoryResourceBase
from workspaces import util
+from workspaces.models.git_repository_resource_all_of import GITRepositoryResourceAllOf # noqa: E501
+from workspaces.models.repository_resource_base import RepositoryResourceBase # noqa: E501
class GITRepositoryResource(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/applications/workspaces/server/workspaces/models/osb_repository.py b/applications/workspaces/server/workspaces/models/osb_repository.py
index 744953096..acf53f525 100644
--- a/applications/workspaces/server/workspaces/models/osb_repository.py
+++ b/applications/workspaces/server/workspaces/models/osb_repository.py
@@ -6,17 +6,21 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
-from workspaces.models.osb_repository_base_tags_inner import OSBRepositoryBaseTagsInner
+from workspaces.models.osb_repository_all_of import OSBRepositoryAllOf
+from workspaces.models.osb_repository_base import OSBRepositoryBase
from workspaces.models.repository_content_type import RepositoryContentType
from workspaces.models.repository_resource_node import RepositoryResourceNode
from workspaces.models.repository_type import RepositoryType
+from workspaces.models.tag import Tag
from workspaces.models.user import User
from workspaces import util
-from workspaces.models.osb_repository_base_tags_inner import OSBRepositoryBaseTagsInner # noqa: E501
+from workspaces.models.osb_repository_all_of import OSBRepositoryAllOf # noqa: E501
+from workspaces.models.osb_repository_base import OSBRepositoryBase # noqa: E501
from workspaces.models.repository_content_type import RepositoryContentType # noqa: E501
from workspaces.models.repository_resource_node import RepositoryResourceNode # noqa: E501
from workspaces.models.repository_type import RepositoryType # noqa: E501
+from workspaces.models.tag import Tag # noqa: E501
from workspaces.models.user import User # noqa: E501
class OSBRepository(Model):
@@ -25,7 +29,7 @@ class OSBRepository(Model):
Do not edit the class manually.
"""
- def __init__(self, id=None, name=None, summary=None, repository_type=None, content_types=None, auto_sync=True, uri=None, default_context=None, user_id=None, timestamp_created=None, timestamp_updated=None, tags=None, context_resources=None, contexts=None, user=None, content_types_list=None, description=None, timestamp_modified=None): # noqa: E501
+ def __init__(self, id=None, name=None, summary=None, repository_type=None, content_types=None, auto_sync=True, uri=None, default_context=None, thumbnail=None, user_id=None, timestamp_created=None, timestamp_updated=None, tags=None, context_resources=None, contexts=None, user=None, content_types_list=None, description=None, timestamp_modified=None): # noqa: E501
"""OSBRepository - a model defined in OpenAPI
:param id: The id of this OSBRepository. # noqa: E501
@@ -44,6 +48,8 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
:type uri: str
:param default_context: The default_context of this OSBRepository. # noqa: E501
:type default_context: str
+ :param thumbnail: The thumbnail of this OSBRepository. # noqa: E501
+ :type thumbnail: str
:param user_id: The user_id of this OSBRepository. # noqa: E501
:type user_id: str
:param timestamp_created: The timestamp_created of this OSBRepository. # noqa: E501
@@ -51,7 +57,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
:param timestamp_updated: The timestamp_updated of this OSBRepository. # noqa: E501
:type timestamp_updated: datetime
:param tags: The tags of this OSBRepository. # noqa: E501
- :type tags: List[OSBRepositoryBaseTagsInner]
+ :type tags: List[Tag]
:param context_resources: The context_resources of this OSBRepository. # noqa: E501
:type context_resources: RepositoryResourceNode
:param contexts: The contexts of this OSBRepository. # noqa: E501
@@ -74,10 +80,11 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
'auto_sync': bool,
'uri': str,
'default_context': str,
+ 'thumbnail': str,
'user_id': str,
'timestamp_created': datetime,
'timestamp_updated': datetime,
- 'tags': List[OSBRepositoryBaseTagsInner],
+ 'tags': List[Tag],
'context_resources': RepositoryResourceNode,
'contexts': List[str],
'user': User,
@@ -95,6 +102,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
'auto_sync': 'auto_sync',
'uri': 'uri',
'default_context': 'default_context',
+ 'thumbnail': 'thumbnail',
'user_id': 'user_id',
'timestamp_created': 'timestamp_created',
'timestamp_updated': 'timestamp_updated',
@@ -115,6 +123,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
self._auto_sync = auto_sync
self._uri = uri
self._default_context = default_context
+ self._thumbnail = thumbnail
self._user_id = user_id
self._timestamp_created = timestamp_created
self._timestamp_updated = timestamp_updated
@@ -325,6 +334,27 @@ def default_context(self, default_context):
self._default_context = default_context
+ @property
+ def thumbnail(self):
+ """Gets the thumbnail of this OSBRepository.
+
+
+ :return: The thumbnail of this OSBRepository.
+ :rtype: str
+ """
+ return self._thumbnail
+
+ @thumbnail.setter
+ def thumbnail(self, thumbnail):
+ """Sets the thumbnail of this OSBRepository.
+
+
+ :param thumbnail: The thumbnail of this OSBRepository.
+ :type thumbnail: str
+ """
+
+ self._thumbnail = thumbnail
+
@property
def user_id(self):
"""Gets the user_id of this OSBRepository.
@@ -400,7 +430,7 @@ def tags(self):
:return: The tags of this OSBRepository.
- :rtype: List[OSBRepositoryBaseTagsInner]
+ :rtype: List[Tag]
"""
return self._tags
@@ -410,7 +440,7 @@ def tags(self, tags):
:param tags: The tags of this OSBRepository.
- :type tags: List[OSBRepositoryBaseTagsInner]
+ :type tags: List[Tag]
"""
self._tags = tags
diff --git a/applications/workspaces/server/workspaces/models/osb_repository_base.py b/applications/workspaces/server/workspaces/models/osb_repository_base.py
index 70336e824..592189c19 100644
--- a/applications/workspaces/server/workspaces/models/osb_repository_base.py
+++ b/applications/workspaces/server/workspaces/models/osb_repository_base.py
@@ -6,12 +6,12 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
-from workspaces.models.osb_repository_base_tags_inner import OSBRepositoryBaseTagsInner
from workspaces.models.repository_type import RepositoryType
+from workspaces.models.tag import Tag
from workspaces import util
-from workspaces.models.osb_repository_base_tags_inner import OSBRepositoryBaseTagsInner # noqa: E501
from workspaces.models.repository_type import RepositoryType # noqa: E501
+from workspaces.models.tag import Tag # noqa: E501
class OSBRepositoryBase(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +19,7 @@ class OSBRepositoryBase(Model):
Do not edit the class manually.
"""
- def __init__(self, id=None, name=None, summary=None, repository_type=None, content_types=None, auto_sync=True, uri=None, default_context=None, user_id=None, timestamp_created=None, timestamp_updated=None, tags=None): # noqa: E501
+ def __init__(self, id=None, name=None, summary=None, repository_type=None, content_types=None, auto_sync=True, uri=None, default_context=None, thumbnail=None, user_id=None, timestamp_created=None, timestamp_updated=None, tags=None): # noqa: E501
"""OSBRepositoryBase - a model defined in OpenAPI
:param id: The id of this OSBRepositoryBase. # noqa: E501
@@ -38,6 +38,8 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
:type uri: str
:param default_context: The default_context of this OSBRepositoryBase. # noqa: E501
:type default_context: str
+ :param thumbnail: The thumbnail of this OSBRepositoryBase. # noqa: E501
+ :type thumbnail: str
:param user_id: The user_id of this OSBRepositoryBase. # noqa: E501
:type user_id: str
:param timestamp_created: The timestamp_created of this OSBRepositoryBase. # noqa: E501
@@ -45,7 +47,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
:param timestamp_updated: The timestamp_updated of this OSBRepositoryBase. # noqa: E501
:type timestamp_updated: datetime
:param tags: The tags of this OSBRepositoryBase. # noqa: E501
- :type tags: List[OSBRepositoryBaseTagsInner]
+ :type tags: List[Tag]
"""
self.openapi_types = {
'id': int,
@@ -56,10 +58,11 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
'auto_sync': bool,
'uri': str,
'default_context': str,
+ 'thumbnail': str,
'user_id': str,
'timestamp_created': datetime,
'timestamp_updated': datetime,
- 'tags': List[OSBRepositoryBaseTagsInner]
+ 'tags': List[Tag]
}
self.attribute_map = {
@@ -71,6 +74,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
'auto_sync': 'auto_sync',
'uri': 'uri',
'default_context': 'default_context',
+ 'thumbnail': 'thumbnail',
'user_id': 'user_id',
'timestamp_created': 'timestamp_created',
'timestamp_updated': 'timestamp_updated',
@@ -85,6 +89,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
self._auto_sync = auto_sync
self._uri = uri
self._default_context = default_context
+ self._thumbnail = thumbnail
self._user_id = user_id
self._timestamp_created = timestamp_created
self._timestamp_updated = timestamp_updated
@@ -289,6 +294,27 @@ def default_context(self, default_context):
self._default_context = default_context
+ @property
+ def thumbnail(self):
+ """Gets the thumbnail of this OSBRepositoryBase.
+
+
+ :return: The thumbnail of this OSBRepositoryBase.
+ :rtype: str
+ """
+ return self._thumbnail
+
+ @thumbnail.setter
+ def thumbnail(self, thumbnail):
+ """Sets the thumbnail of this OSBRepositoryBase.
+
+
+ :param thumbnail: The thumbnail of this OSBRepositoryBase.
+ :type thumbnail: str
+ """
+
+ self._thumbnail = thumbnail
+
@property
def user_id(self):
"""Gets the user_id of this OSBRepositoryBase.
@@ -364,7 +390,7 @@ def tags(self):
:return: The tags of this OSBRepositoryBase.
- :rtype: List[OSBRepositoryBaseTagsInner]
+ :rtype: List[Tag]
"""
return self._tags
@@ -374,7 +400,7 @@ def tags(self, tags):
:param tags: The tags of this OSBRepositoryBase.
- :type tags: List[OSBRepositoryBaseTagsInner]
+ :type tags: List[Tag]
"""
self._tags = tags
diff --git a/applications/workspaces/server/workspaces/models/osb_repository_entity.py b/applications/workspaces/server/workspaces/models/osb_repository_entity.py
index 78e46c054..525e914bc 100644
--- a/applications/workspaces/server/workspaces/models/osb_repository_entity.py
+++ b/applications/workspaces/server/workspaces/models/osb_repository_entity.py
@@ -6,12 +6,14 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
-from workspaces.models.osb_repository_base_tags_inner import OSBRepositoryBaseTagsInner
+from workspaces.models.osb_repository_base import OSBRepositoryBase
from workspaces.models.repository_type import RepositoryType
+from workspaces.models.tag import Tag
from workspaces import util
-from workspaces.models.osb_repository_base_tags_inner import OSBRepositoryBaseTagsInner # noqa: E501
+from workspaces.models.osb_repository_base import OSBRepositoryBase # noqa: E501
from workspaces.models.repository_type import RepositoryType # noqa: E501
+from workspaces.models.tag import Tag # noqa: E501
class OSBRepositoryEntity(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +21,7 @@ class OSBRepositoryEntity(Model):
Do not edit the class manually.
"""
- def __init__(self, id=None, name=None, summary=None, repository_type=None, content_types=None, auto_sync=True, uri=None, default_context=None, user_id=None, timestamp_created=None, timestamp_updated=None, tags=None): # noqa: E501
+ def __init__(self, id=None, name=None, summary=None, repository_type=None, content_types=None, auto_sync=True, uri=None, default_context=None, thumbnail=None, user_id=None, timestamp_created=None, timestamp_updated=None, tags=None): # noqa: E501
"""OSBRepositoryEntity - a model defined in OpenAPI
:param id: The id of this OSBRepositoryEntity. # noqa: E501
@@ -38,6 +40,8 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
:type uri: str
:param default_context: The default_context of this OSBRepositoryEntity. # noqa: E501
:type default_context: str
+ :param thumbnail: The thumbnail of this OSBRepositoryEntity. # noqa: E501
+ :type thumbnail: str
:param user_id: The user_id of this OSBRepositoryEntity. # noqa: E501
:type user_id: str
:param timestamp_created: The timestamp_created of this OSBRepositoryEntity. # noqa: E501
@@ -45,7 +49,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
:param timestamp_updated: The timestamp_updated of this OSBRepositoryEntity. # noqa: E501
:type timestamp_updated: datetime
:param tags: The tags of this OSBRepositoryEntity. # noqa: E501
- :type tags: List[OSBRepositoryBaseTagsInner]
+ :type tags: List[Tag]
"""
self.openapi_types = {
'id': int,
@@ -56,10 +60,11 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
'auto_sync': bool,
'uri': str,
'default_context': str,
+ 'thumbnail': str,
'user_id': str,
'timestamp_created': datetime,
'timestamp_updated': datetime,
- 'tags': List[OSBRepositoryBaseTagsInner]
+ 'tags': List[Tag]
}
self.attribute_map = {
@@ -71,6 +76,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
'auto_sync': 'auto_sync',
'uri': 'uri',
'default_context': 'default_context',
+ 'thumbnail': 'thumbnail',
'user_id': 'user_id',
'timestamp_created': 'timestamp_created',
'timestamp_updated': 'timestamp_updated',
@@ -85,6 +91,7 @@ def __init__(self, id=None, name=None, summary=None, repository_type=None, conte
self._auto_sync = auto_sync
self._uri = uri
self._default_context = default_context
+ self._thumbnail = thumbnail
self._user_id = user_id
self._timestamp_created = timestamp_created
self._timestamp_updated = timestamp_updated
@@ -289,6 +296,27 @@ def default_context(self, default_context):
self._default_context = default_context
+ @property
+ def thumbnail(self):
+ """Gets the thumbnail of this OSBRepositoryEntity.
+
+
+ :return: The thumbnail of this OSBRepositoryEntity.
+ :rtype: str
+ """
+ return self._thumbnail
+
+ @thumbnail.setter
+ def thumbnail(self, thumbnail):
+ """Sets the thumbnail of this OSBRepositoryEntity.
+
+
+ :param thumbnail: The thumbnail of this OSBRepositoryEntity.
+ :type thumbnail: str
+ """
+
+ self._thumbnail = thumbnail
+
@property
def user_id(self):
"""Gets the user_id of this OSBRepositoryEntity.
@@ -364,7 +392,7 @@ def tags(self):
:return: The tags of this OSBRepositoryEntity.
- :rtype: List[OSBRepositoryBaseTagsInner]
+ :rtype: List[Tag]
"""
return self._tags
@@ -374,7 +402,7 @@ def tags(self, tags):
:param tags: The tags of this OSBRepositoryEntity.
- :type tags: List[OSBRepositoryBaseTagsInner]
+ :type tags: List[Tag]
"""
self._tags = tags
diff --git a/applications/workspaces/server/workspaces/models/repository_info.py b/applications/workspaces/server/workspaces/models/repository_info.py
index 55b71fe54..821e0b966 100644
--- a/applications/workspaces/server/workspaces/models/repository_info.py
+++ b/applications/workspaces/server/workspaces/models/repository_info.py
@@ -61,7 +61,6 @@ def from_dict(cls, dikt) -> 'RepositoryInfo':
def contexts(self):
"""Gets the contexts of this RepositoryInfo.
- # noqa: E501
:return: The contexts of this RepositoryInfo.
:rtype: List[str]
@@ -72,7 +71,6 @@ def contexts(self):
def contexts(self, contexts):
"""Sets the contexts of this RepositoryInfo.
- # noqa: E501
:param contexts: The contexts of this RepositoryInfo.
:type contexts: List[str]
@@ -84,7 +82,6 @@ def contexts(self, contexts):
def name(self):
"""Gets the name of this RepositoryInfo.
- # noqa: E501
:return: The name of this RepositoryInfo.
:rtype: str
@@ -95,7 +92,6 @@ def name(self):
def name(self, name):
"""Sets the name of this RepositoryInfo.
- # noqa: E501
:param name: The name of this RepositoryInfo.
:type name: str
@@ -107,7 +103,6 @@ def name(self, name):
def summary(self):
"""Gets the summary of this RepositoryInfo.
- # noqa: E501
:return: The summary of this RepositoryInfo.
:rtype: str
@@ -118,7 +113,6 @@ def summary(self):
def summary(self, summary):
"""Sets the summary of this RepositoryInfo.
- # noqa: E501
:param summary: The summary of this RepositoryInfo.
:type summary: str
@@ -130,7 +124,6 @@ def summary(self, summary):
def tags(self):
"""Gets the tags of this RepositoryInfo.
- # noqa: E501
:return: The tags of this RepositoryInfo.
:rtype: List[str]
@@ -141,7 +134,6 @@ def tags(self):
def tags(self, tags):
"""Sets the tags of this RepositoryInfo.
- # noqa: E501
:param tags: The tags of this RepositoryInfo.
:type tags: List[str]
diff --git a/applications/workspaces/server/workspaces/models/repository_resource_base.py b/applications/workspaces/server/workspaces/models/repository_resource_base.py
index 64197d3a0..72b13c690 100644
--- a/applications/workspaces/server/workspaces/models/repository_resource_base.py
+++ b/applications/workspaces/server/workspaces/models/repository_resource_base.py
@@ -6,8 +6,12 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
+from workspaces.models.repository_resource_base_all_of import RepositoryResourceBaseAllOf
+from workspaces.models.resource_base import ResourceBase
from workspaces import util
+from workspaces.models.repository_resource_base_all_of import RepositoryResourceBaseAllOf # noqa: E501
+from workspaces.models.resource_base import ResourceBase # noqa: E501
class RepositoryResourceBase(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/applications/workspaces/server/workspaces/models/workspace.py b/applications/workspaces/server/workspaces/models/workspace.py
index 92e5e6b53..52c7e5a96 100644
--- a/applications/workspaces/server/workspaces/models/workspace.py
+++ b/applications/workspaces/server/workspaces/models/workspace.py
@@ -6,19 +6,23 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
+from workspaces.models.tag import Tag
from workspaces.models.user import User
from workspaces.models.volume_storage import VolumeStorage
-from workspaces.models.workspace_base_gallery_inner import WorkspaceBaseGalleryInner
-from workspaces.models.workspace_base_tags_inner import WorkspaceBaseTagsInner
+from workspaces.models.workspace_all_of import WorkspaceAllOf
+from workspaces.models.workspace_base import WorkspaceBase
from workspaces.models.workspace_collaborator import WorkspaceCollaborator
+from workspaces.models.workspace_image import WorkspaceImage
from workspaces.models.workspace_resource import WorkspaceResource
from workspaces import util
+from workspaces.models.tag import Tag # noqa: E501
from workspaces.models.user import User # noqa: E501
from workspaces.models.volume_storage import VolumeStorage # noqa: E501
-from workspaces.models.workspace_base_gallery_inner import WorkspaceBaseGalleryInner # noqa: E501
-from workspaces.models.workspace_base_tags_inner import WorkspaceBaseTagsInner # noqa: E501
+from workspaces.models.workspace_all_of import WorkspaceAllOf # noqa: E501
+from workspaces.models.workspace_base import WorkspaceBase # noqa: E501
from workspaces.models.workspace_collaborator import WorkspaceCollaborator # noqa: E501
+from workspaces.models.workspace_image import WorkspaceImage # noqa: E501
from workspaces.models.workspace_resource import WorkspaceResource # noqa: E501
class Workspace(Model):
@@ -45,7 +49,7 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
:param thumbnail: The thumbnail of this Workspace. # noqa: E501
:type thumbnail: str
:param gallery: The gallery of this Workspace. # noqa: E501
- :type gallery: List[WorkspaceBaseGalleryInner]
+ :type gallery: List[WorkspaceImage]
:param user_id: The user_id of this Workspace. # noqa: E501
:type user_id: str
:param publicable: The publicable of this Workspace. # noqa: E501
@@ -59,7 +63,7 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
:param storage: The storage of this Workspace. # noqa: E501
:type storage: VolumeStorage
:param tags: The tags of this Workspace. # noqa: E501
- :type tags: List[WorkspaceBaseTagsInner]
+ :type tags: List[Tag]
:param resources: The resources of this Workspace. # noqa: E501
:type resources: List[WorkspaceResource]
:param user: The user of this Workspace. # noqa: E501
@@ -73,14 +77,14 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
'timestamp_updated': datetime,
'last_opened_resource_id': int,
'thumbnail': str,
- 'gallery': List[WorkspaceBaseGalleryInner],
+ 'gallery': List[WorkspaceImage],
'user_id': str,
'publicable': bool,
'featured': bool,
'license': str,
'collaborators': List[WorkspaceCollaborator],
'storage': VolumeStorage,
- 'tags': List[WorkspaceBaseTagsInner],
+ 'tags': List[Tag],
'resources': List[WorkspaceResource],
'user': User
}
@@ -302,7 +306,7 @@ def gallery(self):
Gallery with images of the workspace # noqa: E501
:return: The gallery of this Workspace.
- :rtype: List[WorkspaceBaseGalleryInner]
+ :rtype: List[WorkspaceImage]
"""
return self._gallery
@@ -313,7 +317,7 @@ def gallery(self, gallery):
Gallery with images of the workspace # noqa: E501
:param gallery: The gallery of this Workspace.
- :type gallery: List[WorkspaceBaseGalleryInner]
+ :type gallery: List[WorkspaceImage]
"""
self._gallery = gallery
@@ -460,7 +464,7 @@ def tags(self):
:return: The tags of this Workspace.
- :rtype: List[WorkspaceBaseTagsInner]
+ :rtype: List[Tag]
"""
return self._tags
@@ -470,7 +474,7 @@ def tags(self, tags):
:param tags: The tags of this Workspace.
- :type tags: List[WorkspaceBaseTagsInner]
+ :type tags: List[Tag]
"""
self._tags = tags
diff --git a/applications/workspaces/server/workspaces/models/workspace_base.py b/applications/workspaces/server/workspaces/models/workspace_base.py
index b86cf0a3d..376b1abd7 100644
--- a/applications/workspaces/server/workspaces/models/workspace_base.py
+++ b/applications/workspaces/server/workspaces/models/workspace_base.py
@@ -6,16 +6,16 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
+from workspaces.models.tag import Tag
from workspaces.models.volume_storage import VolumeStorage
-from workspaces.models.workspace_base_gallery_inner import WorkspaceBaseGalleryInner
-from workspaces.models.workspace_base_tags_inner import WorkspaceBaseTagsInner
from workspaces.models.workspace_collaborator import WorkspaceCollaborator
+from workspaces.models.workspace_image import WorkspaceImage
from workspaces import util
+from workspaces.models.tag import Tag # noqa: E501
from workspaces.models.volume_storage import VolumeStorage # noqa: E501
-from workspaces.models.workspace_base_gallery_inner import WorkspaceBaseGalleryInner # noqa: E501
-from workspaces.models.workspace_base_tags_inner import WorkspaceBaseTagsInner # noqa: E501
from workspaces.models.workspace_collaborator import WorkspaceCollaborator # noqa: E501
+from workspaces.models.workspace_image import WorkspaceImage # noqa: E501
class WorkspaceBase(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,7 +41,7 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
:param thumbnail: The thumbnail of this WorkspaceBase. # noqa: E501
:type thumbnail: str
:param gallery: The gallery of this WorkspaceBase. # noqa: E501
- :type gallery: List[WorkspaceBaseGalleryInner]
+ :type gallery: List[WorkspaceImage]
:param user_id: The user_id of this WorkspaceBase. # noqa: E501
:type user_id: str
:param publicable: The publicable of this WorkspaceBase. # noqa: E501
@@ -55,7 +55,7 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
:param storage: The storage of this WorkspaceBase. # noqa: E501
:type storage: VolumeStorage
:param tags: The tags of this WorkspaceBase. # noqa: E501
- :type tags: List[WorkspaceBaseTagsInner]
+ :type tags: List[Tag]
"""
self.openapi_types = {
'id': int,
@@ -65,14 +65,14 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
'timestamp_updated': datetime,
'last_opened_resource_id': int,
'thumbnail': str,
- 'gallery': List[WorkspaceBaseGalleryInner],
+ 'gallery': List[WorkspaceImage],
'user_id': str,
'publicable': bool,
'featured': bool,
'license': str,
'collaborators': List[WorkspaceCollaborator],
'storage': VolumeStorage,
- 'tags': List[WorkspaceBaseTagsInner]
+ 'tags': List[Tag]
}
self.attribute_map = {
@@ -288,7 +288,7 @@ def gallery(self):
Gallery with images of the workspace # noqa: E501
:return: The gallery of this WorkspaceBase.
- :rtype: List[WorkspaceBaseGalleryInner]
+ :rtype: List[WorkspaceImage]
"""
return self._gallery
@@ -299,7 +299,7 @@ def gallery(self, gallery):
Gallery with images of the workspace # noqa: E501
:param gallery: The gallery of this WorkspaceBase.
- :type gallery: List[WorkspaceBaseGalleryInner]
+ :type gallery: List[WorkspaceImage]
"""
self._gallery = gallery
@@ -446,7 +446,7 @@ def tags(self):
:return: The tags of this WorkspaceBase.
- :rtype: List[WorkspaceBaseTagsInner]
+ :rtype: List[Tag]
"""
return self._tags
@@ -456,7 +456,7 @@ def tags(self, tags):
:param tags: The tags of this WorkspaceBase.
- :type tags: List[WorkspaceBaseTagsInner]
+ :type tags: List[Tag]
"""
self._tags = tags
diff --git a/applications/workspaces/server/workspaces/models/workspace_entity.py b/applications/workspaces/server/workspaces/models/workspace_entity.py
index c752e0ef4..9b9e2d2b5 100644
--- a/applications/workspaces/server/workspaces/models/workspace_entity.py
+++ b/applications/workspaces/server/workspaces/models/workspace_entity.py
@@ -6,17 +6,21 @@
from typing import List, Dict # noqa: F401
from workspaces.models.base_model_ import Model
+from workspaces.models.tag import Tag
from workspaces.models.volume_storage import VolumeStorage
-from workspaces.models.workspace_base_gallery_inner import WorkspaceBaseGalleryInner
-from workspaces.models.workspace_base_tags_inner import WorkspaceBaseTagsInner
+from workspaces.models.workspace_base import WorkspaceBase
from workspaces.models.workspace_collaborator import WorkspaceCollaborator
+from workspaces.models.workspace_entity_all_of import WorkspaceEntityAllOf
+from workspaces.models.workspace_image import WorkspaceImage
from workspaces.models.workspace_resource_entity import WorkspaceResourceEntity
from workspaces import util
+from workspaces.models.tag import Tag # noqa: E501
from workspaces.models.volume_storage import VolumeStorage # noqa: E501
-from workspaces.models.workspace_base_gallery_inner import WorkspaceBaseGalleryInner # noqa: E501
-from workspaces.models.workspace_base_tags_inner import WorkspaceBaseTagsInner # noqa: E501
+from workspaces.models.workspace_base import WorkspaceBase # noqa: E501
from workspaces.models.workspace_collaborator import WorkspaceCollaborator # noqa: E501
+from workspaces.models.workspace_entity_all_of import WorkspaceEntityAllOf # noqa: E501
+from workspaces.models.workspace_image import WorkspaceImage # noqa: E501
from workspaces.models.workspace_resource_entity import WorkspaceResourceEntity # noqa: E501
class WorkspaceEntity(Model):
@@ -43,7 +47,7 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
:param thumbnail: The thumbnail of this WorkspaceEntity. # noqa: E501
:type thumbnail: str
:param gallery: The gallery of this WorkspaceEntity. # noqa: E501
- :type gallery: List[WorkspaceBaseGalleryInner]
+ :type gallery: List[WorkspaceImage]
:param user_id: The user_id of this WorkspaceEntity. # noqa: E501
:type user_id: str
:param publicable: The publicable of this WorkspaceEntity. # noqa: E501
@@ -57,7 +61,7 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
:param storage: The storage of this WorkspaceEntity. # noqa: E501
:type storage: VolumeStorage
:param tags: The tags of this WorkspaceEntity. # noqa: E501
- :type tags: List[WorkspaceBaseTagsInner]
+ :type tags: List[Tag]
:param resources: The resources of this WorkspaceEntity. # noqa: E501
:type resources: List[WorkspaceResourceEntity]
"""
@@ -69,14 +73,14 @@ def __init__(self, id=None, name=None, description=None, timestamp_created=None,
'timestamp_updated': datetime,
'last_opened_resource_id': int,
'thumbnail': str,
- 'gallery': List[WorkspaceBaseGalleryInner],
+ 'gallery': List[WorkspaceImage],
'user_id': str,
'publicable': bool,
'featured': bool,
'license': str,
'collaborators': List[WorkspaceCollaborator],
'storage': VolumeStorage,
- 'tags': List[WorkspaceBaseTagsInner],
+ 'tags': List[Tag],
'resources': List[WorkspaceResourceEntity]
}
@@ -295,7 +299,7 @@ def gallery(self):
Gallery with images of the workspace # noqa: E501
:return: The gallery of this WorkspaceEntity.
- :rtype: List[WorkspaceBaseGalleryInner]
+ :rtype: List[WorkspaceImage]
"""
return self._gallery
@@ -306,7 +310,7 @@ def gallery(self, gallery):
Gallery with images of the workspace # noqa: E501
:param gallery: The gallery of this WorkspaceEntity.
- :type gallery: List[WorkspaceBaseGalleryInner]
+ :type gallery: List[WorkspaceImage]
"""
self._gallery = gallery
@@ -453,7 +457,7 @@ def tags(self):
:return: The tags of this WorkspaceEntity.
- :rtype: List[WorkspaceBaseTagsInner]
+ :rtype: List[Tag]
"""
return self._tags
@@ -463,7 +467,7 @@ def tags(self, tags):
:param tags: The tags of this WorkspaceEntity.
- :type tags: List[WorkspaceBaseTagsInner]
+ :type tags: List[Tag]
"""
self._tags = tags
diff --git a/applications/workspaces/server/workspaces/models/workspace_resource.py b/applications/workspaces/server/workspaces/models/workspace_resource.py
index ae4041979..0aab9a365 100644
--- a/applications/workspaces/server/workspaces/models/workspace_resource.py
+++ b/applications/workspaces/server/workspaces/models/workspace_resource.py
@@ -9,11 +9,13 @@
from workspaces.models.resource_origin import ResourceOrigin
from workspaces.models.resource_status import ResourceStatus
from workspaces.models.resource_type import ResourceType
+from workspaces.models.workspace_resource_base import WorkspaceResourceBase
from workspaces import util
from workspaces.models.resource_origin import ResourceOrigin # noqa: E501
from workspaces.models.resource_status import ResourceStatus # noqa: E501
from workspaces.models.resource_type import ResourceType # noqa: E501
+from workspaces.models.workspace_resource_base import WorkspaceResourceBase # noqa: E501
class WorkspaceResource(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21,9 +23,15 @@ class WorkspaceResource(Model):
Do not edit the class manually.
"""
- def __init__(self, id=None, name=None, status=None, timestamp_created=None, timestamp_updated=None, timestamp_last_opened=None, resource_type=None, workspace_id=None, origin=None, path=None): # noqa: E501
+ def __init__(self, workspace_id=None, origin=None, path=None, id=None, name=None, status=None, timestamp_created=None, timestamp_updated=None, timestamp_last_opened=None, resource_type=None): # noqa: E501
"""WorkspaceResource - a model defined in OpenAPI
+ :param workspace_id: The workspace_id of this WorkspaceResource. # noqa: E501
+ :type workspace_id: int
+ :param origin: The origin of this WorkspaceResource. # noqa: E501
+ :type origin: ResourceOrigin
+ :param path: The path of this WorkspaceResource. # noqa: E501
+ :type path: str
:param id: The id of this WorkspaceResource. # noqa: E501
:type id: int
:param name: The name of this WorkspaceResource. # noqa: E501
@@ -38,39 +46,36 @@ def __init__(self, id=None, name=None, status=None, timestamp_created=None, time
:type timestamp_last_opened: datetime
:param resource_type: The resource_type of this WorkspaceResource. # noqa: E501
:type resource_type: ResourceType
- :param workspace_id: The workspace_id of this WorkspaceResource. # noqa: E501
- :type workspace_id: int
- :param origin: The origin of this WorkspaceResource. # noqa: E501
- :type origin: ResourceOrigin
- :param path: The path of this WorkspaceResource. # noqa: E501
- :type path: str
"""
self.openapi_types = {
+ 'workspace_id': int,
+ 'origin': ResourceOrigin,
+ 'path': str,
'id': int,
'name': str,
'status': ResourceStatus,
'timestamp_created': datetime,
'timestamp_updated': datetime,
'timestamp_last_opened': datetime,
- 'resource_type': ResourceType,
- 'workspace_id': int,
- 'origin': ResourceOrigin,
- 'path': str
+ 'resource_type': ResourceType
}
self.attribute_map = {
+ 'workspace_id': 'workspace_id',
+ 'origin': 'origin',
+ 'path': 'path',
'id': 'id',
'name': 'name',
'status': 'status',
'timestamp_created': 'timestamp_created',
'timestamp_updated': 'timestamp_updated',
'timestamp_last_opened': 'timestamp_last_opened',
- 'resource_type': 'resource_type',
- 'workspace_id': 'workspace_id',
- 'origin': 'origin',
- 'path': 'path'
+ 'resource_type': 'resource_type'
}
+ self._workspace_id = workspace_id
+ self._origin = origin
+ self._path = path
self._id = id
self._name = name
self._status = status
@@ -78,9 +83,6 @@ def __init__(self, id=None, name=None, status=None, timestamp_created=None, time
self._timestamp_updated = timestamp_updated
self._timestamp_last_opened = timestamp_last_opened
self._resource_type = resource_type
- self._workspace_id = workspace_id
- self._origin = origin
- self._path = path
@classmethod
def from_dict(cls, dikt) -> 'WorkspaceResource':
@@ -93,6 +95,73 @@ def from_dict(cls, dikt) -> 'WorkspaceResource':
"""
return util.deserialize_model(dikt, cls)
+ @property
+ def workspace_id(self):
+ """Gets the workspace_id of this WorkspaceResource.
+
+ workspace_id # noqa: E501
+
+ :return: The workspace_id of this WorkspaceResource.
+ :rtype: int
+ """
+ return self._workspace_id
+
+ @workspace_id.setter
+ def workspace_id(self, workspace_id):
+ """Sets the workspace_id of this WorkspaceResource.
+
+ workspace_id # noqa: E501
+
+ :param workspace_id: The workspace_id of this WorkspaceResource.
+ :type workspace_id: int
+ """
+
+ self._workspace_id = workspace_id
+
+ @property
+ def origin(self):
+ """Gets the origin of this WorkspaceResource.
+
+
+ :return: The origin of this WorkspaceResource.
+ :rtype: ResourceOrigin
+ """
+ return self._origin
+
+ @origin.setter
+ def origin(self, origin):
+ """Sets the origin of this WorkspaceResource.
+
+
+ :param origin: The origin of this WorkspaceResource.
+ :type origin: ResourceOrigin
+ """
+
+ self._origin = origin
+
+ @property
+ def path(self):
+ """Gets the path of this WorkspaceResource.
+
+ WorkspaceResource path where the resource will stored in the pvc. # noqa: E501
+
+ :return: The path of this WorkspaceResource.
+ :rtype: str
+ """
+ return self._path
+
+ @path.setter
+ def path(self, path):
+ """Sets the path of this WorkspaceResource.
+
+ WorkspaceResource path where the resource will stored in the pvc. # noqa: E501
+
+ :param path: The path of this WorkspaceResource.
+ :type path: str
+ """
+
+ self._path = path
+
@property
def id(self):
"""Gets the id of this WorkspaceResource.
@@ -251,70 +320,3 @@ def resource_type(self, resource_type):
raise ValueError("Invalid value for `resource_type`, must not be `None`") # noqa: E501
self._resource_type = resource_type
-
- @property
- def workspace_id(self):
- """Gets the workspace_id of this WorkspaceResource.
-
- workspace_id # noqa: E501
-
- :return: The workspace_id of this WorkspaceResource.
- :rtype: int
- """
- return self._workspace_id
-
- @workspace_id.setter
- def workspace_id(self, workspace_id):
- """Sets the workspace_id of this WorkspaceResource.
-
- workspace_id # noqa: E501
-
- :param workspace_id: The workspace_id of this WorkspaceResource.
- :type workspace_id: int
- """
-
- self._workspace_id = workspace_id
-
- @property
- def origin(self):
- """Gets the origin of this WorkspaceResource.
-
-
- :return: The origin of this WorkspaceResource.
- :rtype: ResourceOrigin
- """
- return self._origin
-
- @origin.setter
- def origin(self, origin):
- """Sets the origin of this WorkspaceResource.
-
-
- :param origin: The origin of this WorkspaceResource.
- :type origin: ResourceOrigin
- """
-
- self._origin = origin
-
- @property
- def path(self):
- """Gets the path of this WorkspaceResource.
-
- WorkspaceResource path where the resource will stored in the pvc. # noqa: E501
-
- :return: The path of this WorkspaceResource.
- :rtype: str
- """
- return self._path
-
- @path.setter
- def path(self, path):
- """Sets the path of this WorkspaceResource.
-
- WorkspaceResource path where the resource will stored in the pvc. # noqa: E501
-
- :param path: The path of this WorkspaceResource.
- :type path: str
- """
-
- self._path = path
diff --git a/applications/workspaces/server/workspaces/models/workspace_resource_entity.py b/applications/workspaces/server/workspaces/models/workspace_resource_entity.py
index 7431d4d4c..c696cbee7 100644
--- a/applications/workspaces/server/workspaces/models/workspace_resource_entity.py
+++ b/applications/workspaces/server/workspaces/models/workspace_resource_entity.py
@@ -8,10 +8,12 @@
from workspaces.models.base_model_ import Model
from workspaces.models.resource_status import ResourceStatus
from workspaces.models.resource_type import ResourceType
+from workspaces.models.workspace_resource_base import WorkspaceResourceBase
from workspaces import util
from workspaces.models.resource_status import ResourceStatus # noqa: E501
from workspaces.models.resource_type import ResourceType # noqa: E501
+from workspaces.models.workspace_resource_base import WorkspaceResourceBase # noqa: E501
class WorkspaceResourceEntity(Model):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,9 +21,15 @@ class WorkspaceResourceEntity(Model):
Do not edit the class manually.
"""
- def __init__(self, id=None, name=None, status=None, timestamp_created=None, timestamp_updated=None, timestamp_last_opened=None, resource_type=None, origin=None, workspace_id=None, folder=None): # noqa: E501
+ def __init__(self, origin=None, workspace_id=None, folder=None, id=None, name=None, status=None, timestamp_created=None, timestamp_updated=None, timestamp_last_opened=None, resource_type=None): # noqa: E501
"""WorkspaceResourceEntity - a model defined in OpenAPI
+ :param origin: The origin of this WorkspaceResourceEntity. # noqa: E501
+ :type origin: str
+ :param workspace_id: The workspace_id of this WorkspaceResourceEntity. # noqa: E501
+ :type workspace_id: int
+ :param folder: The folder of this WorkspaceResourceEntity. # noqa: E501
+ :type folder: str
:param id: The id of this WorkspaceResourceEntity. # noqa: E501
:type id: int
:param name: The name of this WorkspaceResourceEntity. # noqa: E501
@@ -36,39 +44,36 @@ def __init__(self, id=None, name=None, status=None, timestamp_created=None, time
:type timestamp_last_opened: datetime
:param resource_type: The resource_type of this WorkspaceResourceEntity. # noqa: E501
:type resource_type: ResourceType
- :param origin: The origin of this WorkspaceResourceEntity. # noqa: E501
- :type origin: str
- :param workspace_id: The workspace_id of this WorkspaceResourceEntity. # noqa: E501
- :type workspace_id: int
- :param folder: The folder of this WorkspaceResourceEntity. # noqa: E501
- :type folder: str
"""
self.openapi_types = {
+ 'origin': str,
+ 'workspace_id': int,
+ 'folder': str,
'id': int,
'name': str,
'status': ResourceStatus,
'timestamp_created': datetime,
'timestamp_updated': datetime,
'timestamp_last_opened': datetime,
- 'resource_type': ResourceType,
- 'origin': str,
- 'workspace_id': int,
- 'folder': str
+ 'resource_type': ResourceType
}
self.attribute_map = {
+ 'origin': 'origin',
+ 'workspace_id': 'workspace_id',
+ 'folder': 'folder',
'id': 'id',
'name': 'name',
'status': 'status',
'timestamp_created': 'timestamp_created',
'timestamp_updated': 'timestamp_updated',
'timestamp_last_opened': 'timestamp_last_opened',
- 'resource_type': 'resource_type',
- 'origin': 'origin',
- 'workspace_id': 'workspace_id',
- 'folder': 'folder'
+ 'resource_type': 'resource_type'
}
+ self._origin = origin
+ self._workspace_id = workspace_id
+ self._folder = folder
self._id = id
self._name = name
self._status = status
@@ -76,9 +81,6 @@ def __init__(self, id=None, name=None, status=None, timestamp_created=None, time
self._timestamp_updated = timestamp_updated
self._timestamp_last_opened = timestamp_last_opened
self._resource_type = resource_type
- self._origin = origin
- self._workspace_id = workspace_id
- self._folder = folder
@classmethod
def from_dict(cls, dikt) -> 'WorkspaceResourceEntity':
@@ -91,6 +93,75 @@ def from_dict(cls, dikt) -> 'WorkspaceResourceEntity':
"""
return util.deserialize_model(dikt, cls)
+ @property
+ def origin(self):
+ """Gets the origin of this WorkspaceResourceEntity.
+
+ Origin data JSON formatted of the WorkspaceResource # noqa: E501
+
+ :return: The origin of this WorkspaceResourceEntity.
+ :rtype: str
+ """
+ return self._origin
+
+ @origin.setter
+ def origin(self, origin):
+ """Sets the origin of this WorkspaceResourceEntity.
+
+ Origin data JSON formatted of the WorkspaceResource # noqa: E501
+
+ :param origin: The origin of this WorkspaceResourceEntity.
+ :type origin: str
+ """
+
+ self._origin = origin
+
+ @property
+ def workspace_id(self):
+ """Gets the workspace_id of this WorkspaceResourceEntity.
+
+ workspace_id # noqa: E501
+
+ :return: The workspace_id of this WorkspaceResourceEntity.
+ :rtype: int
+ """
+ return self._workspace_id
+
+ @workspace_id.setter
+ def workspace_id(self, workspace_id):
+ """Sets the workspace_id of this WorkspaceResourceEntity.
+
+ workspace_id # noqa: E501
+
+ :param workspace_id: The workspace_id of this WorkspaceResourceEntity.
+ :type workspace_id: int
+ """
+
+ self._workspace_id = workspace_id
+
+ @property
+ def folder(self):
+ """Gets the folder of this WorkspaceResourceEntity.
+
+ WorkspaceResource path where the resource will stored in the pvc. # noqa: E501
+
+ :return: The folder of this WorkspaceResourceEntity.
+ :rtype: str
+ """
+ return self._folder
+
+ @folder.setter
+ def folder(self, folder):
+ """Sets the folder of this WorkspaceResourceEntity.
+
+ WorkspaceResource path where the resource will stored in the pvc. # noqa: E501
+
+ :param folder: The folder of this WorkspaceResourceEntity.
+ :type folder: str
+ """
+
+ self._folder = folder
+
@property
def id(self):
"""Gets the id of this WorkspaceResourceEntity.
@@ -249,72 +320,3 @@ def resource_type(self, resource_type):
raise ValueError("Invalid value for `resource_type`, must not be `None`") # noqa: E501
self._resource_type = resource_type
-
- @property
- def origin(self):
- """Gets the origin of this WorkspaceResourceEntity.
-
- Origin data JSON formatted of the WorkspaceResource # noqa: E501
-
- :return: The origin of this WorkspaceResourceEntity.
- :rtype: str
- """
- return self._origin
-
- @origin.setter
- def origin(self, origin):
- """Sets the origin of this WorkspaceResourceEntity.
-
- Origin data JSON formatted of the WorkspaceResource # noqa: E501
-
- :param origin: The origin of this WorkspaceResourceEntity.
- :type origin: str
- """
-
- self._origin = origin
-
- @property
- def workspace_id(self):
- """Gets the workspace_id of this WorkspaceResourceEntity.
-
- workspace_id # noqa: E501
-
- :return: The workspace_id of this WorkspaceResourceEntity.
- :rtype: int
- """
- return self._workspace_id
-
- @workspace_id.setter
- def workspace_id(self, workspace_id):
- """Sets the workspace_id of this WorkspaceResourceEntity.
-
- workspace_id # noqa: E501
-
- :param workspace_id: The workspace_id of this WorkspaceResourceEntity.
- :type workspace_id: int
- """
-
- self._workspace_id = workspace_id
-
- @property
- def folder(self):
- """Gets the folder of this WorkspaceResourceEntity.
-
- WorkspaceResource path where the resource will stored in the pvc. # noqa: E501
-
- :return: The folder of this WorkspaceResourceEntity.
- :rtype: str
- """
- return self._folder
-
- @folder.setter
- def folder(self, folder):
- """Sets the folder of this WorkspaceResourceEntity.
-
- WorkspaceResource path where the resource will stored in the pvc. # noqa: E501
-
- :param folder: The folder of this WorkspaceResourceEntity.
- :type folder: str
- """
-
- self._folder = folder
diff --git a/applications/workspaces/server/workspaces/openapi/openapi.yaml b/applications/workspaces/server/workspaces/openapi/openapi.yaml
index 060074f8f..295f37de1 100644
--- a/applications/workspaces/server/workspaces/openapi/openapi.yaml
+++ b/applications/workspaces/server/workspaces/openapi/openapi.yaml
@@ -932,6 +932,37 @@ paths:
$ref: '#/components/schemas/RepositoryType'
in: query
required: true
+ '/osbrepository/{id}/thumbnail/':
+ post:
+ requestBody:
+ content:
+ multipart/form-data:
+ schema:
+ type: object
+ properties:
+ thumbNail:
+ format: binary
+ type: string
+ tags:
+ - rest
+ responses:
+ '200':
+ description: The repository was updated with the thumbnail.
+ '404':
+ description: The repository was not found or the thumbnail was not specified
+ security:
+ -
+ bearerAuth: []
+ operationId: workspaces.controllers.osbrepository_controller.setthumbnail
+ summary: Sets the thumbnail of the workspace.
+ parameters:
+ -
+ name: id
+ description: 'Repository ID '
+ schema:
+ type: integer
+ in: path
+ required: true
components:
schemas:
Valid:
@@ -1342,66 +1373,6 @@ components:
type: array
items:
type: string
- OSBRepositoryBase:
- description: OSB Repository Base model
- required:
- - name
- - repository_type
- - content_types
- - uri
- type: object
- properties:
- id:
- $ref: '#/components/schemas/PrimaryKey'
- description: Unique identifier of the repository
- name:
- description: Repository name.
- type: string
- example: Repo One
- summary:
- description: Summary describing the OSB Repository
- type: string
- example: Sample repository with experimental data
- repository_type:
- $ref: '#/components/schemas/RepositoryType'
- description: Repository type
- content_types:
- description: List of Repository Content Types
- type: string
- auto_sync:
- description: Auto sync of the resources
- default: true
- type: boolean
- example: true
- uri:
- description: URI of the repository
- type: string
- example: 'https://github.com/OpenSourceBrain/OSBv2'
- default_context:
- description: The default branch to show for this repository
- type: string
- example: develop
- user_id:
- description: 'OSBRepository keycloak user id, will be automatically be set to the logged in user'
- type: string
- timestamp_created:
- format: date-time
- description: Date/time the Workspace is created
- type: string
- example: '2019-11-23T01:23:45.000Z'
- timestamp_updated:
- format: date-time
- description: Date/time the Workspace is last updated
- type: string
- example: '2019-11-23T01:23:45.000Z'
- tags:
- type: array
- items:
- allOf:
- -
- $ref: '#/components/schemas/Tag'
- -
- x-secondary: osbrepository_tag
WorkspaceResourceBase:
required:
- name
@@ -1441,6 +1412,7 @@ components:
-
$ref: '#/components/schemas/WorkspaceResourceBase'
-
+ x-tablename: Workspaceresource
properties:
origin:
description: Origin data JSON formatted of the WorkspaceResource
@@ -1453,7 +1425,6 @@ components:
description: WorkspaceResource path where the resource will stored in the pvc.
type: string
example: repo/sample.nwb
- x-tablename: Workspaceresource
WorkspaceResource:
description: Workspace Resource item of a Workspace
allOf:
@@ -1471,6 +1442,69 @@ components:
description: WorkspaceResource path where the resource will stored in the pvc.
type: string
example: repo/sample.nwb
+ OSBRepositoryBase:
+ description: OSB Repository Base model
+ required:
+ - name
+ - repository_type
+ - content_types
+ - uri
+ type: object
+ properties:
+ id:
+ $ref: '#/components/schemas/PrimaryKey'
+ description: Unique identifier of the repository
+ name:
+ description: Repository name.
+ type: string
+ example: Repo One
+ summary:
+ description: Summary describing the OSB Repository
+ type: string
+ example: Sample repository with experimental data
+ repository_type:
+ $ref: '#/components/schemas/RepositoryType'
+ description: Repository type
+ content_types:
+ description: List of Repository Content Types
+ type: string
+ auto_sync:
+ description: Auto sync of the resources
+ default: true
+ type: boolean
+ example: true
+ uri:
+ description: URI of the repository
+ type: string
+ example: 'https://github.com/OpenSourceBrain/OSBv2'
+ default_context:
+ description: The default branch to show for this repository
+ type: string
+ example: develop
+ thumbnail:
+ $ref: '#/components/schemas/ImageType'
+ description: Resource OSB thumbnail.
+ user_id:
+ description: 'OSBRepository keycloak user id, will be automatically be set to the logged in user'
+ type: string
+ timestamp_created:
+ format: date-time
+ description: Date/time the Workspace is created
+ type: string
+ example: '2019-11-23T01:23:45.000Z'
+ timestamp_updated:
+ format: date-time
+ description: Date/time the Workspace is last updated
+ type: string
+ example: '2019-11-23T01:23:45.000Z'
+ tags:
+ type: array
+ items:
+ allOf:
+ -
+ $ref: '#/components/schemas/Tag'
+ -
+ x-secondary: osbrepository_tag
securitySchemes:
bearerAuth:
scheme: bearer
@@ -1489,4 +1523,4 @@ tags:
description: Consumer
-
name: Client
- description: Client
+ description: Client
\ No newline at end of file
diff --git a/applications/workspaces/server/workspaces/persistence/base_crud_persistence.py b/applications/workspaces/server/workspaces/persistence/base_crud_persistence.py
index 3ebc13f2e..dfedd1a5a 100644
--- a/applications/workspaces/server/workspaces/persistence/base_crud_persistence.py
+++ b/applications/workspaces/server/workspaces/persistence/base_crud_persistence.py
@@ -172,7 +172,7 @@ def search(self, page=1, per_page=20, q=None, *args, **kwargs):
sqs = self._get_qs(filters, q, *args, **kwargs)
else:
sqs = self._get_qs(*args, **kwargs)
- objects = sqs.paginate(page, per_page, True)
+ objects = sqs.paginate(page=page, per_page=per_page)
return objects
diff --git a/applications/workspaces/server/workspaces/persistence/crud_persistence.py b/applications/workspaces/server/workspaces/persistence/crud_persistence.py
index b956ce3b1..c8ac1031c 100644
--- a/applications/workspaces/server/workspaces/persistence/crud_persistence.py
+++ b/applications/workspaces/server/workspaces/persistence/crud_persistence.py
@@ -98,8 +98,10 @@ def filter_by_user_and_fieldkey(self, filter, user_id, show_all, q_base):
return q_base
def filter_by_tags(self, tags, q_base):
- q_base = q_base.join(self.model.tags).filter(
- func.lower(Tag.tag).in_(func.lower(t) for t in tags.split("+")))
+ q_base = q_base.join(self.model.tags)
+ q_base = q_base.intersect(
+ *[q_base.filter(func.lower(Tag.tag) == func.lower(i_tag)) for i_tag in tags.split("+")])
+
return q_base
def filter_by_search_tags(self, filter, q_base, q_base_by_name_description):
@@ -162,8 +164,10 @@ def filter_by_qfilters(self, filter, q_base):
return q_base
def filter_by_tags(self, tags, q_base):
- q_base = q_base.join(self.model.tags).filter(
- func.lower(Tag.tag).in_(func.lower(t) for t in tags.split("+")))
+ q_base = q_base.join(self.model.tags)
+ q_base = q_base.intersect(
+ *[q_base.filter(func.lower(Tag.tag) == func.lower(i_tag)) for i_tag in tags.split("+")])
+
return q_base
def filter_by_search_tags(self, filter, q_base, q_base_by_q):
@@ -225,7 +229,7 @@ def update_workspace_resources(self, workspace_id, resources):
# not found --> create a new wsr
filename = os.path.basename(resource)
wsr = WorkspaceResourceEntity(
- name=filename,
+ name=filename if not "index" in filename else os.path.basename(os.path.dirname(resource)),
folder=resource,
origin='{"path": "' + resource + '"}',
status=ResourceStatus.P, # default status
diff --git a/applications/workspaces/server/workspaces/persistence/models.py b/applications/workspaces/server/workspaces/persistence/models.py
index 9f1065531..2eaae5d81 100644
--- a/applications/workspaces/server/workspaces/persistence/models.py
+++ b/applications/workspaces/server/workspaces/persistence/models.py
@@ -524,6 +524,7 @@ class OSBRepositoryEntityDict(_OSBRepositoryEntityDictBase, total=False):
summary: typing.Optional[str]
auto_sync: bool
default_context: typing.Optional[str]
+ thumbnail: typing.Optional[str]
user_id: typing.Optional[str]
timestamp_created: typing.Optional[datetime.datetime]
timestamp_updated: typing.Optional[datetime.datetime]
@@ -546,6 +547,7 @@ class TOSBRepositoryEntity(typing.Protocol):
auto_sync: Auto sync of the resources
uri: URI of the repository
default_context: The default branch to show for this repository
+ thumbnail: The thumbnail of the OSBRepositoryEntity.
user_id: OSBRepository keycloak user id, will be automatically be set
to the logged in user
timestamp_created: Date/time the Workspace is created
@@ -568,6 +570,7 @@ class TOSBRepositoryEntity(typing.Protocol):
auto_sync: bool
uri: str
default_context: typing.Optional[str]
+ thumbnail: typing.Optional[str]
user_id: typing.Optional[str]
timestamp_created: typing.Optional[datetime.datetime]
timestamp_updated: typing.Optional[datetime.datetime]
@@ -583,6 +586,7 @@ def __init__(
summary: typing.Optional[str] = None,
auto_sync: bool = True,
default_context: typing.Optional[str] = None,
+ thumbnail: typing.Optional[str] = None,
user_id: typing.Optional[str] = None,
timestamp_created: typing.Optional[datetime.datetime] = None,
timestamp_updated: typing.Optional[datetime.datetime] = None,
@@ -601,6 +605,7 @@ def __init__(
auto_sync: Auto sync of the resources
uri: URI of the repository
default_context: The default branch to show for this repository
+ thumbnail: The thumbnail of the OSBRepositoryEntity.
user_id: OSBRepository keycloak user id, will be automatically be
set to the logged in user
timestamp_created: Date/time the Workspace is created
@@ -621,6 +626,7 @@ def from_dict(
summary: typing.Optional[str] = None,
auto_sync: bool = True,
default_context: typing.Optional[str] = None,
+ thumbnail: typing.Optional[str] = None,
user_id: typing.Optional[str] = None,
timestamp_created: typing.Optional[datetime.datetime] = None,
timestamp_updated: typing.Optional[datetime.datetime] = None,
@@ -639,6 +645,7 @@ def from_dict(
auto_sync: Auto sync of the resources
uri: URI of the repository
default_context: The default branch to show for this repository
+ thumbnail: The thumbnail of the OSBRepositoryEntity.
user_id: OSBRepository keycloak user id, will be automatically be
set to the logged in user
timestamp_created: Date/time the Workspace is created
diff --git a/applications/workspaces/server/workspaces/service/crud_service.py b/applications/workspaces/server/workspaces/service/crud_service.py
index 2e1893160..997bbfc0f 100644
--- a/applications/workspaces/server/workspaces/service/crud_service.py
+++ b/applications/workspaces/server/workspaces/service/crud_service.py
@@ -2,6 +2,7 @@
import json
import os
import shutil
+from typing import List
from cloudharness.service.pvc import create_persistent_volume_claim, delete_persistent_volume_claim
from cloudharness import log
@@ -34,6 +35,7 @@
from workspaces.utils import dao_entity2dict, guess_resource_type
from ..database import db
+
def rm_null_values(dikt):
tmp = {}
for k, v in dikt.items(): # remove null fields from dict
@@ -45,9 +47,11 @@ def rm_null_values(dikt):
class NotAuthorized(Exception):
pass
+
class NotFoundException(Exception):
pass
+
class NotAllowed(Exception):
pass
@@ -66,7 +70,7 @@ def get(self, user_id):
email=user.get("email", ""),
)
except Exception as e:
- return User()
+ return User(id="0")
class BaseModelService:
@@ -81,10 +85,11 @@ class BaseModelService:
calculated_fields = set()
- def _calculated_fields_populate(self, obj):
- if self.calculated_fields:
- for fld in self.calculated_fields:
- setattr(obj, fld, getattr(self, fld)(obj))
+ @classmethod
+ def _calculated_fields_populate(cls, obj):
+ if cls.calculated_fields:
+ for fld in cls.calculated_fields:
+ setattr(obj, fld, getattr(cls, fld)(obj))
return obj
def search(self, page=1, per_page=20, *args, **kwargs) -> Pagination:
@@ -105,8 +110,6 @@ def search(self, page=1, per_page=20, *args, **kwargs) -> Pagination:
objects = self.repository.search(
page=page, per_page=per_page, *args, **kwargs)
- for obj in objects.items:
- self._calculated_fields_populate(obj)
objects.items = [self.to_dto(obj) for obj in objects.items]
return objects
@@ -117,7 +120,7 @@ def to_dao(cls, d: dict):
@classmethod
def to_dto(cls, dao) -> Model:
- return cls.dict_to_dto(dao_entity2dict(dao))
+ return cls._calculated_fields_populate(cls.dict_to_dto(dao_entity2dict(dao)))
@classmethod
def dict_to_dto(cls, d) -> Model:
@@ -129,19 +132,19 @@ def post(self, body):
"""Save an object to the repository."""
dao = self.to_dao(body)
- return self.to_dto(self._calculated_fields_populate(self.repository.post(dao)))
+ return self.to_dto(self.repository.post(dao))
def get(self, id_):
"""Get an object from the repository."""
res = self.repository.get(id_)
if not self.is_authorized(res):
raise NotAuthorized()
- return self.to_dto(self._calculated_fields_populate(res))
+ return self.to_dto(res)
def put(self, body, id_):
"""Update an object in the repository."""
dao = self.to_dao(body)
- return self._calculated_fields_populate(self.repository.put(dao, id_))
+ return self.to_dto(self.repository.put(dao, id_))
def delete(self, id_):
"""Delete an object from the repository."""
@@ -153,10 +156,11 @@ def __str__(self):
def is_authorized(self, object):
raise NotImplementedError(
f"Authorization not implemented for {self.__class__.__name__}")
-
+
+ @classmethod
@cache
- def get_user_cached(self, user_id):
- return self.user_service.get(user_id)
+ def get_user_cached(cls, user_id):
+ return cls.user_service.get(user_id)
class WorkspaceService(BaseModelService):
@@ -184,20 +188,27 @@ def check_max_num_workspaces_per_user(self, user_id=None):
"limit exceeded"
)
+ @staticmethod
+ def get_workspace_workflows(ws_id) -> List[argo.Workflow]:
+ try:
+ return [w for w in argo.get_workflows(status="Running", limit=9999).items
+ if w.status == "Running" and w.raw.spec.templates[0].metadata.labels.get(
+ "workspace"
+ ).strip() == str(ws_id)]
+ except AttributeError:
+ return []
+
@send_event(message_type="workspace", operation="create")
def post(self, body):
if 'user_id' not in body:
body['user_id'] = keycloak_user_id()
self.check_max_num_workspaces_per_user(body['user_id'])
-
workspace = super().post(body)
-
create_volume(name=self.get_pvc_name(workspace.id),
size=self.get_workspace_volume_size(workspace))
-
-
+
for workspace_resource in workspace.resources:
WorkspaceresourceService.handle_resource_data(workspace_resource)
@@ -222,7 +233,7 @@ def clone(self, workspace_id):
if workspace is None:
raise NotFoundException(
f"Cannot clone workspace with id {workspace_id}: not found.")
-
+
workspace.name = f"Clone of {workspace.name}"
workspace.user_id = user_id
workspace.publicable = False
@@ -230,13 +241,10 @@ def clone(self, workspace_id):
workspace.timestamp_created = None
workspace.resources = []
-
-
-
cloned = self.repository.post(workspace)
create_volume(name=self.get_pvc_name(cloned.id),
- size=self.get_workspace_volume_size(workspace))
+ size=self.get_workspace_volume_size(workspace))
clone_workspaces_content(workspace_id, cloned.id)
return cloned
@@ -277,33 +285,34 @@ def search(self, page=1, per_page=20, *args, **kwargs) -> Pagination:
page=page, per_page=per_page, *args, **kwargs)
with db.session.no_autoflush:
paged_results.items = [self.to_dto(w) for w in paged_results.items]
-
- for obj in paged_results.items:
- self._calculated_fields_populate(obj)
return paged_results
@classmethod
def to_dto(cls, workspace_entity: TWorkspaceEntity) -> Workspace:
- workspace = cls.dict_to_dto(dao_entity2dict(workspace_entity))
- for resource in workspace_entity.resources:
- resource.origin = json.loads(resource.origin)
- workspace.resources = [WorkspaceresourceService.to_dto(r) for r in workspace_entity.resources] if workspace_entity.resources else []
+ workspace = super().to_dto(workspace_entity)
+
+
+ workspace.resources = [WorkspaceresourceService.to_dto(
+ r) for r in workspace_entity.resources] if workspace_entity.resources else []
return workspace
@classmethod
def to_dao(cls, d: dict) -> TWorkspaceEntity:
-
+
resources = d.get("resources", [])
d["resources"] = []
workspace: TWorkspaceEntity = super().to_dao(d)
workspace.tags = TagRepository().get_tags_daos(workspace.tags)
- workspace.resources = [WorkspaceresourceService.to_dao(r) for r in resources]
+ workspace.resources = [
+ WorkspaceresourceService.to_dao(r) for r in resources]
return workspace
def get(self, id_):
workspace: Workspace = super().get(id_)
+ if not self.is_authorized(workspace):
+ raise NotAuthorized()
if any(wr.status == ResourceStatus.P for wr in workspace.resources):
fake_path = f"Importing resources"
@@ -322,42 +331,38 @@ def get(self, id_):
logger.debug(
"Post get, check workflows for workspace %s....", workspace.id)
try:
- workflows = argo.get_workflows(status="Running", limit=9999)
- if workflows and workflows.items:
- for workflow in workflows.items:
- try:
- if workflow.status == "Running" and workflow.raw.spec.templates[0].metadata.labels.get(
- "workspace"
- ).strip() == str(workspace.id):
- fake_path = f"Importing resources, progress {workflow.raw.status.progress}".replace(
- "/", " of ")
- workspace.resources.append(
- WorkspaceResource.from_dict(
- {
- "id": -1,
- "name": "Refreshing resources",
- "origin": {"path": fake_path},
- "resource_type": ResourceType.U,
- "workspace_id": workspace.id,
- }
+ for workflow in self.get_workspace_workflows(workspace.id):
+ try:
+ fake_path = f"Importing resources, progress {workflow.raw.status.progress}".replace(
+ "/", " of ")
+ workspace.resources.append(
+ WorkspaceResource.from_dict(
+ {
+ "id": -1,
+ "name": "Refreshing resources",
+ "origin": {"path": fake_path},
+ "resource_type": ResourceType.U,
+ "workspace_id": workspace.id,
+ }
+ )
)
- )
- break
- except Exception as e:
+
+ except Exception as e:
logger.exception("Error checking workflow for workspace %s: %s",
- workspace.id, workflow.name)
+ workspace.id, workflow.name)
from pprint import pprint
# pprint(workflow.raw)
# probably not a workspace import workflow job --> skip it
pass
except Exception as e:
logger.exception("Error checking workflows for workspace %s: %s",
- workspace.id, e)
+ workspace.id, e)
return workspace
- def user(self, workspace):
- return self.get_user_cached(workspace.user_id)
+ @classmethod
+ def user(cls, workspace):
+ return cls.get_user_cached(workspace.user_id)
def delete(self, id):
resource_repository = WorkspaceResourceRepository()
@@ -418,13 +423,13 @@ def is_authorized(self, repository):
# All osbrepositories are public
return True
- def content_types_list(self, osb_repository):
+ @classmethod
+ def content_types_list(cls, osb_repository):
return osb_repository.content_types.split(",")
-
- def user(self, osbrepo):
- return self.get_user_cached(osbrepo.user_id)
-
+ @classmethod
+ def user(cls, osbrepo):
+ return cls.get_user_cached(osbrepo.user_id)
class VolumestorageService(BaseModelService):
@@ -446,7 +451,7 @@ def to_dao(cls, ws_dict: dict) -> TWorkspaceResourceEntity:
if "origin" in ws_dict:
wro_dao_dict = dict(ws_dict.get("origin"))
ws_dict.update({"origin": json.dumps(wro_dao_dict)})
- if 'path' in ws_dict:
+ if 'folder' in ws_dict: # path is folder in the db for legacy reasons
ws_dict['folder'] = ws_dict['path']
del ws_dict['path']
workspace_resource: TWorkspaceResourceEntity = super().to_dao(ws_dict)
@@ -458,20 +463,36 @@ def to_dao(cls, ws_dict: dict) -> TWorkspaceResourceEntity:
workspace_resource.folder = workspace_resource.name
return workspace_resource
+ @classmethod
+ def to_dto(cls, resource) -> Model:
+ resource_dict = dao_entity2dict(resource)
+ if hasattr(resource, "origin") and resource.origin:
+ resource_dict['origin'] = json.loads(resource.origin)
+ if 'folder' in resource_dict and resource_dict['folder']: # Legacy folder/path handling
+
+ # Legacy folder/path handling
+ if resource_dict['origin'].get("folder", None) is not None:
+ resource_dict['origin']["path"] = resource_dict['origin'].get("folder")
+ del resource_dict['origin']["folder"]
+ dto = cls._calculated_fields_populate(cls.dict_to_dto(resource_dict))
+ if hasattr(resource, "folder"):
+ dto.path = resource.folder
+ return dto
+
@classmethod
def dict_to_dto(cls, d) -> WorkspaceResource:
- if 'origin' in d and isinstance(d['origin'], str):
- d['origin'] = json.loads(d['origin'])
workspace_resource: WorkspaceResource = super().dict_to_dto(d)
+
# Legacy folder/path handling
if workspace_resource.path is None:
+
logger.debug(
f"Pre Commit for workspace resource id: {workspace_resource.id} setting folder from file name")
workspace_resource.path = workspace_resource.name
- if guess_resource_type(workspace_resource.path) is None:
+ if guess_resource_type(workspace_resource.path) is None and workspace_resource.origin is not None:
workspace_resource.path = os.path.join(workspace_resource.path, os.path.basename(
workspace_resource.origin.path.split("?")[0]))
return workspace_resource
@@ -484,7 +505,7 @@ def post(self, body) -> WorkspaceResource:
@staticmethod
def handle_resource_data(workspace_resource: WorkspaceResource) -> WorkspaceResource:
- if workspace_resource.status == "p" and workspace_resource.origin:
+ if workspace_resource.status == "p" and workspace_resource.origin:
from workspaces.helpers.etl_helpers import copy_workspace_resource
copy_workspace_resource(workspace_resource)
diff --git a/applications/workspaces/server/workspaces/utils.py b/applications/workspaces/server/workspaces/utils.py
index 6c06661e8..aaa6cec0c 100644
--- a/applications/workspaces/server/workspaces/utils.py
+++ b/applications/workspaces/server/workspaces/utils.py
@@ -26,33 +26,29 @@ def get_pvc_name(workspace_id):
disallowed_class_types = ["BaseQuery", "type", "registry", "MetaData"]
-name_mappings = {WorkspaceResourceEntity.__name__: {"folder": "path"}}
-exclude = { WorkspaceEntity.__name__: {"resources"} }
def dao_entity2dict(obj):
+ if hasattr(obj, "to_dict"):
+ result = obj.to_dict()
+ else:
+ disallowed_names = {name for name, value in getmembers(
+ type(obj)) if isinstance(value, FunctionType)}
+
+ result = {}
- disallowed_names = {name for name, value in getmembers(
- type(obj)) if isinstance(value, FunctionType) or name in exclude.get(type(obj).__name__, ())}
-
- result = {}
-
- for name in dir(obj):
+ for name in dir(obj):
- if name not in disallowed_names and name[0] != "_" and hasattr(obj, name):
- val = getattr(obj, name)
- if not ismethod(val):
- clas = val.__class__.__name__
- if hasattr(val.__class__, "to_dict"):
- val = val.__class__.to_dict(val)
- if clas == "InstrumentedList":
- val = list(dao_entity2dict(r) for r in val)
- if clas not in disallowed_class_types:
- result.update({name: val})
- if type(obj).__name__ in name_mappings:
- for src, dest in name_mappings[type(obj).__name__].items():
- result[dest] = result[src]
- del result[src]
+ if name not in disallowed_names and name[0] != "_" and hasattr(obj, name):
+ val = getattr(obj, name)
+ if not ismethod(val):
+ clas = val.__class__.__name__
+ if hasattr(val.__class__, "to_dict"):
+ val = val.__class__.to_dict(val)
+ if clas == "InstrumentedList":
+ val = list(dao_entity2dict(r) for r in val)
+ if clas not in disallowed_class_types:
+ result.update({name: val})
return result
@@ -61,7 +57,7 @@ def guess_resource_type(resource_path):
extension = resource_path.split(".")[-1]
if extension == "nwb":
return ResourceType.E
- elif extension == "np":
+ elif extension == "npjson":
return ResourceType.M
elif extension == "ipynb":
return ResourceType.G
diff --git a/applications/workspaces/tasks/github-copy/run.sh b/applications/workspaces/tasks/github-copy/run.sh
old mode 100644
new mode 100755
index b47e15b58..826ddbe19
--- a/applications/workspaces/tasks/github-copy/run.sh
+++ b/applications/workspaces/tasks/github-copy/run.sh
@@ -5,33 +5,112 @@ set -e
# remove the pvc from the path (if it has one)
# and append the folder
export download_path=`echo $shared_directory | cut -d ":" -f 2`/"${folder}"
+echo "Download path is ${download_path}"
+
+timestamp="$(date +"%Y%m%d%H%M%S-osbv2")"
mkdir -p "${download_path}"
cd "${download_path}"
-echo GitHub copy "$paths" to "$download_path"
+echo "GitHub copy $paths to $download_path"
ls -la
-echo "Fix permissions"
+
+echo "Git: fix permissions"
git config --global --add safe.directory "$download_path"
-# do the next command only if download path does not exist
+
+# do the next command only if download path does not exist (initial clone)
if [ ! -d "${download_path}/.git" ]; then
- echo Cloning $branch
+ echo "Git: cloning new repository branch: $branch"
git clone -n "${url}" --branch $branch "${download_path}"
-fi
-# check is paths has a value. In that case, checkout everything
-if [ -z "$paths" ]; then
- echo "Checking out everything"
- git checkout HEAD
- exit 0
+ # configure OSB user for this clone
+ echo "Git: setting user/email to OSBv2 for new repo"
+ git config user.name "OSBv2"
+ git config user.email "info@opensourcebrain.org"
+
+ # check is paths has a value, otherwise check out everything
+ if [ -z "$paths" ]; then
+ echo "Git: checking out everything"
+ git checkout HEAD
+ else
+ # Split paths by ## and checkout each path
+ IFS='\'
+ for path in $paths; do
+ echo "Git: checking out $path"
+ git checkout HEAD "$path"
+ done
+ fi
+
+ # create new branch, commit there
+ echo "Git: checking out new branch and committing"
+ git checkout -b "$timestamp"
+ echo "checked out branch $timestamp"
+
+ # unset username: ensure that user has to set it manually if they
+ # do anything with git in the repo
+ echo "Git: unsetting user/email for repo"
+ git config --unset user.name
+ git config --unset user.email
+
+# on subsequent updates from same repo
else
- # Split paths by ## and checkout each path
- IFS='\'
- for path in $paths; do
- echo "Checking out $path"
- git checkout HEAD "$path"
- done
+ echo "Updating existing repository"
+ # configure OSB user
+ echo "Git: saving current git user/email and setting to OSBv2"
+ gituser="$(git config user.name)" || true
+ git config user.name "OSBv2"
+ gitemail="$(git config user.email)" || true
+ git config user.email "info@opensourcebrain.org"
+
+ # save state, but do not error if there's nothing to save
+ echo "Git: saving current state"
+ git diff-index --quiet HEAD || git commit -a -m "osbv2: saving state at $timestamp" || true
+
+ # do not assume user has left the default remote name as "origin"
+ echo "Git: adding and fetching from temporary remote"
+ git remote add "$timestamp" "${url}"
+ git fetch "$timestamp" "$branch"
+
+ if [ -z "$paths" ]; then
+ echo "Git: checking out everything"
+ git checkout $timestamp/$branch -- *
+ else
+ # Split paths by ## and checkout each path
+ IFS='\'
+ for path in $paths; do
+ echo "Git: checking out $path"
+ git checkout $timestamp/$branch -- "$path"
+ done
+ fi
+ # save new state but do not error if nothing changed
+ echo "Git: saving new state"
+ git diff-index --quiet HEAD || git commit -a -m "osbv2: updated state at $timestamp" || true
+
+ echo "Git: removing temporary remote"
+ # remove temporary remote
+ git remote remove "$timestamp"
+
+ # reset user to whatever it was before
+ # setting to "" is not the same as unsetting
+ # git still adds an entry to the config file
+ echo "Git: resetting user/email"
+ if [ -z "$gituser" ]
+ then
+ git config --unset user.name
+ else
+ git config user.name "$gituser"
+ fi
+
+ if [ -z "$gitemail" ]
+ then
+ git config --unset user.email
+ else
+ git config user.name "$gitemail"
+ fi
fi
+
+
# fix permissions
+echo "Fixing permissions on download path"
chown -R 1000:100 "${download_path}"
-ls -la
\ No newline at end of file
+ls -la
diff --git a/applications/workspaces/tasks/scan-workspace/main.py b/applications/workspaces/tasks/scan-workspace/main.py
index eb0365c17..74a46ef65 100644
--- a/applications/workspaces/tasks/scan-workspace/main.py
+++ b/applications/workspaces/tasks/scan-workspace/main.py
@@ -34,8 +34,9 @@
for file in files:
full_file_name = os.path.join(root, file)
filename, file_extension = os.path.splitext(full_file_name)
- if file_extension.lower() in (".nwb", ".netpyne", ".ipynb"):
+ if file_extension.lower() in (".nwb", ".npjson", ".ipynb"):
logger.info(f"Found resource: {full_file_name}")
+
resources.append(full_file_name)
payload = {
diff --git a/deployment-configuration/helm/templates/auto-gatekeepers.yaml b/deployment-configuration/helm/templates/auto-gatekeepers.yaml
new file mode 100644
index 000000000..66465bb89
--- /dev/null
+++ b/deployment-configuration/helm/templates/auto-gatekeepers.yaml
@@ -0,0 +1,174 @@
+{{/* Secured Services/Deployments */}}
+{{- define "deploy_utils.securedservice" }}
+{{- $tls := not (not .root.Values.tls) }}
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: "{{ .app.harness.service.name }}-gk"
+ labels:
+ app: "{{ .app.harness.service.name }}-gk"
+data:
+ proxy.yml: |-
+ verbose: {{ .root.Values.debug }}
+ discovery-url: {{ ternary "https" "http" $tls}}://{{ .root.Values.apps.accounts.harness.subdomain }}.{{ .root.Values.domain }}/auth/realms/{{ .root.Values.namespace }}
+ client-id: {{ .root.Values.apps.accounts.webclient.id | quote }}
+ client-secret: {{ .root.Values.apps.accounts.webclient.secret }}
+ secure-cookie: {{ $tls }}
+ forbidden-page: /templates/access-denied.html.tmpl
+ enable-default-deny: {{ eq (.app.harness.secured | toString) "true" }}
+ listen: 0.0.0.0:8080
+ enable-refresh-tokens: true
+ server-write-timeout: {{ .app.harness.proxy.timeout.send | default .root.Values.proxy.timeout.send | default 180 }}s
+ upstream-timeout: {{ .app.harness.proxy.timeout.read | default .root.Values.proxy.timeout.read | default 180 }}s
+ upstream-response-header-timeout: {{ .app.harness.proxy.timeout.read | default .root.Values.proxy.timeout.read | default 180 }}s
+ upstream-expect-continue-timeout: {{ .app.harness.proxy.timeout.read | default .root.Values.proxy.timeout.read | default 180 }}s
+ server-read-timeout: {{ .app.harness.proxy.timeout.read | default .root.Values.proxy.timeout.read | default 180 }}s
+ upstream-keepalive-timeout: {{ .app.harness.proxy.timeout.keepalive | default .root.Values.proxy.timeout.keepalive | default 180 }}s
+ http-only-cookie: false
+ tls-cert:
+ tls-private-key:
+ redirection-url: {{ ternary "https" "http" $tls }}://{{ .app.harness.subdomain }}.{{ .root.Values.domain }}
+ encryption-key: AgXa7xRcoClDEU0ZDSH4X0XhL5Qy2Z2j
+ upstream-url: http://{{ .app.harness.service.name }}.{{ .app.namespace | default .root.Release.Namespace }}:{{ .app.harness.service.port | default 80}}
+ {{ if .app.harness.secured }}
+ {{ with .app.harness.uri_role_mapping }}
+ resources:
+ {{. | toYaml | nindent 4 }}
+ {{- end }}
+ {{- end }}
+ {{ if or .root.Values.local (not $tls) }}
+ skip-openid-provider-tls-verify: true
+ skip-upstream-tls-verify: true
+ {{- end }}
+ cacert.crt: {{ .files.Get "resources/certs/cacert.crt" | quote }}
+ access-denied.html.tmpl: |-
+
+
+
+
+ 403 - Access Forbidden
+
+
+
+
+
+
+
+
+
+
+
Oops!
+
403 Permission Denied
+
+ Sorry, you do not have access to this page, please contact your administrator.
+ If you have been assigned new authorizations, try to refresh the page or to
login again .
+
+
+
+
+
+
+
+
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: "{{ .app.harness.service.name }}-gk"
+ labels:
+ app: "{{ .app.harness.service.name }}-gk"
+spec:
+ ports:
+ - name: http
+ port: 8080
+ selector:
+ app: "{{ .app.harness.service.name }}-gk"
+ type: ClusterIP
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: "{{ .app.harness.service.name }}-gk"
+ labels:
+ app: "{{ .app.harness.service.name }}-gk"
+
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: "{{ .app.harness.service.name }}-gk"
+ template:
+ metadata:
+ annotations:
+ checksum/config: {{ .app.harness.uri_role_mapping | toString | sha256sum }}
+ labels:
+ app: "{{ .app.harness.service.name }}-gk"
+ spec:
+{{ include "deploy_utils.etcHosts" .root | indent 6 }}
+ containers:
+ - name: {{ .app.harness.service.name | quote }}
+ image: "quay.io/gogatekeeper/gatekeeper:1.3.8"
+ imagePullPolicy: IfNotPresent
+ {{ if .root.Values.local }}
+ securityContext:
+ allowPrivilegeEscalation: false
+ runAsUser: 0
+ {{- end }}
+ env:
+ - name: PROXY_CONFIG_FILE
+ value: /opt/proxy.yml
+ volumeMounts:
+ - name: "{{ .app.harness.service.name }}-gk-proxy-config"
+ mountPath: /opt/proxy.yml
+ subPath: proxy.yml
+ - name: "{{ .app.harness.service.name }}-gk-proxy-config"
+ mountPath: /etc/pki/ca-trust/source/anchors/cacert.crt
+ subPath: cacert.crt
+ - name: "{{ .app.harness.service.name }}-gk-proxy-config"
+ mountPath: /templates/access-denied.html.tmpl
+ subPath: access-denied.html.tmpl
+ ports:
+ - name: http
+ containerPort: 8080
+ - name: https
+ containerPort: 8443
+ resources:
+ requests:
+ memory: "32Mi"
+ cpu: "5m"
+ limits:
+ memory: "64Mi"
+ cpu: "100m"
+ volumes:
+ - name: "{{ .app.harness.service.name }}-gk-proxy-config"
+ configMap:
+ name: "{{ .app.harness.service.name }}-gk"
+---
+{{- end }}
+{{- if .Values.secured_gatekeepers }}
+{{ $files := .Files }}
+{{- range $app := .Values.apps }}
+ {{- if and (hasKey $app "port") ($app.harness.secured) }}
+---
+ {{ include "deploy_utils.securedservice" (dict "root" $ "app" $app "files" $files) }}
+ {{- end }}
+ {{- range $subapp := $app }}
+ {{- if contains "map" (typeOf $subapp) }}
+ {{- if and (hasKey $subapp "harness.port") (hasKey $subapp "harness.secured") }}
+ {{- if $subapp.harness.secured }}
+---
+ {{ include "deploy_utils.securedservice" (dict "root" $ "app" $subapp "files" $files) }}
+ {{- end }}
+ {{- end }}
+ {{- end }}
+ {{- end }}
+ {{- end }}
+{{- end }}
diff --git a/deployment/codefresh-dev.yaml b/deployment/codefresh-dev.yaml
index b7533c9b9..0d45004ea 100644
--- a/deployment/codefresh-dev.yaml
+++ b/deployment/codefresh-dev.yaml
@@ -26,6 +26,12 @@ steps:
revision: '${{CLOUDHARNESS_BRANCH}}'
working_directory: .
git: github
+ - title: Cloning nwb-explorer.git repository...
+ type: git-clone
+ repo: https://github.com/MetaCell/nwb-explorer.git
+ revision: development
+ working_directory: applications/nwb-explorer/dependencies/
+ git: github
prepare_deployment:
title: Prepare helm chart
image: python:3.9.10
@@ -702,6 +708,16 @@ steps:
commands:
- echo $APP_NAME
scale:
+ volumemanager_api_test:
+ title: volumemanager api test
+ volumes:
+ - '${{CF_REPO_NAME}}/cloud-harness/applications/volumemanager:/home/test'
+ - '${{CF_REPO_NAME}}/deployment/helm/values.yaml:/opt/cloudharness/resources/allvalues.yaml'
+ environment:
+ - APP_URL=https://volumemanager.${{DOMAIN}}/api
+ commands:
+ - st --pre-run cloudharness_test.apitest_init run api/openapi.yaml --base-url
+ https://volumemanager.${{DOMAIN}}/api -c all
common_api_test:
title: common api test
volumes:
diff --git a/libraries/client/cached_info/dandishowcase_info.json b/libraries/client/cached_info/dandishowcase_info.json
new file mode 100644
index 000000000..e58b5ce25
--- /dev/null
+++ b/libraries/client/cached_info/dandishowcase_info.json
@@ -0,0 +1,9695 @@
+[
+ {
+ "citation": "Senzai, Yuta; Fernandez-Ruiz, Antonio; Buzs\u00e1ki, Gy\u00f6rgy (2023) Physiological Properties and Behavioral Correlates of Hippocampal Granule Cells and Mossy Cells (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000003/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2016.12.011",
+ "file_0": "https://api.dandiarchive.org/api/assets/4153ba8e-5f24-41de-8b9b-2523f0d44821/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/cbbaf9d5-cb17-46af-9bc7-2109eeb720b0/download/",
+ "file_size_0": "5266942198.0",
+ "file_size_1": "6668136760.0",
+ "identifier": "DANDI:000003",
+ "keywords": "['cell types', 'current source density', 'laminar recordings', 'oscillations', 'mossy cells', 'granule cells', 'optogenetics']",
+ "name": "Physiological Properties and Behavioral Correlates of Hippocampal Granule Cells and Mossy Cells",
+ "num_bytes": "2559248010229",
+ "num_files": "101",
+ "numb_subjects": "16.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-YutaMouse37",
+ "parent_folder_1": "sub-YutaMouse42",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000003/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['DecompositionSeries', 'LFP', 'Units', 'Position', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chandravadia, Nand; Liang, Dehua; Schjetnan, Andrea Gomez Palacio; Carlson, April; Faraut, Mailys; Chung, Jeffrey M.; Reed, Chrystal M.; Dichter, Ben; Maoz, Uri; Kalia, Suneil K.; Valiante, Taufik A.; Mamelak, Adam N.; Rutishauser, Ueli (2023) A NWB-based dataset and processing pipeline of human single-neuron activity during a declarative memory task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000004/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://osf.io/hv7ja/",
+ "file_0": "https://api.dandiarchive.org/api/assets/a831c980-7b5a-4ad2-9687-7caf5ae27c56/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e22c078c-43d9-4713-84f5-02d2e1db707c/download/",
+ "file_size_0": "54648464.0",
+ "file_size_1": "54677088.0",
+ "identifier": "DANDI:000004",
+ "keywords": "['cognitive neuroscience', 'data standardization', 'decision making', 'declarative memory', 'neurophysiology', 'neurosurgery', 'NWB', 'open source', 'single-neurons']",
+ "name": "A NWB-based dataset and processing pipeline of human single-neuron activity during a declarative memory task",
+ "num_bytes": "6197474020",
+ "num_files": "87",
+ "numb_subjects": "59.0",
+ "nwb_version": "2.1.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-P16HMH",
+ "parent_folder_1": "sub-P15HMH",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000004/draft",
+ "validation_summary": "PYNWB_VALIDATION,CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Yu, Jianing; Gutnisky, Diego A; Hires, S Andrew; Svoboda, Karel (2022) Electrophysiology data from thalamic and cortical neurons during somatosensation (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000005/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1038/nn.4412",
+ "file_0": "https://api.dandiarchive.org/api/assets/3ee6887c-1462-4d39-a3f3-e0e356e673d5/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b73da40b-a5bf-4f1c-9cfc-479b1ea4d0f3/download/",
+ "file_size_0": "46543184.0",
+ "file_size_1": "58123096.0",
+ "identifier": "DANDI:000005",
+ "keywords": "[]",
+ "name": "Electrophysiology data from thalamic and cortical neurons during somatosensation",
+ "num_bytes": "46436686324",
+ "num_files": "148",
+ "numb_subjects": "55.0",
+ "nwb_version": "2.2.2",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-anm266945",
+ "parent_folder_1": "sub-anm266951",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000005/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampStimulusSeries', 'CurrentClampSeries', 'OptogeneticSeries', 'ElectrodeGroup', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Economo, Michael N.; Svoboda, Karel (2022) Mouse anterior lateral motor cortex (ALM) in delay response task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000006/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41586-018-0642-9",
+ "file_0": "https://api.dandiarchive.org/api/assets/32cb0ae9-49fd-4bf9-b939-3960df7aeca2/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e949d5c5-ed3d-4e17-9adf-a7facab36870/download/",
+ "file_size_0": "276632.0",
+ "file_size_1": "323156.0",
+ "identifier": "DANDI:000006",
+ "keywords": "[]",
+ "name": "Mouse anterior lateral motor cortex (ALM) in delay response task",
+ "num_bytes": "139600500",
+ "num_files": "53",
+ "numb_subjects": "12.0",
+ "nwb_version": "2.0.2",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-anm369963",
+ "parent_folder_1": "sub-anm372795",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000006/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Units', 'ElectrodeGroup', 'BehavioralEvents']",
+ "version": "draft"
+ },
+ {
+ "citation": "Gao, Zhenyu; Davis, Courtney; Thomas, Alyse M.; Economo, Michael N.; Abrego, Amada M.; Svoboda, Karel; Zeeuw, Chris I. De; Li, Nuo (2022) A cortico-cerebellar loop for motor planning (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000007/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41586-018-0633-x",
+ "file_0": "https://api.dandiarchive.org/api/assets/558d1353-a52e-4d06-a027-cadbbffaa25c/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/c093327c-6a1f-4290-a972-ef9976a48576/download/",
+ "file_size_0": "538256.0",
+ "file_size_1": "803008.0",
+ "identifier": "DANDI:000007",
+ "keywords": "[]",
+ "name": "A cortico-cerebellar loop for motor planning",
+ "num_bytes": "199439472",
+ "num_files": "54",
+ "numb_subjects": "13.0",
+ "nwb_version": "2.2.2",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-anm00314758",
+ "parent_folder_1": "sub-BAYLORCD13",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000007/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Scala, Federico; Kobak, Dmitry; Bernabucci, Matteo; Bernaerts, Yves; Cadwell, Cathryn Rene; Castro, Jesus Ramon; Hartmanis, Leonard; Jiang, Xiaolong; Laturnus, Sophie; Miranda, Elanine; Mulherkar, Shalaka; Tan, Zheng Huan; Yao, Zizhen; Zeng, Hongkui; Sandberg, Rickard; Berens, Philipp; Tolias, Andreas Savas (2022) Phenotypic variation within and across transcriptomic cell types in mouse motor cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000008/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41586-020-2907-3",
+ "file_0": "https://api.dandiarchive.org/api/assets/6810513d-2d2e-4ed0-b5b5-f221025d766e/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/874c6994-6535-41af-9d20-3a9763fb6df2/download/",
+ "file_size_0": "3221584.0",
+ "file_size_1": "3246930.0",
+ "identifier": "DANDI:000008",
+ "keywords": "['Patch-seq', 'cortex', 'motor cortex', 'mouse']",
+ "name": "Phenotypic variation within and across transcriptomic cell types in mouse motor cortex",
+ "num_bytes": "11922334254",
+ "num_files": "1328",
+ "numb_subjects": "266.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-mouse-KKXUD",
+ "parent_folder_1": "sub-mouse-UALZV",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000008/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampStimulusSeries', 'CurrentClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Guo, Zengcai; Inagaki, Hidehiko; Daie, Kayvon; Druckmann, Shaul; Gerfen, Charles R.; Svoboda, Karel (2022) Maintenance of persistent activity in a frontal thalamocortical loop (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000009/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1038/nature22324",
+ "file_0": "https://api.dandiarchive.org/api/assets/8ce1a50f-11bd-4a75-a510-64c3f32bb529/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/10f60b99-4286-4780-a767-f0267d877abd/download/",
+ "file_size_0": "438196.0",
+ "file_size_1": "449204.0",
+ "identifier": "DANDI:000009",
+ "keywords": "[]",
+ "name": "Maintenance of persistent activity in a frontal thalamocortical loop",
+ "num_bytes": "12919706852",
+ "num_files": "173",
+ "numb_subjects": "31.0",
+ "nwb_version": "2.1.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-anm00264942",
+ "parent_folder_1": "sub-anm00237800",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000009/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Units', 'ElectrodeGroup', 'ProcessingModule', 'BehavioralTimeSeries', 'CurrentClampStimulusSeries', 'OptogeneticSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Li, Nuo; Chen, Tsai-Wen; Guo, Zengcai V.; Gerfen, Charles R.; Svoboda, Karel (2022) A motor cortex circuit for motor planning and movement (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000010/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/nature14178",
+ "file_0": "https://api.dandiarchive.org/api/assets/427d4e22-35b3-4775-8d82-f4598ecdcc87/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/348c64a2-381a-470b-891d-d5de316b3ad8/download/",
+ "file_size_0": "26714376.0",
+ "file_size_1": "27766520.0",
+ "identifier": "DANDI:000010",
+ "keywords": "[]",
+ "name": "A motor cortex circuit for motor planning and movement",
+ "num_bytes": "40006570644",
+ "num_files": "158",
+ "numb_subjects": "23.0",
+ "nwb_version": "2.1.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-217951",
+ "parent_folder_1": "sub-226244",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000010/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['BehavioralTimeSeries', 'Units', 'ElectrodeGroup', 'BehavioralEvents', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Li, Nuo; Daie, Kayvon; Svoboda, Karel; Druckmann, Shaul (2022) Robust neuronal dynamics in premotor cortex during motor planning (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000011/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1038/nature17643",
+ "file_0": "https://api.dandiarchive.org/api/assets/354d36fd-fa87-4bc4-adaf-ba5b846d38ef/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/bc019955-f5d3-4fec-ab7a-e01ed12f493b/download/",
+ "file_size_0": "89882232.0",
+ "file_size_1": "164316984.0",
+ "identifier": "DANDI:000011",
+ "keywords": "[]",
+ "name": "Robust neuronal dynamics in premotor cortex during motor planning",
+ "num_bytes": "32435325542",
+ "num_files": "92",
+ "numb_subjects": "19.0",
+ "nwb_version": "2.1.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-291064",
+ "parent_folder_1": "sub-291063",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000011/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['BehavioralEvents', 'ElectrodeGroup', 'Units', 'BehavioralTimeSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhou, Li; Kriegstein, Arnold (2022) Kriegstein2020 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000012/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/06a78426-1ea5-4a66-b4df-3fb112387dc5/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/82eaa51c-c79f-4219-bc06-b0aa330ccbce/download/",
+ "file_size_0": "257445.0",
+ "file_size_1": "469868.0",
+ "identifier": "DANDI:000012",
+ "keywords": "[]",
+ "name": "Kriegstein2020",
+ "num_bytes": "487524911",
+ "num_files": "297",
+ "numb_subjects": "4.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-2",
+ "parent_folder_1": "sub-1",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000012/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['VoltageClampStimulusSeries', 'VoltageClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Hires, Samuel; Gutnisky, Diego; Yu, Jianing; O'Connor, Daniel H; Svoboda, Karel (2022) Low-noise encoding of active touch by layer 4 in the somatosensory cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000013/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://elifesciences.org/articles/06619",
+ "file_0": "https://api.dandiarchive.org/api/assets/061d6422-018a-4fe0-b914-119b9297be7d/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b8b1b393-e001-452f-b48f-a7b78b09a582/download/",
+ "file_size_0": "47979264.0",
+ "file_size_1": "59919248.0",
+ "identifier": "DANDI:000013",
+ "keywords": "[]",
+ "name": "Low-noise encoding of active touch by layer 4 in the somatosensory cortex",
+ "num_bytes": "11408735292",
+ "num_files": "52",
+ "numb_subjects": "23.0",
+ "nwb_version": "2.2.2",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-anm244024",
+ "parent_folder_1": "sub-anm266945",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000013/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['BehavioralTimeSeries', 'CurrentClampSeries', 'PatchClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chen, Tsai-Wen; Li, Nuo; Daie, Kayvon; Svoboda, Karel (2022) A Map of Anticipatory Activity in Mouse Motor Cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000015/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2017.05.005",
+ "file_0": "https://api.dandiarchive.org/api/assets/70c2d486-4f4b-4821-9f37-540cb1e28de2/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/72138f7e-5f52-43f8-be08-8cd608764166/download/",
+ "file_size_0": "16817384.0",
+ "file_size_1": "30219176.0",
+ "identifier": "DANDI:000015",
+ "keywords": "[]",
+ "name": "A Map of Anticipatory Activity in Mouse Motor Cortex",
+ "num_bytes": "17159727736",
+ "num_files": "210",
+ "numb_subjects": "6.0",
+ "nwb_version": "2.1.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-an044",
+ "parent_folder_1": "sub-an043",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000015/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['BehavioralEvents', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Najafi, Farzaneh; Churchland, Anne K. (2022) Excitatory and inhibitory subnetworks are equally selective during decision-making and emerge simultaneously during learning (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000016/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "http://repository.cshl.edu/id/eprint/37693/",
+ "file_0": "https://api.dandiarchive.org/api/assets/913646f8-4d02-45f5-b830-85dfc69ae74a/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b24bfa76-2a06-440f-9b3a-8e06de9ce493/download/",
+ "file_size_0": "199268108.0",
+ "file_size_1": "214503077.0",
+ "identifier": "DANDI:000016",
+ "keywords": "[]",
+ "name": "Excitatory and inhibitory subnetworks are equally selective during decision-making and emerge simultaneously during learning",
+ "num_bytes": "62572042499",
+ "num_files": "135",
+ "numb_subjects": "4.0",
+ "nwb_version": "2.2.2",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-mouse2-fni17",
+ "parent_folder_1": "sub-mouse1-fni16",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000016/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['BehavioralTimeSeries', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Steinmetz, Nicholas; Zatka-Haas, Peter; Carandini, Matteo; Harris, Kenneth; Wang, Renee (2022) Distributed coding of choice, action and engagement across the mouse brain (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000017/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41586-019-1787-x",
+ "file_0": "https://api.dandiarchive.org/api/assets/3722e6b8-d47f-4feb-a9ae-9c368e41166b/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/9a19c19e-c91d-4d3c-ac97-ad98c621634f/download/",
+ "file_size_0": "216191784.0",
+ "file_size_1": "272075696.0",
+ "identifier": "DANDI:000017",
+ "keywords": "['neuropixels']",
+ "name": "Distributed coding of choice, action and engagement across the mouse brain",
+ "num_bytes": "14682586049",
+ "num_files": "39",
+ "numb_subjects": "10.0",
+ "nwb_version": "2.1.0",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-Lederberg",
+ "parent_folder_1": "sub-Richards",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000017/draft",
+ "validation_summary": "PYNWB_VALIDATION,CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'PupilTracking', 'BehavioralEpochs', 'Units', 'BehavioralEvents', 'BehavioralTimeSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Tao, Can; Zhang, Guang-Wei (2022) Mouse Spinal Cord Ephys Dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000018/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000018",
+ "keywords": "[]",
+ "name": "Mouse Spinal Cord Ephys Dataset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000018/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Bouchard, Kristofer E.; Chang, Edward F. (2023) Human ECoG speaking consonant-vowel syllables (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000019/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1038/nature11911",
+ "file_0": "https://api.dandiarchive.org/api/assets/fbd3bc15-d716-495f-814d-1aa14f8d3b45/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/911776e7-aebc-4206-b8f3-01f66c7bf747/download/",
+ "file_size_0": "1099888379.0",
+ "file_size_1": "1551056946.0",
+ "identifier": "DANDI:000019",
+ "keywords": "['electrocorticography (ECoG)', 'speech production']",
+ "name": "Human ECoG speaking consonant-vowel syllables",
+ "num_bytes": "55585858956",
+ "num_files": "31",
+ "numb_subjects": "4.0",
+ "nwb_version": "2.0.2",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-GP31",
+ "parent_folder_1": "sub-GP33",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000019/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ElectrodeGroup', 'ElectricalSeries', 'ProcessingModule', 'Spectrum']",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Institute for Brain Science (2022) Patch-seq recordings from mouse visual cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000020/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.sciencedirect.com/science/article/pii/S009286742031254X",
+ "file_0": "https://api.dandiarchive.org/api/assets/17f31e2b-26b4-4c3e-8e98-423769cc3912/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/df0ed794-e7b5-45a0-9f7f-5aa75e70348d/download/",
+ "file_size_0": "11856817.0",
+ "file_size_1": "12054751.0",
+ "identifier": "DANDI:000020",
+ "keywords": "['Patch-seq', 'mouse', 'visual cortex', 'interneuron']",
+ "name": "Patch-seq recordings from mouse visual cortex",
+ "num_bytes": "141856436428",
+ "num_files": "4435",
+ "numb_subjects": "1040.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-639391596",
+ "parent_folder_1": "sub-643830482",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000020/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Siegle, Josh; Wakeman, Wayne; Jia, Xiaoxuan; Heller, Gregg; Ramirez, Tamina; Graddis, Nile; Mei, Nicholas; Durand, Severine (2022) 20191003_AIBS_mouse_ecephys_brain_observatory_1_1 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000021/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/4d5f1bda-3d20-46f0-a0c8-20f3a3ee9d54/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e1f0127e-f5d7-4cac-a42c-bb76127f2ddc/download/",
+ "file_size_0": "72289252.0",
+ "file_size_1": "898779687.0",
+ "identifier": "DANDI:000021",
+ "keywords": "['electrophysiology', 'life sciences', 'machine learning', 'neurobiology', 'signal processing']",
+ "name": "20191003_AIBS_mouse_ecephys_brain_observatory_1_1",
+ "num_bytes": "477562344354",
+ "num_files": "214",
+ "numb_subjects": "32.0",
+ "nwb_version": "2.2.2",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-703279277",
+ "parent_folder_1": "sub-719828686",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000021/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'LFP', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Siegle, Josh; Wakeman, Wayne; Jia, Xiaoxuan; Durand, Severine; Heller, Gregg; Ramirez, Tamina; Graddis, Nile; Mei, Nicholas (2022) 20191003_AIBS_mouse_ecephys_functional_connectivity (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000022/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/04c03d1d-7f13-48b7-a6f0-816b5846c622/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3f56621a-3c22-48bc-a47e-555fb504ea5d/download/",
+ "file_size_0": "1573296253.0",
+ "file_size_1": "1666106214.0",
+ "identifier": "DANDI:000022",
+ "keywords": "['electrophysiology', 'life sciences', 'machine learning', 'neurobiology', 'signal processing']",
+ "name": "20191003_AIBS_mouse_ecephys_functional_connectivity",
+ "num_bytes": "374956840341",
+ "num_files": "169",
+ "numb_subjects": "26.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-803390283",
+ "parent_folder_1": "sub-759711149",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000022/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['LFP', 'ProcessingModule', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Institute for Brian Science (2022) Patch-seq recordings from human cortex (June 2020) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000023/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.biorxiv.org/content/10.1101/2020.03.31.018820v1",
+ "file_0": "https://api.dandiarchive.org/api/assets/7687363f-dd32-4325-9f40-705227fd470c/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/20991256-4a71-48bb-ae0a-e4ccaf29a192/download/",
+ "file_size_0": "13504474.0",
+ "file_size_1": "14364738.0",
+ "identifier": "DANDI:000023",
+ "keywords": "['Patch-seq', 'human', 'neocortex', ' layer 2/3']",
+ "name": "Patch-seq recordings from human cortex (June 2020)",
+ "num_bytes": "12401578899",
+ "num_files": "318",
+ "numb_subjects": "56.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-695464588",
+ "parent_folder_1": "sub-731978186",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000023/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "LFP & MUA from BF (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000024/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000024",
+ "keywords": "['LFP, BF, interhemispheric']",
+ "name": "LFP & MUA from BF",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000024/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Example intracellular ephys data from LNMC & BBP (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000025/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/b1364b47-71e1-4b04-b8e4-13aba7543406/download/",
+ "file_1": "",
+ "file_size_0": "13664814.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000025",
+ "keywords": "[]",
+ "name": "Example intracellular ephys data from LNMC & BBP",
+ "num_bytes": "13664814",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000025/draft",
+ "validation_summary": "UNABLE",
+ "variableMeasured": "['VoltageClampSeries', 'CurrentClampStimulusSeries', 'VoltageClampStimulusSeries', 'CurrentClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Mazzamuto, Giacomo; Costantini, Irene; Gavryusev, Vladislav; Castelli, Filippo Maria; Pesce, Luca; Scardigli, Marina; Pavone, Francesco Saverio; Roffilli, Matteo; Silvestri, Ludovico; Brady, Niamh; Ramazzotti, Josephine; Hof, Patrick R.; Boas, David A.; Fischl, Bruce; Morgan, Leah; Yang, Jiarui; Chang, Shuaibin; Laffey, Jessie; Magnain, Caroline; Varadarajan, Divya; Wang, Hui; Frost, Robert; Kouwe, Andre van der; Player, Allison Stevens; Atzeni, Alessia; Gonzalez, Juan Eugenio Iglesias; Balbastre, Yael; Vera, Matthew; Cordero, Devani; Nestor, Kimberly; Ammon, William; Nolan, Jackson; Mora, Jocelyn; Pallares, Erendira Garcia; Augustinack, Jean; Diamond, Bram; Fogarty, Morgan; Boyd, Emma; Varghese, Merina; Dalca, Adrian V.; Edlow, Brian; Frosche, Matthew; Wicinski, Bridget; Chen, I-Chun Anderson (2023) Human brain cell census for BA 44/45 (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "https://biccn.github.io/Quarterly_Submission_Receipts/000026-dashboard.html",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000026",
+ "keywords": "['multi-modal imaging', 'MRI', 'OCT', 'SPIM', 'human cortex', \"Broca's area\", 'Motor cortex', 'Stereology']",
+ "name": "Human brain cell census for BA 44/45",
+ "num_bytes": "1",
+ "num_files": "1",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000026/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Halchenko, Yaroslav O. (2023) Test dataset for testing dandi-cli (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000027/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/838bab7b-9ab4-4d66-97b3-898a367c9c7e/download/",
+ "file_1": "",
+ "file_size_0": "18792.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000027",
+ "keywords": "['development']",
+ "name": "Test dataset for testing dandi-cli.",
+ "num_bytes": "18792",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.0b",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-RAT123",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000027/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Simulated cortical Neuropixels recording with ground truth (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000028/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/d195f9d3-fb6f-4a20-aebf-e61b4acced82/download/",
+ "file_1": "",
+ "file_size_0": "13411878072.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000028",
+ "keywords": "",
+ "name": "Simulated cortical Neuropixels recording with ground truth",
+ "num_bytes": "42942229688",
+ "num_files": "3",
+ "numb_subjects": "2.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-mouse412804",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000028/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectrodeGroup', 'ElectricalSeries', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Last, First; Test Org (2023) Test dataset for development purposes (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000029/draft",
+ "dandiset_schemaver": "0.4.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/356b20b7-ae80-4d42-9715-075492eb025d/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/669355cb-a494-4106-a394-347d424fddf8/download/",
+ "file_size_0": "18792.0",
+ "file_size_1": "6393196.0",
+ "identifier": "DANDI:000029",
+ "keywords": "['development']",
+ "name": "Test dataset for development purposes",
+ "num_bytes": "39011902",
+ "num_files": "9",
+ "numb_subjects": "5.0",
+ "nwb_version": "2.0.2",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Macaca mulatta - Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000029/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'ElectrodeGroup', 'BehavioralEvents', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Brain Observatory Neuropixels recording (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000030/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000030",
+ "keywords": "",
+ "name": "Allen Brain Observatory Neuropixels recording",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000030/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "ABC (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000031/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000031",
+ "keywords": "",
+ "name": "ABC",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000031/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Dichter, Benjamin (2023) Test dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000032/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000032",
+ "keywords": "[]",
+ "name": "Test dataset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000032/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Test-2 dataset (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000033/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000033",
+ "keywords": "",
+ "name": "Test-2 dataset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000033/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Buccino, Alessio; Hurwitz, Cole; Garcia, Samuel; Magland, Jeremy; Siegle, Joshua; Hurwitz, Roger; Hennig, Matthias H. (2022) SpikeInterface, a unified framework for spike sorting (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000034/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.7554/eLife.61834",
+ "file_0": "https://api.dandiarchive.org/api/assets/c696fc2b-d2e6-4e27-8775-01657193c4a2/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/9822a813-0dec-4d07-810b-1c13341c168d/download/",
+ "file_size_0": "11732540.0",
+ "file_size_1": "6470908640.0",
+ "identifier": "DANDI:000034",
+ "keywords": "['Spike Sorting', 'extracellular electrophysiology']",
+ "name": "SpikeInterface, a unified framework for spike sorting",
+ "num_bytes": "74351014076",
+ "num_files": "6",
+ "numb_subjects": "4.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-mouse412804",
+ "parent_folder_1": "sub-P29-16-05-14-retina02-left",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000034/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ElectrodeGroup', 'Units', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Scala, Federico; Kobak, Dmitry; Bernabucci, Matteo; Bernaerts, Yves; Cadwell, Cathryn Rene; Castro, Jesus Ramon; Hartmanis, Leonard; Jiang, Xiaolong; Laturnus, Sophie; Miranda, Elanine; Mulherkar, Shalaka; Tan, Zheng Huan; Yao, Zizhen; Last, First; Zeng, Hongkui; Sandberg, Rickard; Berens, Philipp; Tolias, Andreas Savas (2022) Temperature-controlled intracellular Patch-seq recordings in mouse motor cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000035/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41586-020-2907-3",
+ "file_0": "https://api.dandiarchive.org/api/assets/f1fe5b46-ca4d-4884-83e1-25e3b008bdb2/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d3f3b662-45ee-4c14-88b5-2c96caa28b9a/download/",
+ "file_size_0": "4629814.0",
+ "file_size_1": "5693296.0",
+ "identifier": "DANDI:000035",
+ "keywords": "['Patch-seq', 'mouse', 'cortex', 'motor cortex']",
+ "name": "Temperature-controlled intracellular Patch-seq recordings in mouse motor cortex",
+ "num_bytes": "1656166654",
+ "num_files": "185",
+ "numb_subjects": "8.0",
+ "nwb_version": "2.1.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-mouse-WPOGH",
+ "parent_folder_1": "sub-mouse-MITSU",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000035/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampSeries', 'CurrentClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Lecoq, Jerome; Mayner, Will (2023) Allen Institute Openscope - Measuring Stimulus-Evoked Neurophysiological Differentiation in Distinct Populations of Neurons in Mouse Visual Cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000036/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1523/eneuro.0280-21.2021",
+ "file_0": "https://api.dandiarchive.org/api/assets/3ff75d8e-318f-47d1-805a-1b409b1600e2/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3988673a-e876-4a0e-83c3-12dc35229a7f/download/",
+ "file_size_0": "1306927564.0",
+ "file_size_1": "1310769924.0",
+ "identifier": "DANDI:000036",
+ "keywords": "['two photon imaging', 'visual stimuli', 'mice', 'openscope']",
+ "name": "Allen Institute Openscope - Measuring Stimulus-Evoked Neurophysiological Differentiation in Distinct Populations of Neurons in Mouse Visual Cortex",
+ "num_bytes": "79771339536",
+ "num_files": "57",
+ "numb_subjects": "9.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-406876",
+ "parent_folder_1": "sub-389014",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000036/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['BehavioralTimeSeries', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Gillon, Colleen J.; Lecoq, J\u00e9r\u00f4me A.; Pina, Jason E.; Zylberberg, Joel; Richards, Blake A. (2023) Allen Institute Openscope - Responses to inconsistent stimuli in somata and distal apical dendrites in primary visual cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000037/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/jeromelecoq/allen_openscope_metadata/tree/master/projects/credit_assignement",
+ "file_0": "https://api.dandiarchive.org/api/assets/af450eea-0023-445e-9ea2-3dc5bd5538fd/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3749be7d-96cf-4cd5-afc7-11a4882943ec/download/",
+ "file_size_0": "150696088.0",
+ "file_size_1": "206841032.0",
+ "identifier": "DANDI:000037",
+ "keywords": "['learning', 'neocortex', 'pyramidal neurons', 'distal apical dendrites', 'somata', 'L2/3', 'L5', 'two-photon calcium imaging', 'mouse VisP', 'prediction', 'credit assignment']",
+ "name": "Allen Institute Openscope - Responses to inconsistent stimuli in somata and distal apical dendrites in primary visual cortex",
+ "num_bytes": "2484974036475",
+ "num_files": "150",
+ "numb_subjects": "13.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-418779",
+ "parent_folder_1": "sub-411771",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000037/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ProcessingModule', 'SpatialSeries', 'PlaneSegmentation', 'OpticalChannel', 'BehavioralTimeSeries', 'ImagingPlane', 'PupilTracking', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Testytest (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000038/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000038",
+ "keywords": "",
+ "name": "Testytest",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000038/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Millman, Dan; Vries, Saskia de (2023) Allen Institute \u2013 Contrast tuning in mouse visual cortex with calcium imaging (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000039/draft",
+ "dandiset_schemaver": "0.4.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://elifesciences.org/articles/55130",
+ "file_0": "https://api.dandiarchive.org/api/assets/645adfe1-7fdf-48f0-9c61-304df785e92d/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/7b8def8d-69aa-44e3-be02-057c8f1864f0/download/",
+ "file_size_0": "31313992.0",
+ "file_size_1": "31317016.0",
+ "identifier": "DANDI:000039",
+ "keywords": "['vision', 'visual cortex', 'inhibition', 'inhibitory circuits', 'circuit dynamics', 'gain control']",
+ "name": "Allen Institute \u2013 Contrast tuning in mouse visual cortex with calcium imaging",
+ "num_bytes": "22607247880",
+ "num_files": "100",
+ "numb_subjects": "32.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-664605504",
+ "parent_folder_1": "sub-678530120",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000039/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Units', 'PlaneSegmentation', 'TwoPhotonSeries', 'BehavioralTimeSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Jia, Xiaoxuan; Siegle, Josh; Durand, Severine; Heller, Gregg; Ramirez, Tamina (2022) Neuropixels recordings in mouse visual system (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000040/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000040",
+ "keywords": "['Neuropixels']",
+ "name": "Neuropixels recordings in mouse visual system",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000040/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Watson, Brendon O.; Levenstein, Daniel; Greene, J. Palmer; Gelinas, Jennifer N.; Buzs\u00e1ki, Gy\u00f6rgy (2022) Network Homeostasis and State Dynamics of Neocortical Sleep (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000041/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.sciencedirect.com/science/article/pii/S0896627316300563",
+ "file_0": "https://api.dandiarchive.org/api/assets/d472739b-c132-48fa-8bee-e5079e5ce87b/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/ec88e42c-adf3-4710-a94e-8c82c1216f02/download/",
+ "file_size_0": "1530632945.0",
+ "file_size_1": "2312698857.0",
+ "identifier": "DANDI:000041",
+ "keywords": "['Firing patterns', 'Sleep/awake states', 'Sleep stages', 'Homeostasis']",
+ "name": "Network Homeostasis and State Dynamics of Neocortical Sleep",
+ "num_bytes": "154863459017",
+ "num_files": "22",
+ "numb_subjects": "10.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-BWRat17",
+ "parent_folder_1": "sub-BWRat19",
+ "schemaKey": "Dandiset",
+ "species": "Brown rat",
+ "url": "https://dandiarchive.org/dandiset/000041/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['Units', 'LFP', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Institute Openscope - Meaningful project - Full movies (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000042/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000042",
+ "keywords": "",
+ "name": "Allen Institute Openscope - Meaningful project - Full movies",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000042/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Kalmbach, Brian; Ting, Jonathan; Owen, Scott; Lein, Ed (2022) Human, macaque, and mouse L5 pyramidal neuron physiology (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000043/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/26f67672-5162-4f43-86cb-402aed8c582d/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d715f810-df3f-42b4-8650-e0c64a236ac1/download/",
+ "file_size_0": "14761154.0",
+ "file_size_1": "16170615.0",
+ "identifier": "DANDI:000043",
+ "keywords": "['Patch-seq', 'Motor cortex', 'Betz cell', 'Human', 'Macaque', 'Mouse']",
+ "name": "Human, macaque, and mouse L5 pyramidal neuron physiology",
+ "num_bytes": "3271279661",
+ "num_files": "94",
+ "numb_subjects": "22.0",
+ "nwb_version": "2.2.4",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-M19-01-001",
+ "parent_folder_1": "sub-Q19-26-018",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000043/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Grosmark, Andres D.; Buzs\u00e1ki, Gy\u00f6rgy (2022) Diversity in neural firing dynamics supports both rigid and learned hippocampal sequences (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000044/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://science.sciencemag.org/content/351/6280/1440",
+ "file_0": "https://api.dandiarchive.org/api/assets/31ea0aab-4777-424e-9a93-9605b2bdcc29/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e381ebb3-128e-4f3f-9517-11277d7aed9b/download/",
+ "file_size_0": "7943570110.0",
+ "file_size_1": "8357219071.0",
+ "identifier": "DANDI:000044",
+ "keywords": "[]",
+ "name": "Diversity in neural firing dynamics supports both rigid and learned hippocampal sequences",
+ "num_bytes": "65708919583",
+ "num_files": "8",
+ "numb_subjects": "4.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Gatsby",
+ "parent_folder_1": "sub-Cicero",
+ "schemaKey": "Dandiset",
+ "species": "Brown rat",
+ "url": "https://dandiarchive.org/dandiset/000044/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectricalSeries', 'LFP', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "International Brain Laboratory (2022) IBL behavioral data (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000045/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.7554/eLife.63711",
+ "file_0": "https://api.dandiarchive.org/api/assets/7946c765-52e4-44e2-90ae-9652f8a956e2/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3d982a78-0f0d-4313-a9ed-60a9bdf42db9/download/",
+ "file_size_0": "269888.0",
+ "file_size_1": "321376.0",
+ "identifier": "DANDI:000045",
+ "keywords": "['International Brain Laboratory']",
+ "name": "IBL behavioral data",
+ "num_bytes": "97844923040",
+ "num_files": "6615",
+ "numb_subjects": "178.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-354e6122-de4a-4945-bafd-d46df65768f6",
+ "parent_folder_1": "sub-00778394-c956-408d-8a6c-ca3b05a611d5",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000045/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['BehavioralTimeSeries', 'ProcessingModule', 'Position', 'DecompositionSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "asdf (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000046/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000046",
+ "keywords": "",
+ "name": "asdf",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000046/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Test (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000047/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000047",
+ "keywords": "",
+ "name": "Test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000047/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Ledochowitsch, Peter; Huang, Lawrence; Knoblich, Ulf; Oliver, Michael; Lecoq, Jerome; Reid, Clay; Li, Lu; Zeng, Hongkui; Koch, Christof; Waters, Jack; Vries, Saskia E.J. de; Buice, Michael A. (2023) Electrical and optical physiology in in vivo population-scale two-photon calcium imaging (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000048/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/827b4c2f-4235-4350-b40f-02e120211dcd/download/",
+ "file_1": "",
+ "file_size_0": "590267164.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000048",
+ "keywords": "[]",
+ "name": "Electrical and optical physiology in in vivo population-scale two-photon calcium imaging",
+ "num_bytes": "590267164",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-222549",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000048/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['PlaneSegmentation', 'TwoPhotonSeries', 'ElectrodeGroup', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Millman, Daniel; de Vries, Saskia (2023) Allen Institute \u2013 TF x SF tuning in mouse visual cortex with calcium imaging (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000049/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/38cf16f0-0f4c-44ec-b04e-0b0c0b02781b/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/7f81af9c-fab1-4a4a-9ca6-992bbbb0a4b3/download/",
+ "file_size_0": "33385624.0",
+ "file_size_1": "50590984.0",
+ "identifier": "DANDI:000049",
+ "keywords": "['Mouse', '2-photon calcium imaging', 'visual cortex']",
+ "name": "Allen Institute \u2013 TF x SF tuning in mouse visual cortex with calcium imaging",
+ "num_bytes": "22211886496",
+ "num_files": "78",
+ "numb_subjects": "27.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-760940732",
+ "parent_folder_1": "sub-759066288",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000049/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['TwoPhotonSeries', 'Units', 'PlaneSegmentation', 'BehavioralTimeSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Institute - Run Tuning in the Mouse Visual Cortex (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000050/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/f3de94e9-6af4-4169-b911-1e7028ca2021/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/55583159-e897-4b77-8a81-48c78e8b6227/download/",
+ "file_size_0": "94809148.0",
+ "file_size_1": "155377676.0",
+ "identifier": "DANDI:000050",
+ "keywords": "",
+ "name": "Allen Institute - Run Tuning in the Mouse Visual Cortex",
+ "num_bytes": "26372579632",
+ "num_files": "56",
+ "numb_subjects": "18.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-673580710",
+ "parent_folder_1": "sub-753847689",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000050/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['TwoPhotonSeries', 'Units', 'PlaneSegmentation', 'BehavioralTimeSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "pons8-yo_16xdownsampled (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000051/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/203fdd15-60d6-41c4-b964-3439163e4e3a/download/",
+ "file_1": "",
+ "file_size_0": "585926072.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000051",
+ "keywords": "",
+ "name": "pons8-yo_16xdownsampled",
+ "num_bytes": "585926072",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000051/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Pons8-BIDS-16xdownsampled (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000052/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Brain Imaging Data Structure (BIDS)",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000052",
+ "keywords": "",
+ "name": "Pons8-BIDS-16xdownsampled",
+ "num_bytes": "226804820",
+ "num_files": "518",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000052/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Mallory, Caitlin S.; Hardcastle, Kiah; Campbell, Malcolm G.; Attinger, Alexander; Low, Isabel I. C.; Raymond, Jennifer L.; Giocomo, Lisa M. (2022) Recordings from medial entorhinal cortex during linear track and open exploration (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000053/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41467-021-20936-8",
+ "file_0": "https://api.dandiarchive.org/api/assets/cefaf356-0f24-4ebb-8970-3ca91d97b405/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/fcce9de1-149d-4ab3-b3a8-9803239fa70a/download/",
+ "file_size_0": "2449288.0",
+ "file_size_1": "2480176.0",
+ "identifier": "DANDI:000053",
+ "keywords": "['neuropixel', 'entorhinal cortex']",
+ "name": "Recordings from medial entorhinal cortex during linear track and open exploration",
+ "num_bytes": "1393128766605",
+ "num_files": "359",
+ "numb_subjects": "34.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Ella",
+ "parent_folder_1": "sub-Barbara",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000053/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['LFP', 'Position', 'Units', 'ElectrodeGroup', 'EyeTracking', 'SpatialSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Plitt, Mark; Giocomo, Lisa M. (2022) Plitt & Giocomo (2021) Experience Dependent Contextual Codes in the Hippocampus. Nat Neuro (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000054/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41593-021-00816-6",
+ "file_0": "https://api.dandiarchive.org/api/assets/e67851a4-0344-4c96-921e-d7b3cb69db29/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/033a9ecd-2251-4c6c-9d69-0e8546557159/download/",
+ "file_size_0": "3156627001.0",
+ "file_size_1": "9695045878.0",
+ "identifier": "DANDI:000054",
+ "keywords": "[]",
+ "name": "Plitt & Giocomo (2021) Experience Dependent Contextual Codes in the Hippocampus. Nat Neuro",
+ "num_bytes": "1959122435577",
+ "num_files": "85",
+ "numb_subjects": "10.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-R4",
+ "parent_folder_1": "sub-F3",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000054/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['PlaneSegmentation', 'TwoPhotonSeries', 'BehavioralTimeSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Peterson, Steven M.; Singh, Satpreet H.; Dichter, Benjamin; Scheid, Micheal; Rao, Rajesh P. N.; Brunton, Bingni W. (2022) AJILE12: Long-term naturalistic human intracranial neural recordings and pose (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000055/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1523/ENEURO.0007-21.2021",
+ "file_0": "https://api.dandiarchive.org/api/assets/87c2f790-8f6c-4e73-a54f-f275af6a2680/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/5791a9f3-5c0c-484b-b690-b5ce9fea589e/download/",
+ "file_size_0": "8620317009.0",
+ "file_size_1": "10021863235.0",
+ "identifier": "DANDI:000055",
+ "keywords": "[]",
+ "name": "AJILE12: Long-term naturalistic human intracranial neural recordings and pose",
+ "num_bytes": "845869698341",
+ "num_files": "55",
+ "numb_subjects": "12.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-06",
+ "parent_folder_1": "sub-07",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000055/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['Position', 'ProcessingModule', 'ElectricalSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Peyrache, Adrien; Lacroix, Marie M; Petersen, Peter C; Buzs\u00e1ki, Gy\u00f6rgy (2022) Internally organized mechanisms of the head direction sense (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000056/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/nn.3968",
+ "file_0": "https://api.dandiarchive.org/api/assets/ada02790-6eb6-48ee-902d-9ba017303586/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/748aa5de-c0de-4aa7-a7ef-2aad2f87a7eb/download/",
+ "file_size_0": "1306159378.0",
+ "file_size_1": "1892072604.0",
+ "identifier": "DANDI:000056",
+ "keywords": "['']",
+ "name": "Internally organized mechanisms of the head direction sense",
+ "num_bytes": "207733008367",
+ "num_files": "40",
+ "numb_subjects": "7.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Mouse24",
+ "parent_folder_1": "sub-Mouse20",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000056/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'Units', 'LFP', 'Position', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "foobar (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000057/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000057",
+ "keywords": "",
+ "name": "foobar",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000057/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "MITU01 Dataset (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000058/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Brain Imaging Data Structure (BIDS)",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000058",
+ "keywords": "[]",
+ "name": "MITU01 Dataset",
+ "num_bytes": "35328357305",
+ "num_files": "17",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000058/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Petersen, Peter; Buzs\u00e1ki, Gy\u00f6rgy (2023) Cooling of Medial Septum Reveals Theta Phase Lag Coordination of Hippocampal Cell Assemblies (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000059/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.sciencedirect.com/science/article/abs/pii/S0896627320303925",
+ "file_0": "https://api.dandiarchive.org/api/assets/cb30bd19-f8e8-40f8-aaab-21d45ba76c63/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/4800ef4e-6161-4612-be95-9371ee6d2daf/download/",
+ "file_size_0": "3518783.0",
+ "file_size_1": "10179944.0",
+ "identifier": "DANDI:000059",
+ "keywords": "[]",
+ "name": "Cooling of Medial Septum Reveals Theta Phase Lag Coordination of Hippocampal Cell Assemblies",
+ "num_bytes": "2934037566608",
+ "num_files": "98",
+ "numb_subjects": "5.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-MS10",
+ "parent_folder_1": "sub-MS22",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000059/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ProcessingModule', 'Position', 'ElectrodeGroup', 'SpatialSeries', 'Units', 'LFP', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Finkelstein, Arseny; Svoboda, Karel (2022) Dataset for Finkelstein, Fontolan et al. \"Attractor dynamics gate cortical information flow during decision-making\" (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000060/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/1ecaa50a-5751-46ae-9fef-5e381472b108/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/f2dd0e64-2c91-4ef6-92b8-84dd3141119e/download/",
+ "file_size_0": "1815784.0",
+ "file_size_1": "1976904.0",
+ "identifier": "DANDI:000060",
+ "keywords": "['motor cortex', 'extracellular electrophysiology', 'decision-making', 'attractor', 'optogenetic stimulation']",
+ "name": "Dataset for Finkelstein, Fontolan et al. \"Attractor dynamics gate cortical information flow during decision-making\"",
+ "num_bytes": "1009087545",
+ "num_files": "98",
+ "numb_subjects": "9.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-353938",
+ "parent_folder_1": "sub-365942",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000060/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Units', 'BehavioralEvents']",
+ "version": "draft"
+ },
+ {
+ "citation": "Girardeau, Gabrielle; Inema, Ingrid; Buzs\u00e1ki, Gy\u00f6rgy (2022) Reactivations of emotional memory in the hippocampus\u2013amygdala system during sleep (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000061/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1038/nn.4637",
+ "file_0": "https://api.dandiarchive.org/api/assets/2ee22742-8ba1-42bf-a32d-08e0973c9487/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e987b8bc-7de8-4c32-8598-2b40bc3e25d5/download/",
+ "file_size_0": "15932111783.0",
+ "file_size_1": "16077235844.0",
+ "identifier": "DANDI:000061",
+ "keywords": "[]",
+ "name": "Reactivations of emotional memory in the hippocampus\u2013amygdala system during sleep",
+ "num_bytes": "1952634651805",
+ "num_files": "40",
+ "numb_subjects": "4.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Rat08",
+ "parent_folder_1": "sub-Rat11",
+ "schemaKey": "Dandiset",
+ "species": "Brown rat",
+ "url": "https://dandiarchive.org/dandiset/000061/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['Units', 'LFP', 'ElectricalSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "UHN_human_heterogeneity (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000063/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000063",
+ "keywords": "",
+ "name": "UHN_human_heterogeneity",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000063/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Raikov, Ivan; Milstein, Aaron; Soltesz, Ivan (2022) Simulation extension example (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000064/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/iraikov/neuroh5",
+ "file_0": "https://api.dandiarchive.org/api/assets/bb61e86d-e28f-4da7-b07a-44dfa377cf32/download/",
+ "file_1": "",
+ "file_size_0": "218366752.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000064",
+ "keywords": "[]",
+ "name": "Simulation extension example",
+ "num_bytes": "218366752",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-001",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000064/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Chung, J. E.; Joo, H. R.; Fan, J. L.; Liu, D. F.; Barnett, A. H.; Chen, S.; Geaghan-Breiner, C.; Karlsson, M. P.; Karlsson, M.; Lee, K. Y.; Liang, H.; Magland, J. F.; Pebbles, J. A.; Tooker, A. C.; Greengard, L. F.; Tolosa, V. M.; Frank, L. M. (2022) Polymer probe recordings from hippocampus (LFP), OFC, NAc, and mPFC (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000065/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "https://pubmed.ncbi.nlm.nih.gov/30502044/",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000065",
+ "keywords": "['rat, ', 'polymer probe', 'electrophysiology', 'nucleus accumbens', 'medial prefrontal cortex', 'orbitofrontal cortex', 'hippocampus', 'sleep']",
+ "name": "Polymer probe recordings from hippocampus (LFP), OFC, NAc, and mPFC",
+ "num_bytes": "237685085456",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000065/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Ng, Lydia (2023) Allen Mouse Common Coordinate Framework - Average Brain Template (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000066/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Brain Imaging Data Structure (BIDS)",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000066",
+ "keywords": "[]",
+ "name": "Allen Mouse Common Coordinate Framework - Average Brain Template",
+ "num_bytes": "381654798",
+ "num_files": "4",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000066/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Fujisawa, Shigeyoshi; Amarasingham, Asohan; Harrison, Matthew; Buzs\u00e1ki, Gy\u00f6rgy (2022) Behavior-dependent short-term assembly dynamics in the medial prefrontal cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000067/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/nn.2134",
+ "file_0": "https://api.dandiarchive.org/api/assets/ee7ccc96-3eac-484f-9cc3-2845fee5138b/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/19691835-bb2e-4aff-ad3e-a7c29407c81e/download/",
+ "file_size_0": "5548677.0",
+ "file_size_1": "5300466110.0",
+ "identifier": "DANDI:000067",
+ "keywords": "[]",
+ "name": "Behavior-dependent short-term assembly dynamics in the medial prefrontal cortex",
+ "num_bytes": "94565736755",
+ "num_files": "28",
+ "numb_subjects": "3.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-EE",
+ "parent_folder_1": "sub-GG",
+ "schemaKey": "Dandiset",
+ "species": "Brown rat",
+ "url": "https://dandiarchive.org/dandiset/000067/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['LFP', 'ProcessingModule', 'Units', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Testing (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000068/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/8771aac6-7eb9-4cc5-a1cf-2f0ed366e240/download/",
+ "file_1": "",
+ "file_size_0": "181224.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000068",
+ "keywords": "[]",
+ "name": "Testing",
+ "num_bytes": "362448",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-abcd",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000068/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['VoltageClampSeries', 'CurrentClampStimulusSeries', 'CurrentClampSeries', 'VoltageClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "testing_2 (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000069/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/45aead0c-5666-4c1e-b9b3-83ca00dcd883/download/",
+ "file_1": "",
+ "file_size_0": "297607244.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000069",
+ "keywords": "",
+ "name": "testing_2",
+ "num_bytes": "297607244",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.2.2",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-anm106211",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000069/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampSeries', 'PatchClampSeries', 'BehavioralTimeSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Churchland, Mark; Cunningham, John P.; Kaufman, Matthew T.; Foster, Justin D.; Nuyujukian, Paul; Ryu, Stephen I.; Shenoy, Krishna V. (2022) Neural population dynamics during reaching (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000070/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/nature11129",
+ "file_0": "https://api.dandiarchive.org/api/assets/9d89e774-1506-470a-8d4c-d4bdf1261c0f/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/f8c77cfb-1ac5-42f8-b264-18a154ee1f5c/download/",
+ "file_size_0": "3773669430.0",
+ "file_size_1": "4449864980.0",
+ "identifier": "DANDI:000070",
+ "keywords": "[]",
+ "name": "Neural population dynamics during reaching",
+ "num_bytes": "45909708322",
+ "num_files": "9",
+ "numb_subjects": "2.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Jenkins",
+ "parent_folder_1": "sub-Nitschke",
+ "schemaKey": "Dandiset",
+ "species": "Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000070/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['Position', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Brandon's Test Dandiset (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000071/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000071",
+ "keywords": "[]",
+ "name": "Brandon's Test Dandiset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000071/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "neural data (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000072/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000072",
+ "keywords": "[]",
+ "name": "neural data",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000072/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Chung, Kwanghun; Kamentsky, Lee (2022) MGH19-1-021520 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000105/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Brain Imaging Data Structure (BIDS)",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000105",
+ "keywords": "[]",
+ "name": "MGH19-1-021520",
+ "num_bytes": "2542027975752",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000105/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Electrophysiology data from simultaneous recordings (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000106/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000106",
+ "keywords": "[]",
+ "name": "Electrophysiology data from simultaneous recordings",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000106/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "IVSCC stimulus sets (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000107/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/d2107928-cf16-43a3-a547-691ae3419de9/download/",
+ "file_1": "",
+ "file_size_0": "39294842.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000107",
+ "keywords": "['electrophysiology', 'MIES ']",
+ "name": "IVSCC stimulus sets",
+ "num_bytes": "39294842",
+ "num_files": "1",
+ "numb_subjects": "",
+ "nwb_version": "2.2.4",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000107/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Kamentsky, Lee; Marx, Slayton; Park, Juhyuk; Su-Arcaro, Clover; Moukheiber, Mira; Zhao, Victor (2023) Light sheet imaging of the human brain (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "https://biccn.github.io/Quarterly_Submission_Receipts/000108-dashboard.html",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000108",
+ "keywords": "[]",
+ "name": "Light sheet imaging of the human brain",
+ "num_bytes": "1",
+ "num_files": "1",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000108/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Institute for Brian Science (2022) Patch-seq recordings from human cortex (June 2021) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000109/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/4a6344f7-e557-41e6-aec2-93e7fff8bd15/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/07e51937-1cb0-41b1-9b3c-af4d277ad9c7/download/",
+ "file_size_0": "12734164.0",
+ "file_size_1": "12858282.0",
+ "identifier": "DANDI:000109",
+ "keywords": "['Patch-seq', 'human', 'neocortex']",
+ "name": "Patch-seq recordings from human cortex (June 2021)",
+ "num_bytes": "14212577893",
+ "num_files": "350",
+ "numb_subjects": "39.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-720619787",
+ "parent_folder_1": "sub-651940947",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000109/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Foobar (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000110/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000110",
+ "keywords": "",
+ "name": "Foobar",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000110/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "ZZZ (2023). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000111/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000111",
+ "keywords": "[]",
+ "name": "ZZZ",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000111/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Test (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000112/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000112",
+ "keywords": "",
+ "name": "Test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000112/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "bla (2022). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000113/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000113",
+ "keywords": "",
+ "name": "bla",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000113/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Carcea, Ioana; Caraballo, Naomi L\u00f3pez; Marlin, Bianca J.; Ooyama, Rumi; Riceberg, Justin S.; Mendoza Navarro, Joyce M.; Opendak, Maya; Diaz, Veronica E.; Schuster, Luisa; Alvarado Torres, Maria I.; Lethin, Harper; Ramos, Daniel; Minder, Jessica; Mendoza, Sebastian L.; Bair-Marshall, Chloe J.; Samadjopoulos, Grace H.; Hidema, Shizu; Falkner, Annegret; Lin, Dayu; Mar, Adam; Wadghiri, Youssef Z.; Nishimori, Katsuhiko; Kikusui, Takefumi; Mogi, Kazutaka; Sullivan, Regina M.; Froemke, Robert C. (2023) Oxytocin neurons enable social transmission of maternal behaviour (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000114/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41586-021-03814-7",
+ "file_0": "https://api.dandiarchive.org/api/assets/6d3e01db-4f0a-440c-b411-39e7bfb10d96/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/1a1e6b88-5392-453b-9645-c18d30acb876/download/",
+ "file_size_0": "12208792.0",
+ "file_size_1": "13637272.0",
+ "identifier": "DANDI:000114",
+ "keywords": "['oxytocin', 'alloparenting', 'maternal behavior']",
+ "name": "Oxytocin neurons enable social transmission of maternal behaviour",
+ "num_bytes": "306892204866",
+ "num_files": "28",
+ "numb_subjects": "11.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-ROV49",
+ "parent_folder_1": "sub-ROV43",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000114/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'ElectrodeGroup', 'ElectricalSeries', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Gillespie, Anna; Astudillo Maya, Daniela; Denovellis, Eric; Liu, Daniel; Kastner, David; Coulter, Michael; Roumis, Demetris; Frank, Loren (2022) Gillespie et al (2021) Hippocampal replay reflects specific past experiences rather than a plan for subsequent choice (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000115/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.cell.com/neuron/fulltext/S0896-6273(21)00573-0",
+ "file_0": "https://api.dandiarchive.org/api/assets/69db6c2c-f1e1-47ce-abf9-95d9f7fcfa27/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b21fc256-6bfc-470e-8866-ad941408b291/download/",
+ "file_size_0": "89825738868.0",
+ "file_size_1": "90458160392.0",
+ "identifier": "DANDI:000115",
+ "keywords": "[]",
+ "name": "Gillespie et al (2021) Hippocampal replay reflects specific past experiences rather than a plan for subsequent choice",
+ "num_bytes": "9103698757665",
+ "num_files": "57",
+ "numb_subjects": "4.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-despereaux",
+ "parent_folder_1": "sub-jaq",
+ "schemaKey": "Dandiset",
+ "species": "Rat; norway rat; rats; brown rat",
+ "url": "https://dandiarchive.org/dandiset/000115/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectricalSeries', 'Position', 'SpatialSeries', 'BehavioralEvents', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei (2022) Test_upload_LiZhang_SpinalCord (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000116/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000116",
+ "keywords": "[]",
+ "name": "Test_upload_LiZhang_SpinalCord",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000116/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei (2022) 1U01MH116990-01_July_2021 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000117/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/feaa8040-8f0b-47fb-abc2-6d50a434fd13/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/29817159-63a3-4da4-986d-ff751ee1b067/download/",
+ "file_size_0": "213371.0",
+ "file_size_1": "214862.0",
+ "identifier": "DANDI:000117",
+ "keywords": "['spinal cord', 'patch-clamp']",
+ "name": "1U01MH116990-01_July_2021",
+ "num_bytes": "142552658",
+ "num_files": "197",
+ "numb_subjects": "197.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-20210511003-2021-05-11-0012",
+ "parent_folder_1": "sub-20210615003-2021-06-15-0018",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000117/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampStimulusSeries', 'CurrentClampSeries', 'VoltageClampSeries', 'VoltageClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Dichter, Ben (2023) user test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000118/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000118",
+ "keywords": "[]",
+ "name": "user test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000118/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Jarecka, Dorota (2022) ble (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000119/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000119",
+ "keywords": "[]",
+ "name": "ble",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000119/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000120/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000120",
+ "keywords": "",
+ "name": "test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000120/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Even-Chen, Nir; Sheffer, Blue; Vyas, Saurabh; Ryu, Stephen; Shenoy, Krishna (2022) Structure and variability of delay activity in premotor cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000121/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "https://doi.org/10.1371/journal.pcbi.1006808",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000121",
+ "keywords": "[]",
+ "name": "Structure and variability of delay activity in premotor cortex",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000121/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Erat Sleiter, Darin (2022) Human fNIRS recordings of motor cortex during finger-tapping task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000122/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/rob-luke/BIDS-NIRS-Tapping",
+ "file_0": "https://api.dandiarchive.org/api/assets/3af36329-5e0c-4c20-a283-87207b5569f1/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/911c75ab-51b5-4caa-b930-911b89d2c990/download/",
+ "file_size_0": "8818688.0",
+ "file_size_1": "10701512.0",
+ "identifier": "DANDI:000122",
+ "keywords": "['fNIRS', 'Haemodynamics', 'Motor Cortex', 'Finger Tapping Task']",
+ "name": "Human fNIRS recordings of motor cortex during finger-tapping task",
+ "num_bytes": "49898320",
+ "num_files": "5",
+ "numb_subjects": "5.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-P2",
+ "parent_folder_1": "sub-P5",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000122/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Choudhury, Roni (2022) test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000123/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000123",
+ "keywords": "[]",
+ "name": "test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000123/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Choudhury, Roni (2022) footest (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000124/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000124",
+ "keywords": "",
+ "name": "footest",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000124/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Churchland, Mark; Kauffman, Matthew; Cunningham, John; Foster, Justin; Shenoy, Krishna; Ryu, Stephen; Nuyujukian, Paul (2022) Neural population dynamics during reaching: analysis dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000125/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "https://www.nature.com/articles/nature11129",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000125",
+ "keywords": "[]",
+ "name": "Neural population dynamics during reaching: analysis dataset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000125/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Ly, Ryan (2022) NWB API Test Data (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000126/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/e303dfac-48b1-44de-a847-9cf6154d5ad7/download/",
+ "file_1": "",
+ "file_size_0": "36863204.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000126",
+ "keywords": "[]",
+ "name": "NWB API Test Data",
+ "num_bytes": "167058036",
+ "num_files": "5",
+ "numb_subjects": "2.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-1001658946",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000126/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chowdhury, Raeed; Miller, Lee (2022) Area2_Bump: macaque somatosensory area 2 spiking activity during reaching with perturbations (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000127/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.7554/eLife.48198",
+ "file_0": "https://api.dandiarchive.org/api/assets/ded26b6c-418d-43f5-8a37-dfd072c2dbd4/download/",
+ "file_1": "",
+ "file_size_0": "1822876234.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000127",
+ "keywords": "['Neural Latents Benchmark', 'NLB']",
+ "name": "Area2_Bump: macaque somatosensory area 2 spiking activity during reaching with perturbations",
+ "num_bytes": "1823368810",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Han",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000127/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectrodeGroup', 'Units', 'SpatialSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Churchland, Mark; Kaufman, Matthew (2022) MC_Maze: macaque primary motor and dorsal premotor cortex spiking activity during delayed reaching (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000128/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2010.09.015",
+ "file_0": "https://api.dandiarchive.org/api/assets/26e85f09-39b7-480f-b337-278a8f034007/download/",
+ "file_1": "",
+ "file_size_0": "690612247.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000128",
+ "keywords": "['Neural Latents Benchmark', 'NLB']",
+ "name": "MC_Maze: macaque primary motor and dorsal premotor cortex spiking activity during delayed reaching",
+ "num_bytes": "694004935",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Jenkins",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000128/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "O'Doherty, Joseph (2022) MC_RTT: macaque motor cortex spiking activity during self-paced reaching (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000129/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.5281/zenodo.3854034",
+ "file_0": "https://api.dandiarchive.org/api/assets/2ae6bf3c-788b-4ece-8c01-4b4a5680b25b/download/",
+ "file_1": "",
+ "file_size_0": "49764168.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000129",
+ "keywords": "['Neural Latents Benchmark', 'NLB']",
+ "name": "MC_RTT: macaque motor cortex spiking activity during self-paced reaching",
+ "num_bytes": "50965512",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Indy",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000129/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'ElectrodeGroup', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sohn, Hansem; Jazayeri, Mehrdad (2022) DMFC_RSG: macaque dorsomedial frontal cortex spiking activity during time interval reproduction task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000130/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2019.06.012",
+ "file_0": "https://api.dandiarchive.org/api/assets/c90cbccc-31a5-4815-88e6-822d8c5ca68c/download/",
+ "file_1": "",
+ "file_size_0": "14119912.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000130",
+ "keywords": "['Neural Latents Benchmark', 'NLB']",
+ "name": "DMFC_RSG: macaque dorsomedial frontal cortex spiking activity during time interval reproduction task",
+ "num_bytes": "15673496",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Haydn",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000130/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units']",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) Nestdesktop PK (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000131/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000131",
+ "keywords": "",
+ "name": "Nestdesktop PK",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000131/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) Neurex Summer School (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000132/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000132",
+ "keywords": "",
+ "name": "Neurex Summer School",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000132/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) nest dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000133/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000133",
+ "keywords": "",
+ "name": "nest dataset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000133/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) neurex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000134/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000134",
+ "keywords": "",
+ "name": "neurex",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000134/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Durieux, Laura (2022) Test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000135/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000135",
+ "keywords": "",
+ "name": "Test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000135/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) NEST (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000136/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000136",
+ "keywords": "",
+ "name": "NEST",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000136/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) Neurex Summer School 2021 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000137/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000137",
+ "keywords": "",
+ "name": "Neurex Summer School 2021",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000137/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Churchland, Mark; Kaufman, Matthew (2022) MC_Maze_Large: macaque primary motor and dorsal premotor cortex spiking activity during delayed reaching (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000138/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2010.09.015",
+ "file_0": "https://api.dandiarchive.org/api/assets/e67b57b2-e9ad-4d95-b9e3-1262997360dc/download/",
+ "file_1": "",
+ "file_size_0": "148590536.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000138",
+ "keywords": "['Neural Latents Benchmark', 'NLB']",
+ "name": "MC_Maze_Large: macaque primary motor and dorsal premotor cortex spiking activity during delayed reaching",
+ "num_bytes": "149392888",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Jenkins",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000138/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Churchland, Mark; Kaufman, Matthew (2022) MC_Maze_Medium: macaque primary motor and dorsal premotor cortex spiking activity during delayed reaching (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000139/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2010.09.015",
+ "file_0": "https://api.dandiarchive.org/api/assets/7ef450a8-8684-42e2-8598-cd38ca2b2e50/download/",
+ "file_1": "",
+ "file_size_0": "76604764.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000139",
+ "keywords": "['Neural Latents Benchmark', 'NLB']",
+ "name": "MC_Maze_Medium: macaque primary motor and dorsal premotor cortex spiking activity during delayed reaching",
+ "num_bytes": "77300692",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Jenkins",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000139/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Churchland, Mark; Kaufman, Matthew (2022) MC_Maze_Small: macaque primary motor and dorsal premotor cortex spiking activity during delayed reaching (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000140/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2010.09.015",
+ "file_0": "https://api.dandiarchive.org/api/assets/7821971e-c6a4-4568-8773-1bfa205c13f8/download/",
+ "file_1": "",
+ "file_size_0": "29207528.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000140",
+ "keywords": "['Neural Latents Benchmark', 'NLB']",
+ "name": "MC_Maze_Small: macaque primary motor and dorsal premotor cortex spiking activity during delayed reaching",
+ "num_bytes": "29896840",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Jenkins",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000140/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) TravelingDirection_2021 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000141/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000141",
+ "keywords": "[]",
+ "name": "TravelingDirection_2021",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000141/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "20210923_AIBS_Patchseq_human (2023). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000142/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/7efbccf6-b551-4919-a2a2-00790d80bedc/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/1eec66c2-c7f4-4c43-8204-c9e5fbc09f8d/download/",
+ "file_size_0": "12718334.0",
+ "file_size_1": "13486304.0",
+ "identifier": "DANDI:000142",
+ "keywords": "['Patch-seq', 'human', 'neocortical']",
+ "name": "20210923_AIBS_Patchseq_human",
+ "num_bytes": "26800026646",
+ "num_files": "717",
+ "numb_subjects": "68.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-707724503",
+ "parent_folder_1": "sub-643277950",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000142/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "DeLorenzo, Lauren (2022) IHC Validation Data (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000143/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Brain Imaging Data Structure (BIDS)",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000143",
+ "keywords": "[]",
+ "name": "IHC Validation Data",
+ "num_bytes": "9999341",
+ "num_files": "50",
+ "numb_subjects": "2.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000143/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Roat, Chris (2022) croat-test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000144/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/bd754a60-c4a8-43fc-b514-87eb4511f29d/download/",
+ "file_1": "",
+ "file_size_0": "524476688.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000144",
+ "keywords": "",
+ "name": "croat-test",
+ "num_bytes": "589064856",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-8675309",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000144/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['PlaneSegmentation', 'ProcessingModule', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Roat, Chris (2022) Test 2 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000145/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000145",
+ "keywords": "",
+ "name": "Test 2",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000145/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) NYB (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000146/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000146",
+ "keywords": "",
+ "name": "NYB",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000146/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Guan, Charles; Aflalo, Tyson; Zhang, Carey; Andersen, Richard (2022) PPC_Finger: human posterior parietal cortex recordings during attempted finger movements (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000147/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.7554/eLife.74478",
+ "file_0": "https://api.dandiarchive.org/api/assets/d4c985da-5c04-4c39-874b-0c6e22598716/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/675e49ed-04f2-4281-a4cb-5a1d3363e773/download/",
+ "file_size_0": "5679008.0",
+ "file_size_1": "6101800.0",
+ "identifier": "DANDI:000147",
+ "keywords": "['PPC', 'human', 'finger']",
+ "name": "PPC_Finger: human posterior parietal cortex recordings during attempted finger movements",
+ "num_bytes": "77665528",
+ "num_files": "10",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-P1",
+ "parent_folder_1": "sub-P1",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000147/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei; Tao, Can; Peng, Bo (2022) Electrophysiological properties of adult mouse spinal cord neurons - 01_Oct_2021 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000148/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/96cab2be-2416-4fae-8204-618983fe5fcc/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/89f37b43-76e0-45a3-8c88-3ce7f640016c/download/",
+ "file_size_0": "10259384.0",
+ "file_size_1": "10418248.0",
+ "identifier": "DANDI:000148",
+ "keywords": "[]",
+ "name": "Electrophysiological properties of adult mouse spinal cord neurons - 01_Oct_2021",
+ "num_bytes": "929635440",
+ "num_files": "46",
+ "numb_subjects": "46.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-20210728003",
+ "parent_folder_1": "sub-20210709003",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000148/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampStimulusSeries', 'CurrentClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "International Brain Laboratory (2023) IBL ephys data (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000149/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/31f22c47-1512-4293-b19f-6fa5bd9b7cbf/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/81169999-c697-4eca-a635-2fd994ac183f/download/",
+ "file_size_0": "427174674725.0",
+ "file_size_1": "508083423148.0",
+ "identifier": "DANDI:000149",
+ "keywords": "[]",
+ "name": "IBL ephys data",
+ "num_bytes": "1980839948948",
+ "num_files": "4",
+ "numb_subjects": "4.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-92130c1b-4fdb-4acc-86e0-1853d429c41a",
+ "parent_folder_1": "sub-70bf8cbd-d312-4654-a4ea-3a21ea2f541b",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000149/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['Position', 'Units', 'BehavioralTimeSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) test_release_openscope (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000150/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000150",
+ "keywords": "",
+ "name": "test_release_openscope",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000150/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Lecoq, Jerome (2022) OpenScope_Credit_assignement_raw_test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000151/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000151",
+ "keywords": "",
+ "name": "OpenScope_Credit_assignement_raw_test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000151/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Jarecka, Dorota (2022) test_workshop (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000152/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000152",
+ "keywords": "[]",
+ "name": "test_workshop",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000152/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "H Smith, Elliot (2022) IEDs (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000153/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000153",
+ "keywords": "[]",
+ "name": "IEDs",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000153/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) test dandi workshop (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000154/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000154",
+ "keywords": "[]",
+ "name": "test dandi workshop",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000154/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "denman, daniel (2022) dandi workshop djd (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000155/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000155",
+ "keywords": "",
+ "name": "dandi workshop djd",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000155/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Chrapkiewicz, Radek (2022) dandi workshop to be deleted (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000156/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000156",
+ "keywords": "['mouse']",
+ "name": "dandi workshop to be deleted",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000156/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) xiaoai (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000157/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000157",
+ "keywords": "",
+ "name": "xiaoai",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000157/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "C. Petersen, Peter (2022) My Project (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000158/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000158",
+ "keywords": "",
+ "name": "My Project",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000158/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) dandi workshop (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000159/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000159",
+ "keywords": "[]",
+ "name": "dandi workshop",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000159/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) Test_G (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000160/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000160",
+ "keywords": "",
+ "name": "Test_G",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000160/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) VD Dandi Workshop Test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000161/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000161",
+ "keywords": "[]",
+ "name": "VD Dandi Workshop Test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000161/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) Shin test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000162/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000162",
+ "keywords": "",
+ "name": "Shin test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000162/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) xx (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000163/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000163",
+ "keywords": "[]",
+ "name": "xx",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000163/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000164/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000164",
+ "keywords": "",
+ "name": "test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000164/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Aery Jones, Emily; Rao, Antara; Zilberter, Misha; Djukic, Biljana; Gillespie, Anna K.; Koutsodendris, Nicole; Nelson, Maxine; Yoon, Seo Yeon; Huang, Ky; Yuan, Heidi; Gill, Theodore M.; Huang, Yadong; Frank, Loren M. (2022) Aery Jones et al (2021) Dentate Gyrus and CA3 GABAergic Interneurons Bidirectionally Modulate Signatures of Internal and External Drive to CA1 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000165/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.biorxiv.org/content/10.1101/2021.01.04.425303v1",
+ "file_0": "https://api.dandiarchive.org/api/assets/b560b456-3473-42dd-9fe2-e7f3cc506731/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e3a976f9-505f-477f-8ab8-db901dc606b6/download/",
+ "file_size_0": "47934248.0",
+ "file_size_1": "51799120.0",
+ "identifier": "DANDI:000165",
+ "keywords": "['hippocampus', 'mouse', 'LFP']",
+ "name": "Aery Jones et al (2021) Dentate Gyrus and CA3 GABAergic Interneurons Bidirectionally Modulate Signatures of Internal and External Drive to CA1",
+ "num_bytes": "98043538088",
+ "num_files": "572",
+ "numb_subjects": "64.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Parsley",
+ "parent_folder_1": "sub-Sage",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000165/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'Position', 'LFP', 'SpatialSeries', 'ElectricalSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Senzai, Yuta; Fernandez-Ruiz, Antonio; Buzs\u00e1ki, Gy\u00f6rgy (2022) Layer-Specific Physiological Features and Interlaminar Interactions in the Primary Visual Cortex of the Mouse (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000166/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2018.12.009",
+ "file_0": "https://api.dandiarchive.org/api/assets/b1ec6d4d-7182-4ed2-b325-bd0b4c6bb610/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b5a9c084-c5e0-40cf-b131-0b500f7e8e6b/download/",
+ "file_size_0": "15447354046.0",
+ "file_size_1": "19226125185.0",
+ "identifier": "DANDI:000166",
+ "keywords": "['current source density ', 'laminar recordings ', 'cortex', 'electrophysiology']",
+ "name": "Layer-Specific Physiological Features and Interlaminar Interactions in the Primary Visual Cortex of the Mouse",
+ "num_bytes": "787191910918",
+ "num_files": "19",
+ "numb_subjects": "19.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-YMV02",
+ "parent_folder_1": "sub-YMV03",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000166/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectrodeGroup', 'Units', 'LFP']",
+ "version": "draft"
+ },
+ {
+ "citation": "Daste, Simon; Pierr\u00e9, Andrea; Pham, Tuan (2023) Two photon calcium imaging of mice piriform cortex under passive odor presentation (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000167/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/4b934f5d-bb2c-425e-ac99-bb40f22302ae/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3b16b193-7afa-4479-ad5d-cfb09f5f6776/download/",
+ "file_size_0": "190534208.0",
+ "file_size_1": "201350180.0",
+ "identifier": "DANDI:000167",
+ "keywords": "[]",
+ "name": "Two photon calcium imaging of mice piriform cortex under passive odor presentation",
+ "num_bytes": "1218408045",
+ "num_files": "6",
+ "numb_subjects": "5.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-7",
+ "parent_folder_1": "sub-164",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000167/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['PlaneSegmentation', 'ProcessingModule', 'ImagingPlane', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Rozsa, Marton; Liang, Yajie; Zhang, Yan; Hasseman, Jeremy; Kolb, Ilya; Looger, Loren; Svoboda, Karel; HHMI (2022) Simultaneous loose seal cell-attached recordings and two-photon imaging of GCaMP8 expressing mouse V1 neurons with drifting gratings visual stimuli (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000168/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.janelia.org/jgcamp8-calcium-indicators",
+ "file_0": "https://api.dandiarchive.org/api/assets/026e2006-8779-4d04-83db-7590b47c1afa/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/c442f0bf-49e1-46b8-b9c8-e9d1d7cdcc35/download/",
+ "file_size_0": "1430990302.0",
+ "file_size_1": "1709176977.0",
+ "identifier": "DANDI:000168",
+ "keywords": "['2-photon', 'visual cortex', 'calcium', 'spike', 'action potential', 'layer 2', 'AAV', 'adeno-associated virus', 'jGCaMP8s', 'jGCaMP8m', 'jGCaMP8f', 'jGCaMP7f', 'XCaMP-Gf']",
+ "name": "Simultaneous loose seal cell-attached recordings and two-photon imaging of GCaMP8 expressing mouse V1 neurons with drifting gratings visual stimuli",
+ "num_bytes": "1379111602445",
+ "num_files": "170",
+ "numb_subjects": "30.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "XCaMPgf",
+ "parent_folder_1": "jGCaMP8f",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000168/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['PlaneSegmentation', 'CurrentClampStimulusSeries', 'CurrentClampSeries', 'TwoPhotonSeries', 'ProcessingModule', 'VoltageClampStimulusSeries', 'VoltageClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) Milti-probe Neuropixels recordings in mouse visual system (additional data) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000169/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000169",
+ "keywords": "[]",
+ "name": "Milti-probe Neuropixels recordings in mouse visual system (additional data)",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000169/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": ", (2022) CRACK (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000170/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000170",
+ "keywords": "",
+ "name": "CRACK",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000170/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Yu, Kai (2022) Test 1 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000171/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000171",
+ "keywords": "",
+ "name": "Test 1",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000171/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Howard, Derek; Chameh, Homeira Moradi; Valiante, Taufik; Tripathy, Shreejoy (2022) UHN whole-cell excitability recordings from mouse cortical neurons (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000172/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000172",
+ "keywords": "['excitability', 'cortex', 'mouse']",
+ "name": "UHN whole-cell excitability recordings from mouse cortical neurons",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000172/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Ramachandran, Sandhya; Carnegie Mellon University; Niu, Xiaodan; Yu, Kai; He, Bin (2022) Neural Spiking Data in Primary Somatosensory Cortex before and after Transcranial Focused Ultrasound Stimulation in Rats (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000173/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/748b0311-ec11-49ef-a9c2-e7b1afef72dc/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/cebb65cf-e933-470d-87b4-6660eac86b3e/download/",
+ "file_size_0": "181576.0",
+ "file_size_1": "277680.0",
+ "identifier": "DANDI:000173",
+ "keywords": "['Ultrasound', 'Plasticity', 'Rat', 'tFUS', 'Somatosensory Cortex']",
+ "name": "Neural Spiking Data in Primary Somatosensory Cortex before and after Transcranial Focused Ultrasound Stimulation in Rats",
+ "num_bytes": "240963992",
+ "num_files": "118",
+ "numb_subjects": "30.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-BH279",
+ "parent_folder_1": "sub-BH269",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000173/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Smith, Spencer; McGreal, Ryan; Canzano, Joseph (2022) Visual cortical activity in mice performing naturalistic virtual foraging task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000206/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/e0e142bc-cf1e-4a38-8d24-b54111c404db/download/",
+ "file_1": "",
+ "file_size_0": "118359600.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000206",
+ "keywords": "[]",
+ "name": "Visual cortical activity in mice performing naturalistic virtual foraging task",
+ "num_bytes": "118359600",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-TIGRE296",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "House mouse",
+ "url": "https://dandiarchive.org/dandiset/000206/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['SpatialSeries', 'ImagingPlane', 'Position', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zheng, Jie; Schjetnan, Andrea; Yebra, Mar; Gomes, Bernard; Mosher, Clayton; Kalia, Suneil; Valiante, Taufik; Mamelak, Adam; Kreiman, Gabriel; Rutishauser, Ueli (2023) Data for: Neurons detect cognitive boundaries to structure episodic memories in humans (Zheng et al., 2022, Nat Neuro in press) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000207/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/rutishauserlab/cogboundary-zheng",
+ "file_0": "https://api.dandiarchive.org/api/assets/88e33ca7-2e46-411f-8f5f-1826dfef5bbc/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/22a64207-e573-4324-99ae-345f8a71b7b9/download/",
+ "file_size_0": "1388774.0",
+ "file_size_1": "1452920.0",
+ "identifier": "DANDI:000207",
+ "keywords": "['human single neuron', 'hippocampus', 'episodic memory', 'event segmentation', 'amygdala', 'parahippocampal gyrus', 'cognitive boundaries', 'continuous experience', 'ROH consortium']",
+ "name": "Data for: Neurons detect cognitive boundaries to structure episodic memories in humans (Zheng et al., 2022, Nat Neuro in press)",
+ "num_bytes": "50310106",
+ "num_files": "19",
+ "numb_subjects": "19.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-6",
+ "parent_folder_1": "sub-10",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000207/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ElectrodeGroup', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": ", Derek (2022) UHN_mouse_L5_patchclamp (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000208/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000208",
+ "keywords": "",
+ "name": "UHN_mouse_L5_patchclamp",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000208/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Wakeman, Wayne; Kalmbach, Brian; Lein, Ed; Chartrand, Thomas (2023) 20211223_AIBS_Patchseq_human (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000209/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/2d665bd8-9b7b-4315-be44-cc48fb91a4a7/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/10e78b16-a771-44e4-bd9a-395cade15c84/download/",
+ "file_size_0": "16441034.0",
+ "file_size_1": "19025257.0",
+ "identifier": "DANDI:000209",
+ "keywords": "['Patch-seq', 'human', 'neocortical']",
+ "name": "20211223_AIBS_Patchseq_human",
+ "num_bytes": "11109213211",
+ "num_files": "291",
+ "numb_subjects": "67.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-731978186",
+ "parent_folder_1": "sub-1032184063",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000209/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Canzano, Joe (2022) Visual cortical activity in mice performing naturalistic virtual foraging task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000210/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000210",
+ "keywords": "",
+ "name": "Visual cortical activity in mice performing naturalistic virtual foraging task",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000210/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Howard, Derek; Chameh, Homeira Moradi; Valiante, Taufik; Tripathy, Shreejoy (2022) UHN whole-cell excitability recordings from human cortical neurons (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000211/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000211",
+ "keywords": "['excitability', 'human', 'cortex']",
+ "name": "UHN whole-cell excitability recordings from human cortical neurons",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000211/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Vijayan, Vikram; Maimon, Gaby (2023) Tracking of Drosophila during egg-laying decisions (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000212/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.biorxiv.org/content/10.1101/2021.09.23.461548v1",
+ "file_0": "https://api.dandiarchive.org/api/assets/b53cc570-a02b-41c8-bce2-7351816b76b2/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/8a916887-b90e-4de4-9895-e2bed5adaf1b/download/",
+ "file_size_0": "7162088.0",
+ "file_size_1": "7162088.0",
+ "identifier": "DANDI:000212",
+ "keywords": "['Drosophila', 'egg laying', 'flies', 'decision making', 'internal expectation']",
+ "name": "Tracking of Drosophila during egg-laying decisions",
+ "num_bytes": "9004401256",
+ "num_files": "1013",
+ "numb_subjects": "1097.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-0-200-Dop1R2-mutant-2-fly#-21",
+ "parent_folder_1": "sub-0-200-Dop1R2-mutant-2-fly#-20",
+ "schemaKey": "Dandiset",
+ "species": "Drosophila melanogaster - Fruit fly",
+ "url": "https://dandiarchive.org/dandiset/000212/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Position', 'ProcessingModule', 'SpatialSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Tingley, David; Buzs\u00e1ki, Gy\u00f3rgy (2022) Transformation of a Spatial Map across the Hippocampal-Lateral Septal Circuit (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000213/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2018.04.028",
+ "file_0": "https://api.dandiarchive.org/api/assets/d09a9733-41d8-4696-86bb-e041668247b6/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/1d183c70-082d-4ce8-b017-05620cc9254f/download/",
+ "file_size_0": "746951321.0",
+ "file_size_1": "826172507.0",
+ "identifier": "DANDI:000213",
+ "keywords": "['hippocampus', 'lateral septum', 'electrophysiology']",
+ "name": "Transformation of a Spatial Map across the Hippocampal-Lateral Septal Circuit",
+ "num_bytes": "1527009268863",
+ "num_files": "67",
+ "numb_subjects": "5.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-DT7",
+ "parent_folder_1": "sub-DT5",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000213/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['Position', 'CompassDirection', 'ElectricalSeries', 'LFP', 'Units', 'SpatialSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei (2022) Jan_2022_DANDI (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000214/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000214",
+ "keywords": "",
+ "name": "Jan_2022_DANDI",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000214/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei (2022) 1U01MH116990-01_Jan_2022 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000215/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000215",
+ "keywords": "['spinal cord ']",
+ "name": "1U01MH116990-01_Jan_2022",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000215/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei (2022) 1U01MH116990-01_Jan_2022 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000216/draft",
+ "dandiset_schemaver": "0.6.0",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000216",
+ "keywords": "",
+ "name": "1U01MH116990-01_Jan_2022",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000216/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Findley, Teresa; Wyrick, David G; Cramer, Jennifer L; Brown, Morgan A; Holcomb, Blake; Attey, Robin; Yeh, Dorian; Monasevitch, Eric; Nouboussi, Nelly; Cullen, Isabelle; Songco, Jeremea O; King, Jared F; Ahmadian, Yashar; Smear, Matt (2022) Sniff-synchronized, gradient-guided olfactory search by freely moving mice -- Behavioral Dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000217/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/32be659d-80fa-4021-8d6e-4b8cb7e21c2c/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d3e786a8-787c-4a80-9dd6-ffeca84a8577/download/",
+ "file_size_0": "176656.0",
+ "file_size_1": "178040.0",
+ "identifier": "DANDI:000217",
+ "keywords": "[]",
+ "name": "Sniff-synchronized, gradient-guided olfactory search by freely moving mice -- Behavioral Dataset",
+ "num_bytes": "2152038728",
+ "num_files": "1121",
+ "numb_subjects": "25.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Mouse 2071",
+ "parent_folder_1": "sub-Mouse 2083",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000217/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Tingley, David; Buz\u00e1ki, Gy\u00f3rgy (2022) Routing of Hippocampal Ripples to Subcortical Structures via the Lateral Septum (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000218/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2019.10.012",
+ "file_0": "https://api.dandiarchive.org/api/assets/a6cf3b13-1220-415c-93ad-05d0eeff0f46/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/5eb882bd-9242-47bd-bcd0-da548afe01d1/download/",
+ "file_size_0": "570687864.0",
+ "file_size_1": "638461522.0",
+ "identifier": "DANDI:000218",
+ "keywords": "['hippocampus', 'lateral septum', 'electrophyisology']",
+ "name": "Routing of Hippocampal Ripples to Subcortical Structures via the Lateral Septum",
+ "num_bytes": "1512863479850",
+ "num_files": "98",
+ "numb_subjects": "6.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-DT7",
+ "parent_folder_1": "sub-DT5",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000218/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['LFP', 'Units', 'ProcessingModule', 'Position', 'CompassDirection', 'ElectricalSeries', 'SpatialSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Dard, Robin (2022) Two photon calcium imaging in the CA1 region of the hippocampus in neonatal mice (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000219/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://gitlab.com/cossartlab/cicada",
+ "file_0": "https://api.dandiarchive.org/api/assets/30aee0ab-a751-4646-9e13-6032be28a0df/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/113a60b6-bfde-4c63-b4cf-10a7821b48c5/download/",
+ "file_size_0": "813606536.0",
+ "file_size_1": "814665568.0",
+ "identifier": "DANDI:000219",
+ "keywords": "[]",
+ "name": "Two photon calcium imaging in the CA1 region of the hippocampus in neonatal mice.",
+ "num_bytes": "73147035938",
+ "num_files": "62",
+ "numb_subjects": "35.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-210226-210308-1",
+ "parent_folder_1": "sub-210226-210307-1",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000219/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['BehavioralEpochs', 'PlaneSegmentation', 'BehavioralTimeSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei; Tao, Can; Peng, Bo (2022) Electrophysiological properties of adult mouse spinal cord neurons - 25_Jan_2022 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000220/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/55463159-6466-48ac-9a7d-c05e2624ef3f/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/161cdf76-8cd7-45ce-9551-6a0d15870edf/download/",
+ "file_size_0": "12180936.0",
+ "file_size_1": "12436704.0",
+ "identifier": "DANDI:000220",
+ "keywords": "[]",
+ "name": "Electrophysiological properties of adult mouse spinal cord neurons - 25_Jan_2022",
+ "num_bytes": "1202846808",
+ "num_files": "34",
+ "numb_subjects": "34.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-20190117002",
+ "parent_folder_1": "sub-20190315001",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000220/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Inagaki, Hidehiko; Chen, Susu; Svoboda, Karel (2022) A midbrain-thalamus-cortex circuit reorganizes cortical dynamics to initiate movement (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000221/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/f02ab674-44f5-4c87-8679-04fa049c7674/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/de094939-990a-4d6e-af29-dde24936420c/download/",
+ "file_size_0": "409380.0",
+ "file_size_1": "878128.0",
+ "identifier": "DANDI:000221",
+ "keywords": "['Midbrain', 'ALM', 'motor planning', 'movement initiation']",
+ "name": "A midbrain-thalamus-cortex circuit reorganizes cortical dynamics to initiate movement",
+ "num_bytes": "4422550232",
+ "num_files": "263",
+ "numb_subjects": "44.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-HI204",
+ "parent_folder_1": "sub-SC020",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000221/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['SpikeEventSeries', 'ElectrodeGroup', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "O'Hare, Justin (2022) O'Hare et al 2022 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000222/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000222",
+ "keywords": "['neuroscience, dendrites, hippocampus, mouse, plasticity, endoplasmic reticulum, calcium']",
+ "name": "O'Hare et al 2022",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000222/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Xue, Xiaohan; Buccino, Alessio; Kumar, Sreedhar Saseendran; Hierlemann, Andreas; Bartram, Julian (2022) Inferring monosynaptic connections from paired spine calcium imaging and large-scale recording of extracellular spiking (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000223/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/fb94eaba-e919-42f6-b52c-b76a0c4f0124/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/99f4fea1-6713-4f6f-aaac-58ea3ef4e326/download/",
+ "file_size_0": "2985471423.0",
+ "file_size_1": "3265539687.0",
+ "identifier": "DANDI:000223",
+ "keywords": "['calcium imaging; extracellular recordings; HD-MEA; spike sorting; dendritic spines']",
+ "name": "Inferring monosynaptic connections from paired spine calcium imaging and large-scale recording of extracellular spiking",
+ "num_bytes": "84273722669",
+ "num_files": "20",
+ "numb_subjects": "10.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-2763",
+ "parent_folder_1": "sub-2765",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000223/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['PlaneSegmentation', 'ElectrodeGroup', 'ProcessingModule', 'ElectricalSeries', 'TwoPhotonSeries', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Khoury, Christine (2022) Neural and behavioral (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000225/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000225",
+ "keywords": "",
+ "name": "Neural and behavioral",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000225/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Severson, Kyle; Xu, Duo; Van de Loo, Margaret; Bai, Ling; Ginty, David D; O'Connor, Daniel H (2023) Active Touch and Self-Motion Encoding by Merkel Cell-Associated Afferents (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000226/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2017.03.045",
+ "file_0": "https://api.dandiarchive.org/api/assets/9c90c18a-8e66-4644-a402-e5f849fc08a1/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/0cfad5c5-e44b-424d-bffc-da64ac30fe12/download/",
+ "file_size_0": "19478669.0",
+ "file_size_1": "19875258.0",
+ "identifier": "DANDI:000226",
+ "keywords": "[]",
+ "name": "Active Touch and Self-Motion Encoding by Merkel Cell-Associated Afferents",
+ "num_bytes": "13745152235",
+ "num_files": "60",
+ "numb_subjects": "43.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-KSt91",
+ "parent_folder_1": "sub-KSt119",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000226/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'BehavioralTimeSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Liu, Qili (2022) Electrophysiological recordings in protein hunger neurons of Drosophila Melanogaster (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000227/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000227",
+ "keywords": "",
+ "name": "Electrophysiological recordings in protein hunger neurons of Drosophila Melanogaster",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000227/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Chartrand, Thomas; Kalmbach, Brian; Molnar, Gabor; Tamas, Gabor; Lein, Ed (2022) 20220330_AIBS_Patchseq_human (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000228/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/bdc5f608-caa8-4ac0-a70d-b03a1739ba66/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e42540ff-da70-4dfa-aa9e-05b8512e1e20/download/",
+ "file_size_0": "35664947.0",
+ "file_size_1": "43369982.0",
+ "identifier": "DANDI:000228",
+ "keywords": "['Patch-seq', 'human', 'neocortical']",
+ "name": "20220330_AIBS_Patchseq_human",
+ "num_bytes": "5816158527",
+ "num_files": "91",
+ "numb_subjects": "64.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-H18-28-022",
+ "parent_folder_1": "sub-H20-28-022",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000228/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampStimulusSeries', 'CurrentClampSeries', 'VoltageClampStimulusSeries', 'VoltageClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Findley, Teresa (2022) xxx (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000229/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000229",
+ "keywords": "",
+ "name": "xxx",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000229/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Jacobsen, R Irene; Nair, Rajeevkumar R; Obenhaus, Horst A; Donato, Flavio; Slettmoen, Torstein; Moser, May-Britt; Moser, Edvard I (2022) Jacobsen 2022 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000230/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.biorxiv.org/content/10.1101/2021.10.18.464781v1",
+ "file_0": "https://api.dandiarchive.org/api/assets/a8f7ef2e-c311-44d8-a72b-2d7bc7e5dc09/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d8e0ccfb-fc0d-4fd2-8b26-be8f187cc2c0/download/",
+ "file_size_0": "24292776.0",
+ "file_size_1": "25503504.0",
+ "identifier": "DANDI:000230",
+ "keywords": "[]",
+ "name": "Jacobsen 2022",
+ "num_bytes": "244968456",
+ "num_files": "9",
+ "numb_subjects": "2.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-70375",
+ "parent_folder_1": "sub-58313",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000230/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['CompassDirection', 'Units', 'ElectrodeGroup', 'SpatialSeries', 'ElectricalSeries', 'BehavioralTimeSeries', 'ProcessingModule', 'LFP', 'Position']",
+ "version": "draft"
+ },
+ {
+ "citation": "Rodgers, Chris (2022) A detailed behavioral, videographic, and neural dataset on object recognition in mice (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000231/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.biorxiv.org/content/10.1101/2022.05.10.491259v1",
+ "file_0": "https://api.dandiarchive.org/api/assets/2374f6b9-babe-4fbd-8cca-df4f8b4ec4c0/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d45acf3d-aaa9-4f70-ae5d-f70cbc411950/download/",
+ "file_size_0": "378693769.0",
+ "file_size_1": "382857597.0",
+ "identifier": "DANDI:000231",
+ "keywords": "['mouse behavior', 'whisker system', 'somatosensory cortex', 'barrel cortex', 'object recognition', 'shape discrimination', 'electrophysiology', 'pose tracking', 'population recordings', 'single unit recordings']",
+ "name": "A detailed behavioral, videographic, and neural dataset on object recognition in mice",
+ "num_bytes": "1996516623953",
+ "num_files": "4228",
+ "numb_subjects": "15.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-KF119",
+ "parent_folder_1": "sub-219CR",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000231/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['BehavioralTimeSeries', 'BehavioralEvents', 'ProcessingModule', 'Units', 'ElectrodeGroup', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chang, Yi-Ting; OConnor, Daniel H (2022) Rule-based modulation of a sensorimotor transformation across cortical areas (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000232/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/a1bf6c0a-f424-4491-84b6-596852a2fcae/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/a4385201-8913-442c-ba03-41150bf4172d/download/",
+ "file_size_0": "280117817.0",
+ "file_size_1": "284267410.0",
+ "identifier": "DANDI:000232",
+ "keywords": "[]",
+ "name": "Rule-based modulation of a sensorimotor transformation across cortical areas",
+ "num_bytes": "36639903614",
+ "num_files": "86",
+ "numb_subjects": "13.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-JL005",
+ "parent_folder_1": "sub-YT071",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000232/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['LFP', 'Units', 'BehavioralTimeSeries', 'ElectrodeGroup', 'ProcessingModule', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Tingley, David; McClain, Kathryn; Kaya, Ekin; Carpenter, Jordan; Buzs\u00e1ki, Gy\u00f6rgy (2023) A metabolic function of the hippocampal sharp wave-ripple (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000233/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41586-021-03811-w",
+ "file_0": "https://api.dandiarchive.org/api/assets/7acfe0c2-1fc1-4060-a423-25ebdd0b3a11/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/80ea45a5-c84c-4b18-aa1d-d9f6b4658c35/download/",
+ "file_size_0": "18217099.0",
+ "file_size_1": "19755519.0",
+ "identifier": "DANDI:000233",
+ "keywords": "['glucose', 'ecephys ', 'pharmacology']",
+ "name": "A metabolic function of the hippocampal sharp wave-ripple",
+ "num_bytes": "12320920243380",
+ "num_files": "345",
+ "numb_subjects": "25.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-CGM57",
+ "parent_folder_1": "sub-CGM41",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000233/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'ProcessingModule', 'LFP', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Haesemeyer, Martin; Balakrishnan, Kaarthik (2023) Thermoregulatory Responses Forebrain (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000235/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/755f13af-6bc4-4ce6-befe-a3a9af65ca42/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/af99ab20-fa1f-4730-b706-8327f2ca48e2/download/",
+ "file_size_0": "3665589468.0",
+ "file_size_1": "3730012683.0",
+ "identifier": "DANDI:000235",
+ "keywords": "[]",
+ "name": "Thermoregulatory Responses Forebrain",
+ "num_bytes": "30614343676",
+ "num_files": "8",
+ "numb_subjects": "8.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Fish41-GCaMP-vlgut-FBv-7dpf-RandomWave",
+ "parent_folder_1": "sub-Fish01-GCaMP-vlgut-FBd-5dpf-RandomWave",
+ "schemaKey": "Dandiset",
+ "species": "Danio rerio - Zebra fish",
+ "url": "https://dandiarchive.org/dandiset/000235/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['OpticalChannel', 'PlaneSegmentation', 'TwoPhotonSeries', 'ProcessingModule', 'BehavioralTimeSeries', 'ImagingPlane']",
+ "version": "draft"
+ },
+ {
+ "citation": "Haesemeyer, Martin; Balakrishnan, Kaarthik (2023) Thermoregulatory Responses Midbrain (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/cf01f553-d1cb-46bf-a7cb-34df72a31270/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/f4863a7b-d9d2-402d-911e-b4a57acde6c3/download/",
+ "file_size_0": "3842846761.0",
+ "file_size_1": "3863743330.0",
+ "identifier": "DANDI:000236",
+ "keywords": "[]",
+ "name": "Thermoregulatory Responses Midbrain",
+ "num_bytes": "39306115613",
+ "num_files": "9",
+ "numb_subjects": "9.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Fish10-GCaMP-vlgut-MBv-6dpf-RandomWave",
+ "parent_folder_1": "sub-Fish35-GCaMP-vlgut-MBv-7dpf-RandomWave",
+ "schemaKey": "Dandiset",
+ "species": "Danio rerio - Zebra fish",
+ "url": "https://dandiarchive.org/dandiset/000236/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['BehavioralTimeSeries', 'TwoPhotonSeries', 'ImagingPlane', 'ProcessingModule', 'PlaneSegmentation', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Haesemeyer, Martin (2023) Thermoregulatory Responses Hindbrain (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/26d193cf-8221-4a50-b245-62d360886b6b/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/ea91a6f4-43d6-4896-96d9-b44080b72f09/download/",
+ "file_size_0": "3558473084.0",
+ "file_size_1": "3574525861.0",
+ "identifier": "DANDI:000237",
+ "keywords": "[]",
+ "name": "Thermoregulatory Responses Hindbrain",
+ "num_bytes": "30057962408",
+ "num_files": "8",
+ "numb_subjects": "8.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Fish39-GCaMP-vlgut-HBv-6dpf-RandomWave",
+ "parent_folder_1": "sub-Fish34-GCaMP-vlgut-HBv-6dpf-RandomWave",
+ "schemaKey": "Dandiset",
+ "species": "Danio rerio - Zebra fish",
+ "url": "https://dandiarchive.org/dandiset/000237/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['OpticalChannel', 'TwoPhotonSeries', 'PlaneSegmentation', 'ImagingPlane', 'ProcessingModule', 'BehavioralTimeSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Haesemeyer, Martin; Schwinn, Sina (2023) Thermoregulatory Responses Reticulospinal system (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000238/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/e73a0035-b46e-4a31-af1b-a921787bf920/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/4a2deb04-08b1-46f3-8faa-638d075d2180/download/",
+ "file_size_0": "3694928512.0",
+ "file_size_1": "4240291762.0",
+ "identifier": "DANDI:000238",
+ "keywords": "[]",
+ "name": "Thermoregulatory Responses Reticulospinal system",
+ "num_bytes": "25911936112",
+ "num_files": "6",
+ "numb_subjects": "6.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-RSpinal-Random-Wave-07",
+ "parent_folder_1": "sub-RSpinal-Random-Wave-03",
+ "schemaKey": "Dandiset",
+ "species": "Danio rerio - Zebra fish",
+ "url": "https://dandiarchive.org/dandiset/000238/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['OpticalChannel', 'BehavioralTimeSeries', 'TwoPhotonSeries', 'PlaneSegmentation', 'ImagingPlane', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Xu, Duo; Chen, Yuxi; Dong, Mingyuan; Delgado, Angel M; Hughes, Natasha C; Zhang, Linghua; O'Connor, Daniel H (2023) Cortical processing of flexible and context-dependent sensorimotor sequences (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000239/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1038/s41586-022-04478-7",
+ "file_0": "https://api.dandiarchive.org/api/assets/656d2d9f-01f5-41b7-8703-31a6a0840302/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/05096d27-a83c-427d-b88a-3801bcf9e63a/download/",
+ "file_size_0": "253960.0",
+ "file_size_1": "258568.0",
+ "identifier": "DANDI:000239",
+ "keywords": "[]",
+ "name": "Cortical processing of flexible and context-dependent sensorimotor sequences",
+ "num_bytes": "11769901909",
+ "num_files": "754",
+ "numb_subjects": "33.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-MX180602",
+ "parent_folder_1": "sub-MX180804",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000239/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['BehavioralTimeSeries', 'Units', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Jarecka, Dorota (2022) ngff testing (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000241/draft",
+ "dandiset_schemaver": "0.6.2",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000241",
+ "keywords": "[]",
+ "name": "ngff testing",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000241/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Johnson, G Allan; Calabrese, Evan; Ghosh, Satrajit (2022) MRI of human ex vivo brainstem (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000243/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Brain Imaging Data Structure (BIDS)",
+ "doi_link": "https://doi.org/10.1002/hbm.22836",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000243",
+ "keywords": "[]",
+ "name": "MRI of human ex vivo brainstem",
+ "num_bytes": "3055089259",
+ "num_files": "4",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000243/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "O'Connor, Dave (2022) One photon mesoscale calcium imaging of multiple cell types (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000244/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/8420222a-8235-4949-aa44-753769bac2e1/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/24e54481-ac6d-47d0-bfa8-38f10249520a/download/",
+ "file_size_0": "26857226727.0",
+ "file_size_1": "27559335961.0",
+ "identifier": "DANDI:000244",
+ "keywords": "[]",
+ "name": "One photon mesoscale calcium imaging of multiple cell types",
+ "num_bytes": "1068310244612",
+ "num_files": "33",
+ "numb_subjects": "25.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-PV05",
+ "parent_folder_1": "sub-VIP11",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000244/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ImagingPlane', 'TwoPhotonSeries', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei; Tao, Can (2022) Electrophysiological properties of adult mouse spinal cord neurons - 22Q1_Ephys_DANDI (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000245/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/2ff065c2-9991-4b46-a4d6-474f602b891e/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/a8bec861-62fa-4f23-bd8a-5cdf83f1695b/download/",
+ "file_size_0": "8643512.0",
+ "file_size_1": "8800475.0",
+ "identifier": "DANDI:000245",
+ "keywords": "[]",
+ "name": "Electrophysiological properties of adult mouse spinal cord neurons - 22Q1_Ephys_DANDI",
+ "num_bytes": "408910387",
+ "num_files": "25",
+ "numb_subjects": "25.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-20220317004",
+ "parent_folder_1": "sub-20220119003",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000245/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampSeries', 'CurrentClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Icardi, Jacob (2023) developing CaMPARI3 (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/eba75a10-6e3c-4c3f-b7d7-f8d95633f343/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/c1bf3dcd-7615-4fc4-8f6e-d84a2aa53e78/download/",
+ "file_size_0": "188920944.0",
+ "file_size_1": "260223840.0",
+ "identifier": "DANDI:000246",
+ "keywords": "[]",
+ "name": "developing CaMPARI3",
+ "num_bytes": "2108455633468",
+ "num_files": "978",
+ "numb_subjects": "58.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-phpV7-6",
+ "parent_folder_1": "sub-mouse20-C1 -19degree",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000246/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['OpticalChannel', 'TwoPhotonSeries', 'PlaneSegmentation', 'ProcessingModule', 'ImagingPlane']",
+ "version": "draft"
+ },
+ {
+ "citation": "Vijayan, Vikram; Maimon, Gaby (2023) Calcium imaging of egg-laying related neurons in head-fixed Drosophila (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000247/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.biorxiv.org/content/10.1101/2021.09.23.461548v1",
+ "file_0": "https://api.dandiarchive.org/api/assets/0c6e778d-9b87-4fa4-8bd4-8a189fb534db/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3e047be3-d417-4f8e-81cd-5c44254f5cba/download/",
+ "file_size_0": "4113712.0",
+ "file_size_1": "4226976.0",
+ "identifier": "DANDI:000247",
+ "keywords": "['Drosophila', 'egg laying', 'flies', 'decision making', 'rise-to-threshold']",
+ "name": "Calcium imaging of egg-laying related neurons in head-fixed Drosophila",
+ "num_bytes": "30300179800",
+ "num_files": "194",
+ "numb_subjects": "158.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-oviDNSS1-driving-GCaMP7f-fly-ID#6010",
+ "parent_folder_1": "sub-oviDNSS1-driving-GCaMP7f-fly-ID#7006",
+ "schemaKey": "Dandiset",
+ "species": "Drosophila melanogaster - Fruit fly",
+ "url": "https://dandiarchive.org/dandiset/000247/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Schiavo, Jennifer K.; Valtcheva, Silvana; Bair-Marshall, Chloe J.; Song, Soomin C.; Martin, Kathleen A.; Froemke, Robert C. (2023) Innate and plastic mechanisms for maternal behaviour in auditory cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000249/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/7f25d292-0365-4e7d-ae7b-68c8c2124615/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/01fdbd6c-abef-4097-988f-270d45db5ffb/download/",
+ "file_size_0": "36284024.0",
+ "file_size_1": "38077777.0",
+ "identifier": "DANDI:000249",
+ "keywords": "['oxytocin']",
+ "name": "Innate and plastic mechanisms for maternal behaviour in auditory cortex",
+ "num_bytes": "97968237237",
+ "num_files": "777",
+ "numb_subjects": "54.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-NV106",
+ "parent_folder_1": "sub-NV33",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000249/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['OpticalChannel', 'ImagingPlane', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Vijayan, Vikram; Maimon, Gaby (2023) High-resolution tracking of Drosophila during egg-laying (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.biorxiv.org/content/10.1101/2021.09.23.461548v1",
+ "file_0": "https://api.dandiarchive.org/api/assets/029d73d2-e3d0-497f-92d5-1122327024d1/download/",
+ "file_1": "",
+ "file_size_0": "35813536.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000250",
+ "keywords": "['Drosophila', 'egg laying', 'flies', 'decision making', 'behavioral sequence']",
+ "name": "High-resolution tracking of Drosophila during egg-laying",
+ "num_bytes": "100324608",
+ "num_files": "3",
+ "numb_subjects": "3.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-CS-fly#-1",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Drosophila melanogaster - Fruit fly",
+ "url": "https://dandiarchive.org/dandiset/000250/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'SpatialSeries', 'Position']",
+ "version": "draft"
+ },
+ {
+ "citation": "Kim, HyungGoo; Malik, Athar; Mikhael, John; Bech, Pol; Tsutsui-Kimura, Iku; Sun, Fangmiao; Zhang, Yajun; Li, Yulong; Watabe-Uchida, Mitsuko; Gershman, Samuel; Uchida, Naoshige (2023) A Unified Framework for Dopamine Signals across Timescales (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000251/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/df495f09-bd0e-4276-871e-51775cb57e43/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b3327f7f-6e06-4dca-88c4-c489ee0fed74/download/",
+ "file_size_0": "1044744.0",
+ "file_size_1": "1421368.0",
+ "identifier": "DANDI:000251",
+ "keywords": "[]",
+ "name": "A Unified Framework for Dopamine Signals across Timescales",
+ "num_bytes": "2170119624",
+ "num_files": "513",
+ "numb_subjects": "53.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-3021",
+ "parent_folder_1": "sub-3045",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000251/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['SpatialSeries', 'ProcessingModule', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Guan, Charles; Aflalo, Tyson; Kadlec, Kelly; Gamez, Jorge (2023) Finger_RL: human intracortical recordings during attempted finger movements of right and left hands (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000252/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.medrxiv.org/content/10.1101/2022.12.07.22283227",
+ "file_0": "https://api.dandiarchive.org/api/assets/c9f1cd09-a210-413f-9c82-b43bdfdd19a3/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d5bd9c5e-9410-4d58-8684-2c01b1a11b2a/download/",
+ "file_size_0": "1517120.0",
+ "file_size_1": "9391680.0",
+ "identifier": "DANDI:000252",
+ "keywords": "['PPC', 'human', 'finger', 'MC', 'posterior parietal cortex', 'motor cortex', 'ipsilateral']",
+ "name": "Finger_RL: human intracortical recordings during attempted finger movements of right and left hands",
+ "num_bytes": "38128728",
+ "num_files": "12",
+ "numb_subjects": "2.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-P1",
+ "parent_folder_1": "sub-N1",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000252/draft",
+ "validation_summary": "PYNWB_VALIDATION",
+ "variableMeasured": "['ElectrodeGroup', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Bazin, Pierre-Louis (2022) A unified 3D map of microscopic architecture and MRI of the human brain (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000255/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000255",
+ "keywords": "",
+ "name": "A unified 3D map of microscopic architecture and MRI of the human brain",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000255/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Mei, Nicholas; Chartrand, Thomas; Kalmbach, Brian; Molnar, Gabor; Tamas, Gabor; Lein, Ed (2023) 20220630_AIBS_Patchseq_human (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000288/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/6ffde7c8-11de-44c7-a1fb-f8fff95cee14/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/f78bc98d-ca3a-4398-a60a-f579734de177/download/",
+ "file_size_0": "13361172.0",
+ "file_size_1": "19135794.0",
+ "identifier": "DANDI:000288",
+ "keywords": "['Patch-seq', 'human']",
+ "name": "20220630_AIBS_Patchseq_human",
+ "num_bytes": "1049737334",
+ "num_files": "36",
+ "numb_subjects": "12.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-H18.03.003",
+ "parent_folder_1": "sub-H19.03.316",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000288/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['VoltageClampSeries', 'CurrentClampStimulusSeries', 'ProcessingModule', 'CurrentClampSeries', 'VoltageClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Abeledo Machado, Alejandra (2022) Diaz-Torga_Sfig1 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000290/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000290",
+ "keywords": "",
+ "name": "Diaz-Torga_Sfig1",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000290/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Howard, Derek; Chameh, Homeira Moradi; Valiante, Taufik; Tripathy, Shreejoy (2022) UHN whole-cell patch-clamp excitability recordings from mouse cortical neurons (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000292/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/5eba84f6-1459-4833-9de2-102c65734e4e/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d98b0dcf-4299-4c06-8843-97750a12d53a/download/",
+ "file_size_0": "936638.0",
+ "file_size_1": "1035492.0",
+ "identifier": "DANDI:000292",
+ "keywords": "['excitability', 'cortex', 'mouse']",
+ "name": "UHN whole-cell patch-clamp excitability recordings from mouse cortical neurons",
+ "num_bytes": "13764872",
+ "num_files": "11",
+ "numb_subjects": "11.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-18208024",
+ "parent_folder_1": "sub-2018-02-08-0001",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000292/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampSeries', 'CurrentClampStimulusSeries', 'VoltageClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Howard, Derek; Moradi, Homeira Moradi; Valiante, Taufik; Tripathy, Shreejoy (2022) UHN whole-cell patch-clamp excitability recordings from human cortical neurons (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000293/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/497b0b7f-cf8e-48eb-b949-e730720568a3/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e3024e2a-fd3e-447e-9caa-94470aeebc4a/download/",
+ "file_size_0": "817233.0",
+ "file_size_1": "878335.0",
+ "identifier": "DANDI:000293",
+ "keywords": "['excitability', 'human', 'cortex']",
+ "name": "UHN whole-cell patch-clamp excitability recordings from human cortical neurons",
+ "num_bytes": "234976142",
+ "num_files": "121",
+ "numb_subjects": "201.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-1914-2019-11-28-0038",
+ "parent_folder_1": "sub-1911-19o10045",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000293/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['VoltageClampStimulusSeries', 'CurrentClampSeries', 'CurrentClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Buccino, Alessio Paolo; Damart, Tanguy; Bartram, Julian; Mandge, Darshan; Xue, Xiaohan; Zbili, Mickael; G\u00e4nswein, Tobias; Jaquier, Aurelien; Emmenegger, Vishalini; Markram, Henry; Hierlemann, Andreas; Van Geit, Werner (2023) A multi-modal fitting approach to construct single-neuron models with patch-clamp and high-density microelectrode arrays (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000294/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/120dc453-ad2f-4df2-8dd3-26c2ead322ed/download/",
+ "file_1": "",
+ "file_size_0": "10126043978.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000294",
+ "keywords": "['HD-MEA, patch-clamp, multimodal']",
+ "name": "A multi-modal fitting approach to construct single-neuron models with patch-clamp and high-density microelectrode arrays",
+ "num_bytes": "18173614543",
+ "num_files": "2",
+ "numb_subjects": "2.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-3148",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000294/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectricalSeries', 'ProcessingModule', 'CurrentClampSeries', 'CurrentClampStimulusSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Guang-Wei; Tao, Can (2022) Electrophysiological properties of adult mouse spinal cord neurons - 22Q2_Ephys_DANDI (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000295/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/75fa33f2-c744-41ff-938b-c16bd345e39d/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/5e43b224-33ff-4502-9291-d0a8b57579e1/download/",
+ "file_size_0": "9151977.0",
+ "file_size_1": "12348718.0",
+ "identifier": "DANDI:000295",
+ "keywords": "[]",
+ "name": "Electrophysiological properties of adult mouse spinal cord neurons - 22Q2_Ephys_DANDI",
+ "num_bytes": "476091831",
+ "num_files": "26",
+ "numb_subjects": "26.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-20220701004",
+ "parent_folder_1": "sub-20220512002",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000295/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampSeries', 'CurrentClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Gonzalez, Aneysis (2022) Drosophila visual neural responses to stochastic stimuli (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000296/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/8269630b-c5c9-4f6c-ba46-f69b007b998d/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/a6254199-b24a-4dca-9296-4ad1b2f94528/download/",
+ "file_size_0": "160441139.0",
+ "file_size_1": "170791771.0",
+ "identifier": "DANDI:000296",
+ "keywords": "[]",
+ "name": "Drosophila visual neural responses to stochastic stimuli",
+ "num_bytes": "745311363665",
+ "num_files": "1278",
+ "numb_subjects": "1188.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-3204989286909019890",
+ "parent_folder_1": "sub-3342064158402930368",
+ "schemaKey": "Dandiset",
+ "species": "Drosophila melanogaster - Fruit fly",
+ "url": "https://dandiarchive.org/dandiset/000296/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ImagingPlane', 'OpticalChannel', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Howard, Derek; Homeira Moradi, Chameh; Taufik A Valiante; Shreejoy Tripathy (2022) UHN whole-cell patch-clamp excitability recordings from human cortical neurons (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000297/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/0722fb00-ede2-4dcc-8f5d-005319c92e7e/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d2763c7d-a040-4c14-9327-fe8aca272a81/download/",
+ "file_size_0": "817233.0",
+ "file_size_1": "878335.0",
+ "identifier": "DANDI:000297",
+ "keywords": "['excitability', 'human', 'cortex']",
+ "name": "UHN whole-cell patch-clamp excitability recordings from human cortical neurons",
+ "num_bytes": "231099211",
+ "num_files": "118",
+ "numb_subjects": "197.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-1914-2019-11-28-0038",
+ "parent_folder_1": "sub-1911-19o10045",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000297/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampSeries', 'VoltageClampStimulusSeries', 'CurrentClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Cowen, Stephen (2022) Brain_stim_and_FSCV_and_ensemble_recording_anesthetized (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000298/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000298",
+ "keywords": "['FSCV, electrophysiology, brain stimulation']",
+ "name": "Brain_stim_and_FSCV_and_ensemble_recording_anesthetized",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000298/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Cowen, Stephen (2022) Stephen Test Set (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000299/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/12bb96be-3535-4144-82b5-4f23abe76b32/download/",
+ "file_1": "",
+ "file_size_0": "232448.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000299",
+ "keywords": "",
+ "name": "Stephen Test Set",
+ "num_bytes": "232448",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Rat203",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000299/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ElectricalSeries', 'ElectrodeGroup', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chinta, Suma; Pluta, Scott (2023) Extracellular electrophysiology unit data from mouse Superior Colliculus during whisker guided virtual navigation (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000301/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/3fc83f98-5c71-4891-b5a2-4b00760402e4/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d2a9c61e-ec6a-4d37-8d93-70ff23b37a6d/download/",
+ "file_size_0": "1356801308.0",
+ "file_size_1": "1920276754.0",
+ "identifier": "DANDI:000301",
+ "keywords": "[]",
+ "name": "Extracellular electrophysiology unit data from mouse Superior Colliculus during whisker guided virtual navigation",
+ "num_bytes": "29683186079",
+ "num_files": "14",
+ "numb_subjects": "14.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-M26",
+ "parent_folder_1": "sub-M43",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000301/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['SpatialSeries', 'ProcessingModule', 'Units', 'ElectrodeGroup', 'Position']",
+ "version": "draft"
+ },
+ {
+ "citation": "Jo, YoungJu (2023) Habenular neurophysiology (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000302/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/6f12e5fb-f864-4349-a31b-3d5a258acada/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/8fb0ec6c-bf5a-446f-b2bb-9bdf30b21f2e/download/",
+ "file_size_0": "10217484.0",
+ "file_size_1": "12434984.0",
+ "identifier": "DANDI:000302",
+ "keywords": "[]",
+ "name": "Habenular neurophysiology",
+ "num_bytes": "1078714284",
+ "num_files": "32",
+ "numb_subjects": "12.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-ANM-0172",
+ "parent_folder_1": "sub-ANM-0174",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000302/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['BehavioralEvents', 'ProcessingModule', 'Units', 'ElectrodeGroup', 'OptogeneticSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Neufeld, Shay (2022) My Test Dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000335/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000335",
+ "keywords": "",
+ "name": "My Test Dataset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000335/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Chartrand, Thomas (2022) 20220917_AIBS_Patchseq_human (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000337/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/44998ede-ef66-4017-bb7c-8be8a77bfba8/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/5e32b8af-e756-406f-a195-67889b611fe3/download/",
+ "file_size_0": "27458265.0",
+ "file_size_1": "29799567.0",
+ "identifier": "DANDI:000337",
+ "keywords": "",
+ "name": "20220917_AIBS_Patchseq_human",
+ "num_bytes": "1532057791",
+ "num_files": "21",
+ "numb_subjects": "12.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-1089233462",
+ "parent_folder_1": "sub-701201569",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000337/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampStimulusSeries', 'CurrentClampSeries', 'VoltageClampStimulusSeries', 'VoltageClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, Chenguang (2022) groupweight BMI (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000338/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/721133ab-a29b-4533-9fc8-823e290e7d84/download/",
+ "file_1": "",
+ "file_size_0": "418915594.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000338",
+ "keywords": "['BCI BMI ']",
+ "name": "groupweight BMI",
+ "num_bytes": "740232574",
+ "num_files": "2",
+ "numb_subjects": "2.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-001",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Macaca mulatta - Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000338/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Ramachandran, Sandhya; Carnegie Mellon University; Niu, Xiaodan; Yu, Kai; He, Bin (2023) Local Field Potential Recordings in the Primary Somatosensory Cortex before and after Transcranial Focused Ultrasound Stimulation in Rats (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000339/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/f4a055e5-6fcd-4390-a3f0-52d6d44be2a2/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/eaf70c0d-f3f2-465a-9fda-783a24abc4c3/download/",
+ "file_size_0": "702781184.0",
+ "file_size_1": "703862528.0",
+ "identifier": "DANDI:000339",
+ "keywords": "['Ultrasound', 'tFUS', 'Plasticity', 'Somatosensory', 'Rat', 'Somatosensory Cortex']",
+ "name": "Local Field Potential Recordings in the Primary Somatosensory Cortex before and after Transcranial Focused Ultrasound Stimulation in Rats",
+ "num_bytes": "64243853984",
+ "num_files": "66",
+ "numb_subjects": "30.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-BH275",
+ "parent_folder_1": "sub-BH266",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000339/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ProcessingModule', 'ElectricalSeries', 'LFP', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Lecoq, Jerome (2022) Allen Institute Openscope - Credit Assignment project with stimuli templates (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000340/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000340",
+ "keywords": "",
+ "name": "Allen Institute Openscope - Credit Assignment project with stimuli templates",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000340/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "T\u00f3th, Martin; R\u00f3zsa, M\u00e1rton (2023) Temporal disparity of action potentials triggered in axon initial segments and distal axons in the neocortex (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/ffe2911b-f8a4-48ea-98be-8b2910719c50/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/dd31e463-89d3-4531-850a-c2dfd4e12e4d/download/",
+ "file_size_0": "13046992.0",
+ "file_size_1": "16417816.0",
+ "identifier": "DANDI:000341",
+ "keywords": "['Layer 1 interneurons', 'human', 'rodent', 'in vitro', 'in vivo', 'Retroaxonal firing', 'Persistent firing', 'Retoaxonal action potentials']",
+ "name": "Temporal disparity of action potentials triggered in axon initial segments and distal axons in the neocortex",
+ "num_bytes": "711580684440",
+ "num_files": "787",
+ "numb_subjects": "310.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-1809131og",
+ "parent_folder_1": "sub-20120627",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000341/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampStimulusSeries', 'CurrentClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Miller, Douglas (2022) da_network_2022 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000343/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000343",
+ "keywords": "",
+ "name": "da_network_2022",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000343/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Griggs, Whitney (2022) Test dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000346/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000346",
+ "keywords": "",
+ "name": "Test dataset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000346/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Chatterjee, Soumya (2022) Multiphoton imaging in macaque visual cortex (preliminary data) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000347/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/0b8a4687-fdb1-4ff8-b614-46ddfd162afe/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/bb77fbb1-cbb2-4bcc-b8dd-c5f20b13bf0d/download/",
+ "file_size_0": "2116941312.0",
+ "file_size_1": "2424314670.0",
+ "identifier": "DANDI:000347",
+ "keywords": "[]",
+ "name": "Multiphoton imaging in macaque visual cortex (preliminary data)",
+ "num_bytes": "26039386048",
+ "num_files": "9",
+ "numb_subjects": "3.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-134",
+ "parent_folder_1": "sub-132",
+ "schemaKey": "Dandiset",
+ "species": "Macaca nemestrina - Pig-tailed macaque",
+ "url": "https://dandiarchive.org/dandiset/000347/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['OpticalChannel', 'PlaneSegmentation', 'ImagingPlane', 'TwoPhotonSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Cang, JC (2022) Tanabe-2022-CurrentBiology (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000348/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000348",
+ "keywords": "",
+ "name": "Tanabe-2022-CurrentBiology",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000348/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Mart\u00ednez Vergara, Hernando (2022) HMV-test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000349/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000349",
+ "keywords": "[]",
+ "name": "HMV-test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000349/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Mu, Yu; Bennett, Davis V.; Rubinov, Mikail; Lim, Jing-Xuan; Yang, Chao-Tsung; Tanimoto, Masashi; Mensh, Brett D. ; Looger, Loren L.; Narayan, Sujatha; Ahrens, Misha B. (2023) Glia Accumulate Evidence that Actions Are Futile and Suppress Unsuccessful Behavior (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000350/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.sciencedirect.com/science/article/pii/S009286741930621X",
+ "file_0": "https://api.dandiarchive.org/api/assets/405ef3f6-e254-4f3c-a66e-8201c803940f/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/8fc5cb83-a88f-4455-992e-308c27360cd2/download/",
+ "file_size_0": "333912205586.0",
+ "file_size_1": "393912173801.0",
+ "identifier": "DANDI:000350",
+ "keywords": "['neuroscience', 'glia', 'astrocytes', 'norepinephrine', 'noradrenaline', 'learned helplessness', 'neuromodulation', 'behavioral states', 'evidence accumulation', 'zebrafish']",
+ "name": "Glia Accumulate Evidence that Actions Are Futile and Suppress Unsuccessful Behavior",
+ "num_bytes": "5865794202897",
+ "num_files": "12",
+ "numb_subjects": "12.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-20170113-2",
+ "parent_folder_1": "sub-20161022-1",
+ "schemaKey": "Dandiset",
+ "species": "Danio rerio - Zebra fish",
+ "url": "https://dandiarchive.org/dandiset/000350/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['TwoPhotonSeries', 'OpticalChannel', 'ProcessingModule', 'ImagingPlane', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Jeong, Huijeong; Taylor, Annie; Floeder, Joseph R ; Lohmann, Martin; Mihalas, Stefan; Wu, Brenda; Zhou, Mingkang; Burke, Dennis A; K Namboodiri, Vijay Mohan (2022) Jeong et al (2022) Mesolimbic dopamine release conveys causal associations (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000351/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://docs.google.com/spreadsheets/d/1pmpQ5JFhg4Q7h18DQYifjNrW17HtaoPHBt2vJF4mxiU/edit#gid=0",
+ "file_0": "https://api.dandiarchive.org/api/assets/1cbaaedf-d013-4366-b099-878566b003c9/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/fbd6d414-ece1-4f50-b653-a55ec99f24b8/download/",
+ "file_size_0": "217472.0",
+ "file_size_1": "224608.0",
+ "identifier": "DANDI:000351",
+ "keywords": "[]",
+ "name": "Jeong et al (2022) Mesolimbic dopamine release conveys causal associations",
+ "num_bytes": "98548166664",
+ "num_files": "428",
+ "numb_subjects": "28.0",
+ "nwb_version": "2.4.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-DB-longITI-C1-M1",
+ "parent_folder_1": "sub-DB-longITI-C1-M2",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000351/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Paulk, Angelique C (2022) Human brain mapping with multithousand-channel PtNRGrids resolves spatiotemporal dynamics (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000359/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000359",
+ "keywords": "",
+ "name": "Human brain mapping with multithousand-channel PtNRGrids resolves spatiotemporal dynamics",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000359/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "R\u00f3zsa, M\u00e1rton (2022) Simultaneous loose seal cell-attached recordings and two-photon imaging of GCaMP8 expressing mouse V1 neurons with drifting gratings visual stimuli - RAW movies (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000362/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/15efb6d7-393a-401f-9306-c2419c2b13cd/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/ecf11de4-cb03-45db-b000-b050badb0c05/download/",
+ "file_size_0": "1757844526.0",
+ "file_size_1": "2271319776.0",
+ "identifier": "DANDI:000362",
+ "keywords": "",
+ "name": "Simultaneous loose seal cell-attached recordings and two-photon imaging of GCaMP8 expressing mouse V1 neurons with drifting gratings visual stimuli - RAW movies",
+ "num_bytes": "397456462638",
+ "num_files": "52",
+ "numb_subjects": "11.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "jGCaMP8f",
+ "parent_folder_1": "jGCaMP8m",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000362/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ProcessingModule', 'OpticalChannel', 'ImagingPlane', 'TwoPhotonSeries', 'PlaneSegmentation', 'CurrentClampStimulusSeries', 'CurrentClampSeries', 'VoltageClampSeries', 'VoltageClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chen, Susu; Nguyen, Thinh; Li, Nuo; Svoboda, Karel (2023) Mesoscale Activity Map Dataset (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/445029d5-0023-4915-9d7d-25eb11451adc/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/2953ce80-883a-48b6-9750-c6de9d0028a5/download/",
+ "file_size_0": "159195870.0",
+ "file_size_1": "171337502.0",
+ "identifier": "DANDI:000363",
+ "keywords": "[]",
+ "name": "Mesoscale Activity Map Dataset",
+ "num_bytes": "65700262850745",
+ "num_files": "174",
+ "numb_subjects": "28.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-440958",
+ "parent_folder_1": "sub-442571",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000363/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['BehavioralTimeSeries', 'BehavioralEvents', 'ElectrodeGroup', 'Units', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhu, Feng (2022) M1_waterGrab (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000364/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000364",
+ "keywords": "",
+ "name": "M1_waterGrab",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000364/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Paulk, Angelique C; Kfir, Yoav; Khanna, Arjun R; Mustroph, Martina L; Trautmann, Eric M; Soper, Dan J; Stavisky, Sergey D; Welkenhuysen, Marleen; Dutta, Barundeb; Shenoy, Krisha V; Hochberg, Leigh R; Richardson, R. Mark; Williams, Ziv M; Cash, Sydney S (2022) Large-scale neural recordings with single neuron resolution using Neuropixels probes in human cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000397/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41593-021-00997-0",
+ "file_0": "https://api.dandiarchive.org/api/assets/d13da74c-3f20-4b61-aafe-52b35b492fba/download/",
+ "file_1": "",
+ "file_size_0": "8777850186.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000397",
+ "keywords": "[]",
+ "name": "Large-scale neural recordings with single neuron resolution using Neuropixels probes in human cortex",
+ "num_bytes": "24071283109",
+ "num_files": "3",
+ "numb_subjects": "3.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Pt02",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000397/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectricalSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Lee, Sang Heon; Thunemann, Martin; Lee, Keundong; Cleary, Daniel R.; Tonsfeldt, Karen J.; Oh, Hongseok; Azzazy, Farid; Tchoe, Youngbin; Bourhis, Andrew M.; Hossain, Lorraine; Ro, Yun Goo; Tanaka, Atsunori; K\u0131l\u0131\u00e7, K\u0131v\u0131lc\u0131m ; Devor, Anna; Dayeh, Shadi A. (2022) Scalable Thousand Channel Penetrating Microneedle Arrays on Flex for Multimodal and Large Area Coverage BrainMachine Interfaces (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000398/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/591a4423-cc24-40c6-966e-20d782d68a53/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/5b5adae9-82e0-44aa-9faa-c827351d117a/download/",
+ "file_size_0": "106345201.0",
+ "file_size_1": "113044467.0",
+ "identifier": "DANDI:000398",
+ "keywords": "[]",
+ "name": "Scalable Thousand Channel Penetrating Microneedle Arrays on Flex for Multimodal and Large Area Coverage BrainMachine Interfaces",
+ "num_bytes": "61125796879",
+ "num_files": "42",
+ "numb_subjects": "5.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-San2",
+ "parent_folder_1": "sub-San4",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000398/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ElectrodeGroup', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Fan, Linlin (2023) All-optical physiology resolves a synaptic basis for behavioral time scale plasticity (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/14df4c07-159e-471c-afae-7af889d01539/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/608a8f55-7628-4d7f-ad0e-8515cd05bd7f/download/",
+ "file_size_0": "459792.0",
+ "file_size_1": "506152.0",
+ "identifier": "DANDI:000399",
+ "keywords": "",
+ "name": "All-optical physiology resolves a synaptic basis for behavioral time scale plasticity",
+ "num_bytes": "86582248",
+ "num_files": "105",
+ "numb_subjects": "19.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-1-7",
+ "parent_folder_1": "sub-19",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000399/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Macdonald, Austin (2022) test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000400/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000400",
+ "keywords": "",
+ "name": "test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000400/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Rosenthal, Isabelle (2022) touchExploration: human S1 recordings with multisensory tactile stimuli in arm and finger (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000401/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000401",
+ "keywords": "",
+ "name": "touchExploration: human S1 recordings with multisensory tactile stimuli in arm and finger",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000401/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Bae, J. Alexander; Baptiste, Mahaly; Bodor, Agnes L.; Brittain, Derrick; Buchanan, JoAnn; Bumbarger, Daniel J.; Castro, Manuel A.; Celii, Brendan; Cobos, Erick ; Collman, Forrest; Ma\u00e7arico da Costa, Nuno; Dorkenwald, Sven; Elabbady, Leila; Fahey, Paul G.; Fliss, Tim; Gager, Jay; Gamlin, Clare; Halageri, Akhilesh; Hebditch, James; Jia, Zhen; Jordan, Chris; Kapner, Daniel; Kemnitz, Nico; Kinn, Sam; Koolman, Selden; Kuehner, Kai; Lee, Kisuk; Li, Kai; Lu, Ran; Macrina, Thomas; Mahalingam, Gayathri; McReynolds, Sarah; Miranda, Elanine; Mitchell, Eric; Mondal, Shanka Subhra; Moore, Merlin; Mu, Shang; Muhammad, Taliah; Nehoran, Barak; Ogedengbe, Oluwaseun; Papadopoulos, Christos; Papadopoulos, Stelios; Patel, Saumil; Pitkow, Xaq; Popovych, Sergiy; Ramos, Anthony; Reid, R. Clay; Reimer, Jacob; Schneider-Mizell, Casey M.; Seung, H. Sebastian; Silverman, Ben; Silversmith, William; Sterling, Amy; Sinz, Fabian H.; Smith, Cameron L.; Suckow, Shelby; Takeno, Marc; Tan, Zheng H.; Tolias, Andreas S.; Torres, Russel; Turner, Nicholas L.; Walker, Edgar Y.; Wang, Tianyu; Williams, Grace; Williams, Sarah; Willie, Kyle; Willie, Ryan; Wong, William; Wu, Jingpeng; Xu, Chris; Yang, Runzhe; Yatsenko, Dimitri; Ye, Fei; Yin, Wenjing; Yu, Szi-chieh (2023) MICrONS Two Photon Functional Imaging (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000402/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.microns-explorer.org/cortical-mm3",
+ "file_0": "https://api.dandiarchive.org/api/assets/e87d07fd-ef6a-4a73-a0a5-524838fbd5d1/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/ad27b3c6-baaa-4e60-99b3-bb5463a33ccf/download/",
+ "file_size_0": "66460460066.0",
+ "file_size_1": "66769588482.0",
+ "identifier": "DANDI:000402",
+ "keywords": "[]",
+ "name": "MICrONS Two Photon Functional Imaging",
+ "num_bytes": "1347665448061",
+ "num_files": "19",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-17797",
+ "parent_folder_1": "sub-17797",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000402/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['SpatialSeries', 'ImagingPlane', 'OpticalChannel', 'EyeTracking', 'PupilTracking', 'PlaneSegmentation', 'ProcessingModule', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Athalye, Vivek R; Khanna, Preeya; Gowda, Suraj; Orsborn, Amy L; Costa, Rui M; Carmena, Jose M (2023) Monkey 2D cursor BMI (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000404/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/53815e58-0703-4912-ac72-4244bd4a85b0/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/fc69022c-ccdc-49ef-a5bb-662f3cb87ee0/download/",
+ "file_size_0": "18198336.0",
+ "file_size_1": "71358992.0",
+ "identifier": "DANDI:000404",
+ "keywords": "['neural population dynamics', 'motor cortex', 'motor control', 'brain-machine interface', 'neuroprosthetics', 'optimal feedback control', 'motor commands', 'movement representations', 'dynamical systems ']",
+ "name": "Monkey 2D cursor BMI",
+ "num_bytes": "1046740856",
+ "num_files": "13",
+ "numb_subjects": "2.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-monk-g",
+ "parent_folder_1": "sub-monk-j",
+ "schemaKey": "Dandiset",
+ "species": "Macaca mulatta - Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000404/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Gonzalez, Alex (2023) Gonzalez & Giocomo (2022) Parahippocampal neurons encode task-relevant information for goal-directed navigation (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000405/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/40fc445d-7fc8-4de4-81f2-1ccee6d97347/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b7d4e75e-5477-4d53-a4b0-1688fd0f1260/download/",
+ "file_size_0": "932168.0",
+ "file_size_1": "1636560.0",
+ "identifier": "DANDI:000405",
+ "keywords": "[]",
+ "name": "Gonzalez & Giocomo (2022) Parahippocampal neurons encode task-relevant information for goal-directed navigation",
+ "num_bytes": "3877487528",
+ "num_files": "276",
+ "numb_subjects": "5.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-s2",
+ "parent_folder_1": "sub-s4",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000405/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Adenekan, Phil (2023) Spyglass sample data (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000406/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000406",
+ "keywords": "['spyglass']",
+ "name": "Spyglass sample data",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000406/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "International Brain Laboratory; Benson, Brandon; Benson, Julius; Birman, Daniel; Bonacchi, Niccol\u00f2; Carandini, Matteo; Catarino, Joana; Chapuis, Gaelle; Dayan, Peter; DeWitt, Eric; Engel, Tatiana; Fabbri, Michele; Faulkner, Mayo; Fiete, Ila; Findling, Charles; Freitas-Silva, Laura; Ger\u00e7ek, Berk; Harris, Kenneth; Hofer, Sonja; Hu, Fei; Hubert, F\u00e9lix; Huntenburg, Julia; Khanal, Anup; Langdon, Christopher; Lau, Petrina; Meijer, Guido; Miska, Nathaniel; Noel, Jean-Paul; Nylund, Kai; Pan-Vazquez, Alejandro; Pouget, Alexandre; Rossant, Cyrille; Roth, Noam; Schaeffer, Rylan; Schartner, Michael; Shi, Yanliang; Socha, Karolina; Steinmetz, Nicholas; Svoboda, Karel; Urai, Anne; Wells, Miles; West, Steven; Whiteway, Mathew; Winter, Olivier; Witten, Ilana (2023) IBL - Brain Wide Map (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000409/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://figshare.com/articles/preprint/Data_release_-_Brainwide_map_-_Q4_2022/21400815",
+ "file_0": "https://api.dandiarchive.org/api/assets/37a85ccc-1bc2-4c5e-aa87-2b2ecaacf71f/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/8098c7a7-9a4e-4ff4-94a0-5a46d499fb75/download/",
+ "file_size_0": "124192528.0",
+ "file_size_1": "131907690.0",
+ "identifier": "DANDI:000409",
+ "keywords": "['International Brain Laboratory', 'multi-probe', 'Neuropixels', 'Allen Mouse Brain CCFv3', 'Allen Mouse Brain Atlas', 'head-fixed', 'decision-making', 'face-tracking']",
+ "name": "IBL - Brain Wide Map",
+ "num_bytes": "34256200514156",
+ "num_files": "1582",
+ "numb_subjects": "115.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-ibl-witten-19",
+ "parent_folder_1": "sub-ibl-witten-17",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000409/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'ElectrodeGroup', 'CompassDirection', 'Units', 'SpatialSeries', 'PupilTracking', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Joshi, Abhilasha (2023) Joshi et al (2023) Dynamic Synchronization between Hippocampal Spatial Representations and the Stepping Rhythm (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000410/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/a6582a48-74d4-4131-8230-12373f691557/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d2ba97ec-9e98-4c41-b6f2-8c2073499ea5/download/",
+ "file_size_0": "76944950051.0",
+ "file_size_1": "77818339177.0",
+ "identifier": "DANDI:000410",
+ "keywords": "[]",
+ "name": "Joshi et al (2023) Dynamic Synchronization between Hippocampal Spatial Representations and the Stepping Rhythm",
+ "num_bytes": "2802041975041",
+ "num_files": "22",
+ "numb_subjects": "5.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Lotus",
+ "parent_folder_1": "sub-Jaq",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000410/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['SpatialSeries', 'ProcessingModule', 'Position', 'BehavioralEvents', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Li, Chenyang (2023) test (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/c3d0b58d-e5d8-4913-92fd-dc98927ce696/download/",
+ "file_1": "",
+ "file_size_0": "232080.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000411",
+ "keywords": "",
+ "name": "test",
+ "num_bytes": "232080",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-001",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000411/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Dimwamwa, Elaida; Stanley, Garrett (2023) Dynamic corticothalamic gain modulation of the somatosensory thalamocortical circuit during wakefulness (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000444",
+ "keywords": "['mouse', 'cortex', ' thalamus', 'corticothalamic feedback', 'sensory processing', 'somatosensation']",
+ "name": "Dynamic corticothalamic gain modulation of the somatosensory thalamocortical circuit during wakefulness",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000444/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Dimwamwa, Elaida (2023) EDTest (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000445/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000445",
+ "keywords": "",
+ "name": "EDTest",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000445/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Brooks, Frederick (2023) Test upload (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000446",
+ "keywords": "",
+ "name": "Test upload",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000446/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Shin, Justin; Jadhav, Shantanu P (2023) Novel-familiar-novel WTrack (CA1-PFC) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000447/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.celrep.2023.112246",
+ "file_0": "https://api.dandiarchive.org/api/assets/539c0e59-b9e9-4cc0-8efc-78ceea11bfd4/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/14da6478-9129-4f31-8355-ab9ad906831a/download/",
+ "file_size_0": "5085507688.0",
+ "file_size_1": "5559678680.0",
+ "identifier": "DANDI:000447",
+ "keywords": "['Hippocampus, Prefrontal cortex, Learning, Memory, Decision making']",
+ "name": "Novel-familiar-novel WTrack (CA1-PFC)",
+ "num_bytes": "35480039952",
+ "num_files": "5",
+ "numb_subjects": "5.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-JDS-NFN-JS21",
+ "parent_folder_1": "sub-JDS-NFN-JS34",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000447/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['Position', 'ElectricalSeries', 'Units', 'ElectrodeGroup', 'LFP', 'ProcessingModule', 'SpatialSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii; Semenov, Iurii; Pakhomov, Andrei (2023) Time kinetics of the membrane potential at the cathode- and anode-facing poles of a cell induced by a train of 5 pulses at 833 kHz (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000448/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.bioelechem.2022.108319",
+ "file_0": "https://api.dandiarchive.org/api/assets/50f1e8fa-f1c3-48d9-9f62-3fe536daa49e/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/00b115be-670d-4ee8-b2bb-8fa65aaea6ec/download/",
+ "file_size_0": "173644353.0",
+ "file_size_1": "174494323.0",
+ "identifier": "DANDI:000448",
+ "keywords": "[]",
+ "name": "Time kinetics of the membrane potential at the cathode- and anode-facing poles of a cell induced by a train of 5 pulses at 833 kHz",
+ "num_bytes": "3173065152",
+ "num_files": "18",
+ "numb_subjects": "18.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-007-F",
+ "parent_folder_1": "sub-009-F",
+ "schemaKey": "Dandiset",
+ "species": "Cricetulus griseus - Cricetulus aureus",
+ "url": "https://dandiarchive.org/dandiset/000448/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Simko, Peter (2023) Moving_C_Elegans_Corrected_Voleti_2019 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000449/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000449",
+ "keywords": "",
+ "name": "Moving_C_Elegans_Corrected_Voleti_2019",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000449/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Shin, Justin (2023) Single Day WTrack Learning (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000451/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000451",
+ "keywords": "",
+ "name": "Single Day WTrack Learning",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000451/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Keller, Asaf (2023) Parabrachial (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000452/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000452",
+ "keywords": "",
+ "name": "Parabrachial",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000452/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Klienfeld, David; Yao, Pantong; Liu, Rui; Broginni, Thomas; Thunemann, Martin; University of California, San Diego; Boston University; University of California, San Diego (2023) Guide to the construction and use of an adaptive optics two-photon microscope with direct wavefront sensing (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000454/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/ffc82542-17e0-4559-a253-a3fb07205485/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b4bdca75-6b2d-460a-b616-175ef3ed2cf3/download/",
+ "file_size_0": "352519304.0",
+ "file_size_1": "3408071904.0",
+ "identifier": "DANDI:000454",
+ "keywords": "[]",
+ "name": "Guide to the construction and use of an adaptive optics two-photon microscope with direct wavefront sensing",
+ "num_bytes": "7401238168",
+ "num_files": "4",
+ "numb_subjects": "5.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-rbp4-jRGECO1a-21",
+ "parent_folder_1": "sub-SST-tdTomato-1",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000454/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['TwoPhotonSeries', 'ImagingPlane', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sit, Kevin (2023) Coregistration of heading to visual cues in retrosplenial cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000455/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000455",
+ "keywords": "",
+ "name": "Coregistration of heading to visual cues in retrosplenial cortex",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000455/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "L\u00e1kovics, Rajmund (2023) Accelerated signal propagation speed in human neocortical microcircuits (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000456/draft",
+ "dandiset_schemaver": "0.6.3",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000456",
+ "keywords": "",
+ "name": "Accelerated signal propagation speed in human neocortical microcircuits",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000456/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Shin, Justin (2023) Novel-familiar-novel WTrack (CA1-PFC) (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000457",
+ "keywords": "",
+ "name": "Novel-familiar-novel WTrack (CA1-PFC)",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000457/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Claar, Leslie D; Rembado, Irene; Kuyat, Jacqulyn R; Russo, Simone; Marks, Lydia C; Olsen, Shawn R; Koch, Christof (2023) Simultaneous electroencephalography, extracellular electrophysiology, and cortical electrical stimulation in head-fixed mice (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000458/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://elifesciences.org/reviewed-preprints/84630",
+ "file_0": "https://api.dandiarchive.org/api/assets/ec27a42e-098f-418e-b5e6-1424d5bbdb90/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d77558e6-1b16-49c2-9f61-885d63701331/download/",
+ "file_size_0": "428192135.0",
+ "file_size_1": "504307581.0",
+ "identifier": "DANDI:000458",
+ "keywords": "['EEG', 'Neuropixels', 'electrical stimulation', 'brain states', 'cortico-thalamic interactions', 'extracellular electrophysiology']",
+ "name": "Simultaneous electroencephalography, extracellular electrophysiology, and cortical electrical stimulation in head-fixed mice",
+ "num_bytes": "361482309556",
+ "num_files": "24",
+ "numb_subjects": "23.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-521887",
+ "parent_folder_1": "sub-521886",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000458/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['BehavioralTimeSeries', 'Units', 'ElectricalSeries', 'ElectrodeGroup', 'LFP', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Davis Ozawa, Hunter; National Institutes of Health (2023) Cohen Tickertapes Exploratory Data 1 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000461/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/764320de-4730-4897-b353-a5fdefbdc860/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/2fabf7bb-da97-46a1-a4f3-45df19466e73/download/",
+ "file_size_0": "1325354.0",
+ "file_size_1": "1333091.0",
+ "identifier": "DANDI:000461",
+ "keywords": "[]",
+ "name": "Cohen Tickertapes Exploratory Data 1",
+ "num_bytes": "23369106",
+ "num_files": "14",
+ "numb_subjects": "12.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-005",
+ "parent_folder_1": "sub-003",
+ "schemaKey": "Dandiset",
+ "species": "Canis lupus familiaris - Dog",
+ "url": "https://dandiarchive.org/dandiset/000461/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['OpticalChannel', 'ImagingPlane', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Krishnan, Seetha (2023) HippocampusRewardDataset (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/f7d5fa97-49ab-4f68-b2c0-326e57c22dd4/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/8fe4507e-2257-4604-abab-a2c2c8519192/download/",
+ "file_size_0": "193962496.0",
+ "file_size_1": "221953360.0",
+ "identifier": "DANDI:000462",
+ "keywords": "['hippocampus; dopamine; mice; reward; calcium imaging; VR based navigation; DREADD']",
+ "name": "HippocampusRewardDataset",
+ "num_bytes": "6494591109",
+ "num_files": "14",
+ "numb_subjects": "14.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-NR6",
+ "parent_folder_1": "sub-NR32",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000462/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ProcessingModule', 'OpticalChannel', 'ImagingPlane']",
+ "version": "draft"
+ },
+ {
+ "citation": "Ramachandran, Sandhya; He, Bin; Yu, Kai; Gao, Huan (2023) Electrophysiological Recordings in Anesthetized Rats in the Primary Somatosensory Cortex with Phased Ultrasound Array Stimulation (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/b4f4fc91-51e5-41e9-9a0a-130df842f3dd/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/2e6b590a-a2a4-4455-bb9b-45cc3d7d7cc0/download/",
+ "file_size_0": "1067463456.0",
+ "file_size_1": "1839543072.0",
+ "identifier": "DANDI:000463",
+ "keywords": "[]",
+ "name": "Electrophysiological Recordings in Anesthetized Rats in the Primary Somatosensory Cortex with Phased Ultrasound Array Stimulation",
+ "num_bytes": "64199969632",
+ "num_files": "29",
+ "numb_subjects": "4.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-BH396",
+ "parent_folder_1": "sub-BH395",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000463/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectrodeGroup', 'LFP', 'ElectricalSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Tchoe, Youngbin (2023) Human brain mapping with multithousand-channel PtNRGrids resolves spatiotemporal dynamics (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000465/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/58385f05-000f-40ed-b3e9-5fb142b938a3/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/55e82f4f-51df-4cb4-b44e-24c50993f20b/download/",
+ "file_size_0": "2285352620.0",
+ "file_size_1": "2805020235.0",
+ "identifier": "DANDI:000465",
+ "keywords": "['micro-ECoG, barrel cortex, high gamma activity']",
+ "name": "Human brain mapping with multithousand-channel PtNRGrids resolves spatiotemporal dynamics",
+ "num_bytes": "129066795249",
+ "num_files": "36",
+ "numb_subjects": "4.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-YBT-Rat2-ECoG1024",
+ "parent_folder_1": "sub-YBT-Rat4-ECoG1024",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000465/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectrodeGroup', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Cubukcu, Ertugrul (2023) Optical Recording Exploratory Data 1 (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000466",
+ "keywords": "[]",
+ "name": "Optical Recording Exploratory Data 1",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000466/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Sparse and stereotyped encoding implicates a core glomerulus for ant alarm behavior (2023). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000467/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/0ac27aba-b8a8-41e4-841b-4cfce7f26ea4/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/4f1d1f8e-c557-4f21-8913-581d1eca9089/download/",
+ "file_size_0": "84086336.0",
+ "file_size_1": "84086336.0",
+ "identifier": "DANDI:000467",
+ "keywords": "['antennal lobe; calcium imaging; chemosensation; clonal raider ant; communication; GCaMP; odor coding; olfaction; Ooceraea biroi; pheromone']",
+ "name": "Sparse and stereotyped encoding implicates a core glomerulus for ant alarm behavior",
+ "num_bytes": "1262490250560",
+ "num_files": "14685",
+ "numb_subjects": "22.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-ant3-m4-d26-y2022",
+ "parent_folder_1": "sub-ant3-m4-d21-y2022",
+ "schemaKey": "Dandiset",
+ "species": "Ooceraea biroi - Clonal raider ant",
+ "url": "https://dandiarchive.org/dandiset/000467/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['OpticalChannel', 'ImagingPlane', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Donoghue, Thomas (2023) Human single-neuron activity during the Treasure Hunt spatial navigation task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000468/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000468",
+ "keywords": "",
+ "name": "Human single-neuron activity during the Treasure Hunt spatial navigation task",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000468/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Kyzar, Michael; Kaminski, Jan; Brzezicka, Aneta; Reed, Chrystal M.; Chung, Jeffrey M. ; Mamelak, Adam M.; Rutishauser, Ueli (2023) Dataset of human-single neuron activity during a Sternberg working memory task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000469/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "Pending",
+ "file_0": "https://api.dandiarchive.org/api/assets/d452ea33-5135-47f8-9448-f6293e8fbea7/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d1970c9a-628e-4880-a67c-9c70108456ab/download/",
+ "file_size_0": "27268224.0",
+ "file_size_1": "33147864.0",
+ "identifier": "DANDI:000469",
+ "keywords": "['cognitive neuroscience', 'data standardization', 'working memory', 'neurophysiology', 'neurosurgery', 'NWB', 'open source', 'single-neurons']",
+ "name": "Dataset of human-single neuron activity during a Sternberg working memory task.",
+ "num_bytes": "9788560252",
+ "num_files": "41",
+ "numb_subjects": "21.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-19",
+ "parent_folder_1": "sub-20",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000469/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Krishnan, Seetha (2023) Test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000470/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/e2448bb8-9c73-49f8-a033-7d456dba83b2/download/",
+ "file_1": "",
+ "file_size_0": "128199784.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000470",
+ "keywords": "",
+ "name": "Test",
+ "num_bytes": "128199784",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-NR6",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000470/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ImagingPlane', 'ProcessingModule', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sprague, Daniel (2023) NeuroPAL volumetric images (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000472/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/76a095cd-2bcf-401f-ab25-db25bcb22944/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/c261a889-4cd3-4c31-bdfe-c9c5750a3a0a/download/",
+ "file_size_0": "197066568.0",
+ "file_size_1": "197074056.0",
+ "identifier": "DANDI:000472",
+ "keywords": "[]",
+ "name": "NeuroPAL volumetric images",
+ "num_bytes": "3880845440",
+ "num_files": "18",
+ "numb_subjects": "10.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "NC-0",
+ "nwbe_compatibility_1": "NC-0",
+ "parent_folder_0": "sub-2021-12-03-w00-NP1",
+ "parent_folder_1": "sub-2022-01-22-w04-NP1",
+ "schemaKey": "Dandiset",
+ "species": "Caenorhabditis elegans",
+ "url": "https://dandiarchive.org/dandiset/000472/draft",
+ "validation_summary": "ERROR",
+ "variableMeasured": "['ProcessingModule', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Calvigioni, Daniela; Fuzik, Janos; Le Merre, Pierre; Slashcheva, Marina; Jung, Felix; Ortiz, Cantin; Lentini, Antonio; Csillag, Veronika; Graziano, Marta; Nikolakopoulou, Ifigeneia; Weglage, Moritz; Lazaridis, Iakovos; Kim, Hoseok; Lenzi, Irene; Park, Hyunsoo; Reinius, Bj\u00f6rn; Carl\u00e9n, Marie; Meletis, Konstantinos (2023) Esr1+ hypothalamic-habenula neurons shape aversive states (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/PierreLeMerre/Esr1_NPX_code",
+ "file_0": "https://api.dandiarchive.org/api/assets/42ae0663-7f2e-49b0-b5a3-bf39a89acfe5/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/494edb8a-13a0-4eba-a4da-3fa84a08bce8/download/",
+ "file_size_0": "3456369247.0",
+ "file_size_1": "3542814090.0",
+ "identifier": "DANDI:000473",
+ "keywords": "['Neuropixels', 'Mouse', 'Head-fixed', 'Lateral Hypothalamus', 'Lateral Habenula', 'Prefrontal cortex', 'Aversion']",
+ "name": "Esr1+ hypothalamic-habenula neurons shape aversive states.",
+ "num_bytes": "113558681447",
+ "num_files": "25",
+ "numb_subjects": "25.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-258412",
+ "parent_folder_1": "sub-273853",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000473/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['PupilTracking', 'ElectrodeGroup', 'ElectricalSeries', 'ProcessingModule', 'OptogeneticSeries', 'Units', 'LFP', 'BehavioralTimeSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Ezeh, Cynthia (2023) EIS DATA (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000474/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000474",
+ "keywords": "",
+ "name": "EIS DATA",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000474/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Doya, Kenji (2023) Neural recording of ventral striatum and pallidum in a probabilistic reward task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000476/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000476",
+ "keywords": "['reinforcement learning, value function, basal ganglia, striatum, pallidum']",
+ "name": "Neural recording of ventral striatum and pallidum in a probabilistic reward task",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000476/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Sit, Kevin (2023) Dataset for Coregistration of heading to visual cues in retrosplenial cortex (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/f29c8f3a-df17-4269-9840-90419c4a7800/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/d367acfa-bc50-483b-ad79-b62239c0e09a/download/",
+ "file_size_0": "8722276056.0",
+ "file_size_1": "8722276056.0",
+ "identifier": "DANDI:000477",
+ "keywords": "",
+ "name": "Dataset for Coregistration of heading to visual cues in retrosplenial cortex",
+ "num_bytes": "694959863936",
+ "num_files": "77",
+ "numb_subjects": "12.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-SKKS103",
+ "parent_folder_1": "sub-SKKS091",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000477/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ImagingPlane', 'ProcessingModule', 'CompassDirection', 'OpticalChannel', 'Position', 'SpatialSeries', 'TwoPhotonSeries', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "C. Petersen, Peter (2023) BrainSTEM test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000478/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000478",
+ "keywords": "",
+ "name": "BrainSTEM test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000478/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Petersen, Peter C. (2023) BrainSTEM dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000479/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000479",
+ "keywords": "[]",
+ "name": "BrainSTEM dataset",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000479/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Bereshpolova, Yulia (2023) Cellular Mechanisms of State-Dependent Processing in Visual Cortex (preliminary data) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000480/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000480",
+ "keywords": "",
+ "name": "Cellular Mechanisms of State-Dependent Processing in Visual Cortex (preliminary data)",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000480/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Bereshpolova, Yulia (2023) State-dependent processing in visual cortex (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/830ba7f9-1272-4279-ba7c-bd8aab0b89d8/download/",
+ "file_1": "",
+ "file_size_0": "3228940.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000481",
+ "keywords": "['electrophysiology, signal processing']",
+ "name": "State-dependent processing in visual cortex",
+ "num_bytes": "6457880",
+ "num_files": "2",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-525",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Oryctolagus cuniculus - Rabbits",
+ "url": "https://dandiarchive.org/dandiset/000481/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectrodeGroup', 'Units', 'ElectricalSeries', 'LFP', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Bereshpolova, Yulia (2023) State-dependent processing in visual cortex (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/f3c828ca-8ecd-4179-b70c-969b6107917f/download/",
+ "file_1": "",
+ "file_size_0": "79941664.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000482",
+ "keywords": "",
+ "name": "State-dependent processing in visual cortex",
+ "num_bytes": "79941664",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Elon",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Oryctolagus cuniculus - Rabbits",
+ "url": "https://dandiarchive.org/dandiset/000482/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['LFP', 'ElectricalSeries', 'Units', 'ElectrodeGroup', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sit, Kevin; Goard, Michael (2023) Dataset for \"Coregistration of heading to visual cues in retrosplenial cortex\" (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000483/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/ucsb-goard-lab/Neurotar-HD-Experiments",
+ "file_0": "https://api.dandiarchive.org/api/assets/960d9018-f48b-4207-bf25-5f08f7039c4c/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/689c62bf-346e-4cd0-9a48-83c69991832b/download/",
+ "file_size_0": "1677421456.0",
+ "file_size_1": "1693145373.0",
+ "identifier": "DANDI:000483",
+ "keywords": "[]",
+ "name": "Dataset for \"Coregistration of heading to visual cues in retrosplenial cortex\"",
+ "num_bytes": "695653683544",
+ "num_files": "128",
+ "numb_subjects": "20.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-SKKS089",
+ "parent_folder_1": "sub-SKKS091",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000483/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['CompassDirection', 'OpticalChannel', 'PlaneSegmentation', 'SpatialSeries', 'ImagingPlane', 'Position', 'ProcessingModule', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Institute Openscope - Tmp (2023). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000487/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000487",
+ "keywords": "[]",
+ "name": "Allen Institute Openscope - Tmp",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000487/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Lecoq, Jerome A.; Garrett, Marina; Choi, Hannah; Mazzucato, Luca; Wyrick, David (2023) Allen Institute Openscope - Differential encoding of temporal context and expectation (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000488/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/3f523944-d0de-4f30-ba91-79656ca3ad26/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/63bf5bd6-9765-45ae-b5da-91eba0665bb9/download/",
+ "file_size_0": "1219900140.0",
+ "file_size_1": "1236823116.0",
+ "identifier": "DANDI:000488",
+ "keywords": "['neocortex', 'pyramidal neurons', 'two-photon calcium imaging', 'mouse VisP', 'prediction', 'predictive coding']",
+ "name": "Allen Institute Openscope - Differential encoding of temporal context and expectation",
+ "num_bytes": "61460302104",
+ "num_files": "43",
+ "numb_subjects": "14.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-437812",
+ "parent_folder_1": "sub-439885",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000488/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['PlaneSegmentation', 'ImagingPlane', 'BehavioralTimeSeries', 'ProcessingModule', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii; Semenov, Iurii; Pakhomov, Andrei (2023) The impact of the second phase amplitude (% to the first phase) on the electroporation efficiency (measured as YP emission) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000489/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.bioelechem.2022.108319",
+ "file_0": "https://api.dandiarchive.org/api/assets/1e7fcc84-e5eb-4ead-802f-c26c91621306/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/f914475a-f6e3-4aef-b408-1acf9a679278/download/",
+ "file_size_0": "1021672026.0",
+ "file_size_1": "1022351207.0",
+ "identifier": "DANDI:000489",
+ "keywords": "[]",
+ "name": "The impact of the second phase amplitude (% to the first phase) on the electroporation efficiency (measured as YP emission)",
+ "num_bytes": "18594422294",
+ "num_files": "18",
+ "numb_subjects": "18.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Fig2-0-03",
+ "parent_folder_1": "sub-Fig2-0-06",
+ "schemaKey": "Dandiset",
+ "species": "Bos taurus - Cattle",
+ "url": "https://dandiarchive.org/dandiset/000489/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Dewberry, Savannah; Ezeh, Cynthia (2023) test set (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000490/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000490",
+ "keywords": "[]",
+ "name": "test set",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000490/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhao, Yue; Boster, Kimberly; Kelley, Douglas; Raicevic, Nikola (2023) BrainFlowZZZ (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000491/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/a6c04ef2-21d9-451f-bdbe-859636968e5c/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3610bb59-13ea-4f4f-971f-68092354e1fe/download/",
+ "file_size_0": "240195065.0",
+ "file_size_1": "249269831.0",
+ "identifier": "DANDI:000491",
+ "keywords": "[]",
+ "name": "BrainFlowZZZ",
+ "num_bytes": "5324803662",
+ "num_files": "14",
+ "numb_subjects": "9.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-BPN-OLD-M3",
+ "parent_folder_1": "sub-BPN-M7",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000491/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['TwoPhotonSeries', 'ImagingPlane', 'OpticalChannel', 'ProcessingModule', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Olah, Gaspar (2023) Accelerated signal propagation speed in human neocortical microcircuits (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000492/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000492",
+ "keywords": "",
+ "name": "Accelerated signal propagation speed in human neocortical microcircuits",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000492/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Dewberry, Savannah (2023) Test 2 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000529/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/88e6f549-aea2-4087-ae48-68638b05cafa/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/dfc9240a-541e-490a-8a46-fc7dc7ca6d2f/download/",
+ "file_size_0": "195004.0",
+ "file_size_1": "195004.0",
+ "identifier": "DANDI:000529",
+ "keywords": "",
+ "name": "Test 2",
+ "num_bytes": "5265108",
+ "num_files": "27",
+ "numb_subjects": "3.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-SIROF",
+ "parent_folder_1": "sub-RuOx",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000529/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chinta, Suma (2023) Extracellular electrophysiology unit data from mouse Superior Colliculus during whisker guided virtual navigation (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000530/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000530",
+ "keywords": "",
+ "name": "Extracellular electrophysiology unit data from mouse Superior Colliculus during whisker guided virtual navigation",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000530/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Lecoq, Jerome (2023) Allen Institute Openscope - Tmp 2 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000532/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000532",
+ "keywords": "[]",
+ "name": "Allen Institute Openscope - Tmp 2",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000532/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "to_be_deleted (2023). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000534/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000534",
+ "keywords": "[]",
+ "name": "to_be_deleted",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000534/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Lecoq, Jerome; Murdock, Mitchell H.; Arkhipov, Anton; Ito, Shinya; Ren, Naixin; Billeh, Yazan N. (2023) Allen Institute Openscope - Effects of Periodic Visual Stimulation on Neural Activity in Mouse Visual Cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000535/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/63b6a1be-3da5-4997-ae92-278401b0b5fe/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/59eef0bb-cdc3-475a-933c-cd64cdb68022/download/",
+ "file_size_0": "7941204.0",
+ "file_size_1": "7941844.0",
+ "identifier": "DANDI:000535",
+ "keywords": "['two-photon', 'cortical recording', 'gamma', 'neuroprotection', 'oscillations', 'visual stimuli']",
+ "name": "Allen Institute Openscope - Effects of Periodic Visual Stimulation on Neural Activity in Mouse Visual Cortex",
+ "num_bytes": "6827396992",
+ "num_files": "115",
+ "numb_subjects": "15.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-509641",
+ "parent_folder_1": "sub-525492",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000535/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['OpticalChannel', 'ImagingPlane', 'PlaneSegmentation', 'BehavioralTimeSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "LI, YI (2023) test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000536/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000536",
+ "keywords": "",
+ "name": "test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000536/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Adam Cohen (2023) Scaling of GEVI Fluorescence with 1P and 2P Illumination (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000537/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/c02995ae-a2ed-441b-b3e4-a0dc8c65a9c1/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/1fa16e7b-85da-446f-b7e4-91a161c4f916/download/",
+ "file_size_0": "43285984.0",
+ "file_size_1": "43286008.0",
+ "identifier": "DANDI:000537",
+ "keywords": "[]",
+ "name": "Scaling of GEVI Fluorescence with 1P and 2P Illumination",
+ "num_bytes": "6440628584",
+ "num_files": "125",
+ "numb_subjects": "125.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-172658cell5q6a-900-700filter",
+ "parent_folder_1": "sub-175154cell14q6a-900-700filter",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000537/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Adam Cohen (2023) Comparing the 1P and 2P Voltage Contrast of JEDI2P and Voltron2_JF525 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000538/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/a3b08f3a-46d6-466c-9763-5b5c3f57c322/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/0e26ddd2-1fd2-4bd5-b216-2d2d595eb695/download/",
+ "file_size_0": "177661200.0",
+ "file_size_1": "177661200.0",
+ "identifier": "DANDI:000538",
+ "keywords": "[]",
+ "name": "Comparing the 1P and 2P Voltage Contrast of JEDI2P and Voltron2_JF525",
+ "num_bytes": "1954273200",
+ "num_files": "11",
+ "numb_subjects": "11.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-180242Voltron2JF525cell3",
+ "parent_folder_1": "sub-182405Voltron2JF525cell4t1",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000538/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Dimwamwa, Elaida (2023) EDtest2 (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000539",
+ "keywords": "",
+ "name": "EDtest2",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000539/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Liao, Song-Mao; Kleinfeld, David; Rinehart, Duane; University of California San Diego (2023) Dataset for: A change in behavioral state switches the pattern of motor output that underlies rhythmic head and orofacial movements (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000540/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.sciencedirect.com/science/article/pii/S0960982223004566",
+ "file_0": "https://api.dandiarchive.org/api/assets/e5a87e92-d243-4224-bf4a-f32c89b3fc34/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/52ab55b7-09d6-40f1-93db-e1a39f961ecb/download/",
+ "file_size_0": "89874104.0",
+ "file_size_1": "104696408.0",
+ "identifier": "DANDI:000540",
+ "keywords": "['breathing', 'coupled oscillators', 'electromyogram', 'foraging', 'muscles', 'nose', 'preBotzinger complex', 'rearing', 'vibrissae', 'whiskers', 'neck']",
+ "name": "Dataset for: A change in behavioral state switches the pattern of motor output that underlies rhythmic head and orofacial movements",
+ "num_bytes": "1003937347960",
+ "num_files": "990",
+ "numb_subjects": "33.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-SLR110",
+ "parent_folder_1": "sub-SLR090",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000540/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['BehavioralTimeSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sprague, Daniel (2023) NeuroPAL Microfluidic Chip Images and GCaMP activity (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/e5f33fb4-3f23-4128-b19c-137c14378071/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/f6ebc65c-53bb-4f94-be41-c64209c4c9fb/download/",
+ "file_size_0": "1452703188.0",
+ "file_size_1": "1453953244.0",
+ "identifier": "DANDI:000541",
+ "keywords": "",
+ "name": "NeuroPAL Microfluidic Chip Images and GCaMP activity",
+ "num_bytes": "27615738143",
+ "num_files": "19",
+ "numb_subjects": "19.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "NC-0",
+ "nwbe_compatibility_1": "NC-0",
+ "parent_folder_0": "sub-20190928-07",
+ "parent_folder_1": "sub-20190925-04",
+ "schemaKey": "Dandiset",
+ "species": "Caenorhabditis elegans",
+ "url": "https://dandiarchive.org/dandiset/000541/draft",
+ "validation_summary": "ERROR",
+ "variableMeasured": "['PlaneSegmentation', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Rinehart, Duane (2023) test (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000542",
+ "keywords": "",
+ "name": "test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000542/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Liao, Song-Mao (2023) Test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000543/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000543",
+ "keywords": "",
+ "name": "Test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000543/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Bakshi, Kushal (2023) Test Dataset (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000544/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/a87aab18-75dd-4c4c-b4f4-942ccfccb594/download/",
+ "file_1": "",
+ "file_size_0": "485784554.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000544",
+ "keywords": "",
+ "name": "Test Dataset",
+ "num_bytes": "971759812",
+ "num_files": "3",
+ "numb_subjects": "2.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "NC-1",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-484677",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000544/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['BehavioralEvents', 'BehavioralTimeSeries', 'Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Bakshi, Kushal (2023) Test set (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000545/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/1f30f802-17dc-47db-abb9-da663e959ec0/download/",
+ "file_1": "",
+ "file_size_0": "190704.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000545",
+ "keywords": "",
+ "name": "Test set",
+ "num_bytes": "190704",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-001",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000545/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Christian, Horea (2023) vStr_phase_stim (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000546/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/dfdf86c1-3b1b-45da-b2b5-250a638e85af/download/",
+ "file_1": "",
+ "file_size_0": "7785862944.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000546",
+ "keywords": "",
+ "name": "vStr_phase_stim",
+ "num_bytes": "7785862944",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-M322",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000546/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectrodeGroup', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhao, Yue; Gan, Yiming; Kelley, Douglas; Holstein-R\u00f8nsbo, Stephanie; Boster, Kimberly; Thomas, John; Nedergaard, Maiken (2023) Perivascular Pumping of Cerebrospinal Fluid in the Brain with a Valve Mechanism (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000547/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/06c72ea1-a3de-4c52-895c-b21f6bc9da78/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/aef47a7d-979a-4491-bb62-f08bd0e16aa5/download/",
+ "file_size_0": "176978886.0",
+ "file_size_1": "177727966.0",
+ "identifier": "DANDI:000547",
+ "keywords": "[]",
+ "name": "Perivascular Pumping of Cerebrospinal Fluid in the Brain with a Valve Mechanism",
+ "num_bytes": "17585558608",
+ "num_files": "70",
+ "numb_subjects": "9.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-310",
+ "parent_folder_1": "sub-309",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000547/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['OpticalChannel', 'ImagingPlane', 'ProcessingModule', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii; Semenov, Iurii; Pakhomov, Andrei (2023) Effect of the number of pulses on electroporation by unipolar and 50 % bipolar pulses (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000548/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.bioelechem.2022.108319",
+ "file_0": "https://api.dandiarchive.org/api/assets/ad15a104-b574-4855-b70a-903fb46c37ed/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/4f327e1a-ab34-4d27-8650-65707978003c/download/",
+ "file_size_0": "1022353847.0",
+ "file_size_1": "1032098503.0",
+ "identifier": "DANDI:000548",
+ "keywords": "[]",
+ "name": "Effect of the number of pulses on electroporation by unipolar and 50 % bipolar pulses",
+ "num_bytes": "19823052053",
+ "num_files": "19",
+ "numb_subjects": "19.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Fig3-Uni5-06",
+ "parent_folder_1": "sub-Fig3-Bi5-10",
+ "schemaKey": "Dandiset",
+ "species": "Bos taurus - Cattle",
+ "url": "https://dandiarchive.org/dandiset/000548/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii; Semenov, Iurii; Pakhomov, Andrei (2023) Effect of the pulse duration on electroporation by unipolar and 50% bipolar pulses (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.bioelechem.2022.108319",
+ "file_0": "https://api.dandiarchive.org/api/assets/ecd4cc5c-41bb-4c07-b20f-9b3036da1109/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/948fe67d-2b46-4902-8f06-21a24f6c0fc2/download/",
+ "file_size_0": "1010856797.0",
+ "file_size_1": "1013643377.0",
+ "identifier": "DANDI:000549",
+ "keywords": "[]",
+ "name": "Effect of the pulse duration on electroporation by unipolar and 50% bipolar pulses",
+ "num_bytes": "40412790236",
+ "num_files": "26",
+ "numb_subjects": "25.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Fig4-5-Bi300ns-04",
+ "parent_folder_1": "sub-Fig4-5-Bi300ns-08",
+ "schemaKey": "Dandiset",
+ "species": "Bos taurus - Cattle",
+ "url": "https://dandiarchive.org/dandiset/000549/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii ; Semenov, Iurii; Pakhomov, Andrei (2023) Pulse repetition rate (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000550/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.bioelechem.2022.108319",
+ "file_0": "https://api.dandiarchive.org/api/assets/ab88ec8f-eda9-4ba9-af0d-a4f8c0e299cd/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b443d5fb-c8ae-4257-aa97-349db34cd9a0/download/",
+ "file_size_0": "1027670541.0",
+ "file_size_1": "1028448664.0",
+ "identifier": "DANDI:000550",
+ "keywords": "[]",
+ "name": "Pulse repetition rate",
+ "num_bytes": "23579017779",
+ "num_files": "17",
+ "numb_subjects": "17.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Fig6-5xBi-0,83MHz-13",
+ "parent_folder_1": "sub-Fig6-5xBi-100kHz-11",
+ "schemaKey": "Dandiset",
+ "species": "Bos taurus - Cattle",
+ "url": "https://dandiarchive.org/dandiset/000550/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Valero, Manuel (2023) Probing subthreshold dynamics of hippocampal neurons by pulsed optogenetics (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000551/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000551",
+ "keywords": "[]",
+ "name": "Probing subthreshold dynamics of hippocampal neurons by pulsed optogenetics",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000551/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Husz\u00e1r, Roman; Zhang, Yunchang; Blockus, Heike; Buzs\u00e1ki, Gy\u00f6rgy (2023) Preconfigured dynamics in the hippocampus are guided by embryonic birthdate and rate of neurogenesis (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000552/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41593-022-01138-x",
+ "file_0": "https://api.dandiarchive.org/api/assets/b2bc6332-5cf3-4a65-b1a4-0a712dd4b873/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/66b3cd92-13f7-4411-aae4-f1a06875dc98/download/",
+ "file_size_0": "19474435.0",
+ "file_size_1": "22454373.0",
+ "identifier": "DANDI:000552",
+ "keywords": "['Hippocampus', 'Neural circuits', 'Development of the nervous system']",
+ "name": "Preconfigured dynamics in the hippocampus are guided by embryonic birthdate and rate of neurogenesis",
+ "num_bytes": "1545387836482",
+ "num_files": "117",
+ "numb_subjects": "17.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-e13-1m1",
+ "parent_folder_1": "sub-e14-1m1",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000552/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'ProcessingModule', 'ElectrodeGroup', 'LFP', 'SpatialSeries', 'Position', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Tchoe, Youngbin (2023) Human brain mapping with multithousand-channel PtNRGrids resolves spatiotemporal dynamics (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000554/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/f8750a18-388c-4e8c-96f5-d4713b7442a1/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/cb2b9718-7945-456c-b6bd-61e263e8476f/download/",
+ "file_size_0": "2285352620.0",
+ "file_size_1": "2805020235.0",
+ "identifier": "DANDI:000554",
+ "keywords": "[]",
+ "name": "Human brain mapping with multithousand-channel PtNRGrids resolves spatiotemporal dynamics",
+ "num_bytes": "129066795249",
+ "num_files": "36",
+ "numb_subjects": "4.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-YBT-Rat2-ECoG1024",
+ "parent_folder_1": "sub-YBT-Rat4-ECoG1024",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000554/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectrodeGroup', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Moss, Elizabeth (2023) Conserved neural dynamics across species in olfaction (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000555/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000555",
+ "keywords": "",
+ "name": "Conserved neural dynamics across species in olfaction",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000555/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Zhang, James (2023) First set (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000556/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000556",
+ "keywords": "",
+ "name": "First set",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000556/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Tchoe, Youngbin (2023) Human brain mapping with multithousand-channel PtNRGrids resolves spatiotemporal dynamics (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000557/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000557",
+ "keywords": "[]",
+ "name": "Human brain mapping with multithousand-channel PtNRGrids resolves spatiotemporal dynamics",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000557/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Busch, Silas (2023) Climbing fiber multi-innervation of mouse Purkinje dendrites with arborization common to human (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000558",
+ "keywords": "",
+ "name": "Climbing fiber multi-innervation of mouse Purkinje dendrites with arborization common to human",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000558/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Markowitz, Jeffrey E.; Gillis, Winthrop; Jay, Maya; Wood, Jeffrey; Harris, Ryley W.; Cieszkowski, Robert; Scott, Rebecca; Brann, David; Koveal, Dorothy; Kula, Tomasz; Weinreb, Caleb; Osman, Mohammed Abdal Monium ; Pinto, Sandra Romero ; Uchida, Naoshige ; Linderman, Scott W.; Sabatini, Bernardo; Datta, Sandeep Robert (2023) Spontaneous behaviour is structured by reinforcement without explicit reward (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.nature.com/articles/s41586-022-05611-2",
+ "file_0": "https://api.dandiarchive.org/api/assets/c36cbd7d-e2e1-44f9-aaec-4c52b1b6ebfa/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/95c758de-9ffb-4965-9ea3-da6958882320/download/",
+ "file_size_0": "130018330.0",
+ "file_size_1": "131044879.0",
+ "identifier": "DANDI:000559",
+ "keywords": "['Basal Ganglia', 'Neural circuits', 'Reward']",
+ "name": "Spontaneous behaviour is structured by reinforcement without explicit reward",
+ "num_bytes": "9087583646096",
+ "num_files": "2937",
+ "numb_subjects": "60.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "NC-0",
+ "nwbe_compatibility_1": "NC-1",
+ "parent_folder_0": "sub-5891",
+ "parent_folder_1": "sub-HEK293",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000559/draft",
+ "validation_summary": "ERROR",
+ "variableMeasured": "['ImagingPlane', 'OpticalChannel', 'Position', 'SpatialSeries', 'CompassDirection', 'OptogeneticSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Srinivasan, Shyam (2023) Calcium imaging of odor responses in the fruit fly mushroom body (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000560/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000560",
+ "keywords": "[]",
+ "name": "Calcium imaging of odor responses in the fruit fly mushroom body",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000560/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Koloski, Miranda (2023) 32-CH Local Field Potential Data During Probabilistic Reversal Learning Task (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/906749cb-a294-42d5-8879-2a5673501840/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/355e758a-90fc-4828-bef0-7d2842104b20/download/",
+ "file_size_0": "207784.0",
+ "file_size_1": "207784.0",
+ "identifier": "DANDI:000561",
+ "keywords": "",
+ "name": "32-CH Local Field Potential Data During Probabilistic Reversal Learning Task",
+ "num_bytes": "21349610832",
+ "num_files": "253",
+ "numb_subjects": "20.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-192",
+ "parent_folder_1": "sub-185",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000561/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Cheng, Ji-Xin (2023) microwave neuromodulation (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000564/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000564",
+ "keywords": "",
+ "name": "microwave neuromodulation",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000564/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Sprague, Daniel; Dunn, Raymond (2023) C. elegans whole-brain neuroPAL and immobilized calcium imaging (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/79d3a9d6-8314-431f-b320-98bad02cef8c/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3515cee9-b3d5-4b50-8b8b-40f5a7c44af7/download/",
+ "file_size_0": "253712864.0",
+ "file_size_1": "253713640.0",
+ "identifier": "DANDI:000565",
+ "keywords": "[]",
+ "name": "C. elegans whole-brain neuroPAL and immobilized calcium imaging",
+ "num_bytes": "102885623767",
+ "num_files": "39",
+ "numb_subjects": "22.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "NC-0",
+ "nwbe_compatibility_1": "NC-0",
+ "parent_folder_0": "sub-20221106-21-00-09",
+ "parent_folder_1": "sub-20221028-18-48-00",
+ "schemaKey": "Dandiset",
+ "species": "Caenorhabditis elegans",
+ "url": "https://dandiarchive.org/dandiset/000565/draft",
+ "validation_summary": "ERROR",
+ "variableMeasured": "['PlaneSegmentation', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Lin, Michael (2023) ASAP4 data (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000566/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/91a4b9c2-17e5-4da4-a718-d3682873f6e6/download/",
+ "file_1": "",
+ "file_size_0": "631788071.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000566",
+ "keywords": "",
+ "name": "ASAP4 data",
+ "num_bytes": "631788071",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-fly01",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Drosophila melanogaster - Fruit fly",
+ "url": "https://dandiarchive.org/dandiset/000566/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ImagingPlane', 'OpticalChannel', 'TwoPhotonSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Yin, Jiaze (2023) Tested (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000567/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000567",
+ "keywords": "[]",
+ "name": "Tested",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000567/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Valero, Manuel; Zutshi, Ipshita; Yoon, Euisik; Buzs\u00e1ki, Gy\u00f6rgy (2023) Probing subthreshold dynamics of hippocampal neurons by pulsed optogenetics (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.science.org/doi/10.1126/science.abm1891",
+ "file_0": "https://api.dandiarchive.org/api/assets/e7e5f461-ae0a-4d56-aed4-b89ff2ca8a22/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/fa6cff6b-633b-4fbe-a1e0-737a23458a6d/download/",
+ "file_size_0": "7161344.0",
+ "file_size_1": "18008280.0",
+ "identifier": "DANDI:000568",
+ "keywords": "[]",
+ "name": "Probing subthreshold dynamics of hippocampal neurons by pulsed optogenetics",
+ "num_bytes": "904756915175",
+ "num_files": "138",
+ "numb_subjects": "4.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-fCamk2",
+ "parent_folder_1": "sub-fCamk1",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000568/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['LFP', 'Units', 'SpatialSeries', 'ElectrodeGroup', 'ElectricalSeries', 'Position', 'ProcessingModule', 'OptogeneticSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Mei, Nicholas; Lee, Brian; Kalmbach, Brian; Dalley, Rachel; Lein, Ed (2023) 20230630_AIBS_Patchseq_nonhuman_primate (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000569/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/c69ed191-c27c-4e63-901a-38c414875342/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/f9a896d5-a007-4f19-a80c-6d0650e9356a/download/",
+ "file_size_0": "25646859.0",
+ "file_size_1": "25973972.0",
+ "identifier": "DANDI:000569",
+ "keywords": "['Patch-seq', 'non-human primate', 'multimodal']",
+ "name": "20230630_AIBS_Patchseq_nonhuman_primate",
+ "num_bytes": "5622625870",
+ "num_files": "103",
+ "numb_subjects": "9.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-1223010848",
+ "parent_folder_1": "sub-1257702203",
+ "schemaKey": "Dandiset",
+ "species": "Macaca nemestrina - Pigtail macaque",
+ "url": "https://dandiarchive.org/dandiset/000569/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['VoltageClampStimulusSeries', 'CurrentClampStimulusSeries', 'ProcessingModule', 'CurrentClampSeries', 'VoltageClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Mei, Nicholas; Lee, Brian; Kalmbach, Brian; Chartrand, Tom; Dalley, Rachel; Lein, Ed (2023) 20230630_AIBS_Patchseq_human (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000570/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/2ecbc097-e4bc-408b-afab-9cf43ab57e14/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/8f529ffc-2433-423f-b37c-65fc4371933f/download/",
+ "file_size_0": "13361172.0",
+ "file_size_1": "14214950.0",
+ "identifier": "DANDI:000570",
+ "keywords": "['Patch-seq', 'human', 'multimodal']",
+ "name": "20230630_AIBS_Patchseq_human",
+ "num_bytes": "4628300559",
+ "num_files": "155",
+ "numb_subjects": "58.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-665691251",
+ "parent_folder_1": "sub-731978186",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000570/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'VoltageClampSeries', 'CurrentClampStimulusSeries', 'VoltageClampStimulusSeries', 'CurrentClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Mivalt, Filip; van den Boom, Max; Brunner, Peter; Kim, Jiwon; Duque-Lopez, Andrea; Krakorova, Martina; Kim, Inyong; Chang, Su-youne; Hermes, Dora; Miller, Kai J.; Kremen, Vaclav; Worrell, Gregory A. (2023) Intracranial recordings using BCI2000 and the CorTec BrainInterchange (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000571/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Brain Imaging Data Structure (BIDS)",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000571",
+ "keywords": "[]",
+ "name": "Intracranial recordings using BCI2000 and the CorTec BrainInterchange",
+ "num_bytes": "195380013",
+ "num_files": "201",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000571/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Activity map of a cortico-cerebellar loop underlying motor planning (2023). (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000572/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/34b041ef-876d-4f6e-87d5-2a74ab8ad83a/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/a65ef979-276e-495f-ae84-a9fe0d1df203/download/",
+ "file_size_0": "400207656.0",
+ "file_size_1": "424885840.0",
+ "identifier": "DANDI:000572",
+ "keywords": "[]",
+ "name": "Activity map of a cortico-cerebellar loop underlying motor planning",
+ "num_bytes": "311812040462",
+ "num_files": "289",
+ "numb_subjects": "37.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-BAYLORZJP01",
+ "parent_folder_1": "sub-BAYLORNL28",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000572/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['OptogeneticSeries', 'SpikeEventSeries', 'ElectrodeGroup', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Boran, Ece; Fedele, Tommaso; Hilfiker, Peter; Stieglitz, Lennart; Grunwald, Thomas; Hohenheim, Jan; Sarnthein, Johannes (2023) Dataset of human medial temporal lobe neurons, scalp and intracranial EEG during a verbal working memory task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000574/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/janhohenheim/usz-neuro-conversion",
+ "file_0": "https://api.dandiarchive.org/api/assets/4fa2605b-16dd-47e9-a083-5a853f46c000/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/a557a7a9-2bb2-4b89-832d-934e77a77c73/download/",
+ "file_size_0": "1355186134.0",
+ "file_size_1": "1381356902.0",
+ "identifier": "DANDI:000574",
+ "keywords": "['Electrophysiology ', 'Human', 'Awake', 'Local field potential', 'Neuronal action potential', 'Spikes', 'Medial temporal lobe', 'Hippocampus', 'Entorhinal cortex', 'Amygdala', 'Scalp EEG', 'Intracranial EEG', 'Cognitive task', 'Verbal working memory', 'Epilepsy']",
+ "name": "Dataset of human medial temporal lobe neurons, scalp and intracranial EEG during a verbal working memory task",
+ "num_bytes": "127123747370",
+ "num_files": "43",
+ "numb_subjects": "9.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-05",
+ "parent_folder_1": "sub-01",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000574/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'LFP', 'ElectrodeGroup', 'ElectricalSeries', 'ProcessingModule', 'BehavioralEvents']",
+ "version": "draft"
+ },
+ {
+ "citation": "Boran, Ece; Hilfiker, Peter; Stieglitz, Lennart ; Hohenheim, Jan; Klaver, Peter; Sarnthein, Johannes (2023) Dataset of human medial temporal lobe neurons during a visual working memory task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000575/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://gin.g-node.org/USZ_NCH/Human_MTL_units_visual_WM",
+ "file_0": "https://api.dandiarchive.org/api/assets/ba30fc51-fabb-4f09-b773-b783b6f17d95/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e96a31c3-b4c2-434b-979e-8d7b56f0b635/download/",
+ "file_size_0": "718656.0",
+ "file_size_1": "819080.0",
+ "identifier": "DANDI:000575",
+ "keywords": "[]",
+ "name": "Dataset of human medial temporal lobe neurons during a visual working memory task",
+ "num_bytes": "44196026110",
+ "num_files": "17",
+ "numb_subjects": "12.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-12",
+ "parent_folder_1": "sub-02",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000575/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'BehavioralEvents', 'ElectrodeGroup', 'ProcessingModule', 'LFP', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Fedele, Tommaso; Hilfiker, Peter ; Grunwald, Thomas ; Stieglitz, Lennart ; Jokeit, Hennric; Hohenheim, Jan; Sarnthein, Johannes (2023) Dataset of neurons and intracranial EEG from human amygdala during aversive dynamic visual stimulation (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuroimage.2020.116705",
+ "file_0": "https://api.dandiarchive.org/api/assets/f1b3e78b-adfb-414c-96ea-7a3cea89a6cb/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/20f45cda-1732-4692-a18f-51f3ea3e1d1e/download/",
+ "file_size_0": "14062137.0",
+ "file_size_1": "14062778.0",
+ "identifier": "DANDI:000576",
+ "keywords": "[]",
+ "name": "Dataset of neurons and intracranial EEG from human amygdala during aversive dynamic visual stimulation",
+ "num_bytes": "196057536",
+ "num_files": "11",
+ "numb_subjects": "9.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-08",
+ "parent_folder_1": "sub-05",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000576/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['ProcessingModule', 'LFP', 'Units', 'ElectricalSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sloan, Aliza (2023) Emergence of Agency in Human Infants (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000577/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000577",
+ "keywords": "['behavioral neuroscience', 'complex systems', 'coordination dynamics', 'self-organization', 'agency', 'developmental psychology', 'infancy', 'timeseries', 'mocap']",
+ "name": "Emergence of Agency in Human Infants",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000577/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Tseng, Shih-Yi; Chettih, Selmaan; Harvey, Christopher (2023) Two-photon calcium imaging of mouse posterior cortical areas during dynamic navigation decisions (Tseng et al., 2022, Neuron) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000579/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2022.05.012",
+ "file_0": "https://api.dandiarchive.org/api/assets/2332537e-2b80-4a52-a1f0-aa38f9b43399/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/080f2b2e-a591-4353-bcbe-573c1cb29846/download/",
+ "file_size_0": "267004072.0",
+ "file_size_1": "267004072.0",
+ "identifier": "DANDI:000579",
+ "keywords": "['mouse', 'cortex', 'decision-making', 'navigation', 'virtual reality', 'two-photon imaging', 'posterior cortex', 'posterior parietal cortex', 'retrosplenial cortex', 'visual cortex', 'rule-switching', 'flexible decisions', 'retrograde labeling']",
+ "name": "Two-photon calcium imaging of mouse posterior cortical areas during dynamic navigation decisions (Tseng et al., 2022, Neuron)",
+ "num_bytes": "245591965505",
+ "num_files": "308",
+ "numb_subjects": "8.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-10",
+ "parent_folder_1": "sub-6",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000579/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ImagingPlane', 'ProcessingModule', 'OpticalChannel', 'Position', 'SpatialSeries', 'BehavioralTimeSeries', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sargolini, Francesca; Fyhn, Marianne; Hafting, Torkel; McNaughton, Bruce L.; Witter, Menno P.; Moser, May-Britt; Moser, Edvard I.; Waade, Haagen; Ball, Simon (2023) Conjunctive Representation of Position, Direction, and Velocity in Entorhinal Cortex (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000582/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1126/science.1125572",
+ "file_0": "https://api.dandiarchive.org/api/assets/4718021c-98c7-4241-95b8-09be6e7dbacb/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/a1b081bb-7d0a-4c2f-8fb7-5639fce88aa8/download/",
+ "file_size_0": "3747458.0",
+ "file_size_1": "10929406.0",
+ "identifier": "DANDI:000582",
+ "keywords": "[]",
+ "name": "Conjunctive Representation of Position, Direction, and Velocity in Entorhinal Cortex",
+ "num_bytes": "1812381475",
+ "num_files": "115",
+ "numb_subjects": "14.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-10884",
+ "parent_folder_1": "sub-10697",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000582/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ElectricalSeries', 'Position', 'Units', 'ElectrodeGroup', 'ProcessingModule', 'LFP', 'SpatialSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Cherepashensky, Mark (2023) A Novel Neuropathic Pain Treatment: Achieving Neuronal Inhibition with a Splti Ring Resonator (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/7a9d687e-fe96-44ea-a845-f3f5e2ed93fc/download/",
+ "file_1": "",
+ "file_size_0": "2516038432.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000615",
+ "keywords": "",
+ "name": "A Novel Neuropathic Pain Treatment: Achieving Neuronal Inhibition with a Splti Ring Resonator",
+ "num_bytes": "1805447304",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-001",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Procambarus clarkii - Red swamp crayfish",
+ "url": "https://dandiarchive.org/dandiset/000615/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Magland, Jeremy; Jun, James J; Lovero, Elizabeth; Morley, Alexander J; Hurwitz, Cole Lincoln; Buccino, Alessio Paolo; Garcia, Samuel; Barnett, Alex H; English, Daniel (2023) SpikeForest ground truth datasets (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000618/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.biorxiv.org/content/10.1101/370080v1",
+ "file_0": "https://api.dandiarchive.org/api/assets/99fcc628-1cf2-46f2-bfdc-0fe8985b42c7/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/fa7562ee-e978-425e-a07a-02165a698612/download/",
+ "file_size_0": "924770.0",
+ "file_size_1": "25411520.0",
+ "identifier": "DANDI:000618",
+ "keywords": "[]",
+ "name": "SpikeForest ground truth datasets",
+ "num_bytes": "145521718882",
+ "num_files": "124",
+ "numb_subjects": "4.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000618/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'ElectricalSeries', 'ElectrodeGroup', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Higley, Michael (2023) Benisty_Higley_2023 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000619/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000619",
+ "keywords": "",
+ "name": "Benisty_Higley_2023",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000619/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Keles, Umit; Dubois, Julien; Mei, Kevin; Tyszka, J. Michael; Kahn, David A.; Reed, Chrystal M.; Chung, Jeffrey M. ; Mamelak, Adam N.; Adolphs, Ralph; Rutishauser, Ueli (2023) Multimodal brain responses during movie watching: single-neuron, intracranial EEG, and fMRI in human patients (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/aea3c535-a69a-41a6-9ffc-ceea9c7e6bae/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/ffcb1836-587e-42f4-887b-50b02948b779/download/",
+ "file_size_0": "548202540.0",
+ "file_size_1": "803882951.0",
+ "identifier": "DANDI:000623",
+ "keywords": "[]",
+ "name": "Multimodal brain responses during movie watching: single-neuron, intracranial EEG, and fMRI in human patients",
+ "num_bytes": "27252547993",
+ "num_files": "28",
+ "numb_subjects": "16.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-CS62",
+ "parent_folder_1": "sub-CS41",
+ "schemaKey": "Dandiset",
+ "species": "Homo sapiens - Human",
+ "url": "https://dandiarchive.org/dandiset/000623/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'LFP', 'EyeTracking', 'ElectrodeGroup', 'BehavioralTimeSeries', 'PupilTracking', 'SpatialSeries', 'ProcessingModule', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Rinehart, Duane; Amalia Callado-P\u00e9rez; Kleinfeld, David; Fassihi, Arash; Dech\u00eanes, Martin; Moore, Jeffrey D.; Demers, Maxime (2023) A brainstem circuit for the expression of defensive facial reactions in rat (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/e095fd65-120b-4ed0-83d8-23bc279d0b42/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/43d3c226-05fc-414c-8bb1-c86a83f2bb29/download/",
+ "file_size_0": "193952.0",
+ "file_size_1": "193952.0",
+ "identifier": "DANDI:000624",
+ "keywords": "[]",
+ "name": "A brainstem circuit for the expression of defensive facial reactions in rat",
+ "num_bytes": "130570933952",
+ "num_files": "45",
+ "numb_subjects": "10.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Rat335",
+ "parent_folder_1": "sub-Rat332",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000624/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "['ProcessingModule', 'Units', 'BehavioralEvents']",
+ "version": "draft"
+ },
+ {
+ "citation": "Geiller, Tristan (2023) Molecularly Identified CA1 Interneuron Dynamics (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000625/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.1016/j.neuron.2020.09.013",
+ "file_0": "https://api.dandiarchive.org/api/assets/274df0e2-a678-4d74-8e6a-99953eefbb47/download/",
+ "file_1": "",
+ "file_size_0": "24710876.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000625",
+ "keywords": "['2-photon calcium imaging', 'interneuron', 'hippocampus', 'ca1', 'mouse', 'head-fixed', 'treadmill', 'Losonczy Lab', 'Columbia University']",
+ "name": "Molecularly Identified CA1 Interneuron Dynamics",
+ "num_bytes": "74904128",
+ "num_files": "3",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-tg19",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000625/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['BehavioralEpochs', 'ProcessingModule', 'SpatialSeries', 'TwoPhotonSeries', 'Position', 'ImagingPlane', 'OpticalChannel', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Blauvelt, Lon (2023) Neural Organoid Ephys Trace (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000626",
+ "keywords": "[]",
+ "name": "Neural Organoid Ephys Trace",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000626/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Xiao, Will; Sharma, Saloni; Kreiman, Gabriel; Livingstone, Margaret; National Institutes of Health (2023) Extracellular recording along macaque ventral stream during natural image free viewing (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000628/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/e9f25cc3-bc88-4c4f-8543-12173c6084cc/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/02c2a27e-ce0a-4b23-b789-b88ac00ea1f7/download/",
+ "file_size_0": "206655.0",
+ "file_size_1": "214079.0",
+ "identifier": "DANDI:000628",
+ "keywords": "['Macaque', 'Ventral stream', 'Free viewing', 'Natural images', 'Extracellular electrophysiology']",
+ "name": "Extracellular recording along macaque ventral stream during natural image free viewing",
+ "num_bytes": "52741296155",
+ "num_files": "2037",
+ "numb_subjects": "13.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-Bf",
+ "parent_folder_1": "sub-Ve",
+ "schemaKey": "Dandiset",
+ "species": "Macaca mulatta - Rhesus monkey",
+ "url": "https://dandiarchive.org/dandiset/000628/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['EyeTracking', 'SpatialSeries', 'ProcessingModule']",
+ "version": "draft"
+ },
+ {
+ "citation": "Gillespie, Anna (2023) Gillespie et al (2023) Neurofeedback training can modulate task-relevant memory replay rate in rats (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/f99971c3-ab62-40be-a494-d4a654f6b0f1/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/24d79d6e-5d24-4a84-8de1-b273fdff62db/download/",
+ "file_size_0": "65300947026.0",
+ "file_size_1": "69467989554.0",
+ "identifier": "DANDI:000629",
+ "keywords": "",
+ "name": "Gillespie et al (2023) Neurofeedback training can modulate task-relevant memory replay rate in rats",
+ "num_bytes": "16604822159908",
+ "num_files": "113",
+ "numb_subjects": "4.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-gus",
+ "parent_folder_1": "sub-remy",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000629/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['Position', 'ElectricalSeries', 'ProcessingModule', 'SpatialSeries', 'BehavioralEvents']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chartrand, Thomas; Lee, Brian; Dalley, Rachel; Lein, Ed; Kalmbach, Brian (2023) Human L1 patch-seq electrophysiology (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000630/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/0f28edea-b0b3-46de-bef6-bd061b6b564f/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b6894865-4680-4851-be6e-1d7e29619418/download/",
+ "file_size_0": "15151172.0",
+ "file_size_1": "15552069.0",
+ "identifier": "DANDI:000630",
+ "keywords": "['human', 'multimodal', 'patch-seq', 'neocortex']",
+ "name": "Human L1 patch-seq electrophysiology",
+ "num_bytes": "8073127848",
+ "num_files": "210",
+ "numb_subjects": "53.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-700619648",
+ "parent_folder_1": "sub-596832620",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000630/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'VoltageClampSeries', 'CurrentClampStimulusSeries', 'VoltageClampStimulusSeries', 'CurrentClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii; Semenov, Iurii; Pakhomov, Andrei (2023) Effect of the electric field vector change on the electroporation efficiency of paired-pulse trains compared to single-pulse trains (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000631/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.3390/ijms241310921",
+ "file_0": "https://api.dandiarchive.org/api/assets/5c4ff26e-bced-4632-bffa-9db2c182c122/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/cfb37f51-3ef6-41d3-8b38-1f39c56cd704/download/",
+ "file_size_0": "1040653224.0",
+ "file_size_1": "1041969715.0",
+ "identifier": "DANDI:000631",
+ "keywords": "[]",
+ "name": "Effect of the electric field vector change on the electroporation efficiency of paired-pulse trains compared to single-pulse trains",
+ "num_bytes": "18379955860",
+ "num_files": "15",
+ "numb_subjects": "15.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-600ns-5kV-1HzUP-7-31-21-BPAE-10",
+ "parent_folder_1": "sub-600ns-5kV-1HzUP-8-9-21-BPAE-14",
+ "schemaKey": "Dandiset",
+ "species": "Bos taurus - Cattle",
+ "url": "https://dandiarchive.org/dandiset/000631/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii; Semenov, Iurii; Pakhomov, Andrei (2023) Electroporation efficiency of co-directional and cross-directional paired pulses (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000632/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.3390/ijms241310921",
+ "file_0": "https://api.dandiarchive.org/api/assets/5ea18bc2-9f93-47b3-8238-999b77e193fe/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e00c226d-8cc9-4b6b-acb9-98b74198c456/download/",
+ "file_size_0": "1744383366.0",
+ "file_size_1": "1746361673.0",
+ "identifier": "DANDI:000632",
+ "keywords": "[]",
+ "name": "Electroporation efficiency of co-directional and cross-directional paired pulses",
+ "num_bytes": "42744120707",
+ "num_files": "24",
+ "numb_subjects": "24.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-BPAE-8bipolar-1Hz-12",
+ "parent_folder_1": "sub-BPAE-8unipolar-770kHz-06",
+ "schemaKey": "Dandiset",
+ "species": "Bos taurus - Cattle",
+ "url": "https://dandiarchive.org/dandiset/000632/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii; Semenov, Iurii; Pakhomov, Andrei (2023) The difference in electroporation patterns produced by a train of single pulses and a train of paired pulses (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000633/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://doi.org/10.3390/ijms241310921",
+ "file_0": "https://api.dandiarchive.org/api/assets/e227c013-22d7-4bd9-a567-85468e85b2e3/download/",
+ "file_1": "",
+ "file_size_0": "1077539327.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000633",
+ "keywords": "[]",
+ "name": "The difference in electroporation patterns produced by a train of single pulses and a train of paired pulses",
+ "num_bytes": "2137420087",
+ "num_files": "2",
+ "numb_subjects": "2.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-Single-pulse-trains",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Bos taurus - Cattle",
+ "url": "https://dandiarchive.org/dandiset/000633/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Kim, Vitalii; Semenov, Iurii; Pakhomov, Andrei (2023) Cell Membrane Charging by Co- and Counter-Directional ns electrical pulses (nsEP) (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000634/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://www.mdpi.com/1422-0067/24/13/10921",
+ "file_0": "https://api.dandiarchive.org/api/assets/7dc56eb6-8258-4678-98c7-fc1e1cdd7983/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/80a9300a-d680-40d6-8279-f19a5c4db450/download/",
+ "file_size_0": "101403100.0",
+ "file_size_1": "101469915.0",
+ "identifier": "DANDI:000634",
+ "keywords": "[]",
+ "name": "Cell Membrane Charging by Co- and Counter-Directional ns electrical pulses (nsEP)",
+ "num_bytes": "1035526841",
+ "num_files": "10",
+ "numb_subjects": "10.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-ground2204-15",
+ "parent_folder_1": "sub-ground2204-16",
+ "schemaKey": "Dandiset",
+ "species": "Cricetulus griseus - Cricetulus aureus",
+ "url": "https://dandiarchive.org/dandiset/000634/draft",
+ "validation_summary": "CRITICAL",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Soliman, Sherif; Lee, Brian; Allen Institute for Brian Science; National Institute of Mental Health; Kalmbach, Brian; Dalley, Rachel; Lein, Ed (2023) 20230930_AIBS_Patchseq_nonhuman_primate (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000635/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/e610a258-634a-458a-b635-e6c2641b7228/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/eaaae56e-99d5-4203-aae8-2cd08fa0994b/download/",
+ "file_size_0": "25989157.0",
+ "file_size_1": "26899973.0",
+ "identifier": "DANDI:000635",
+ "keywords": "['Patch-seq', 'non-human primate', 'multimodal']",
+ "name": "20230930_AIBS_Patchseq_nonhuman_primate",
+ "num_bytes": "4707135438",
+ "num_files": "81",
+ "numb_subjects": "8.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-1271976045",
+ "parent_folder_1": "sub-1273579455",
+ "schemaKey": "Dandiset",
+ "species": "Macaca nemestrina",
+ "url": "https://dandiarchive.org/dandiset/000635/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['CurrentClampSeries', 'CurrentClampStimulusSeries', 'VoltageClampSeries', 'ProcessingModule', 'VoltageClampStimulusSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Lee, Brian; Dalley, Rachel; Chartrand, Thomas; Kalmbach, Brian; Lein, Ed (2023) Human interneuron patch-seq electrophysiology (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000636/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/c40d0858-94b7-454d-80bc-9d7836c6c294/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/7507c554-12ab-4a97-a51e-06f8e995c6ad/download/",
+ "file_size_0": "12734164.0",
+ "file_size_1": "13180927.0",
+ "identifier": "DANDI:000636",
+ "keywords": "['human', 'multimodal', 'patch-seq', 'neocortex']",
+ "name": "Human interneuron patch-seq electrophysiology",
+ "num_bytes": "24473831989",
+ "num_files": "706",
+ "numb_subjects": "109.0",
+ "nwb_version": "2.3.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-720619787",
+ "parent_folder_1": "sub-643488707",
+ "schemaKey": "Dandiset",
+ "species": "Human",
+ "url": "https://dandiarchive.org/dandiset/000636/draft",
+ "validation_summary": "PYNWB_VALIDATION,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'VoltageClampSeries', 'CurrentClampStimulusSeries', 'VoltageClampStimulusSeries', 'CurrentClampSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Ramachandran, Sandhya; Gao, Huan; He, Bin; Yu, Kai (2023) Neural Spike Time Response Data in Anesthetized Rats in the Primary Somatosensory Cortex with Phased Ultrasound Array Stimulation (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000637/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/95bd02f9-c380-44d6-ad0b-19e065990546/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/cb9c155d-17a8-4c36-901f-5773735eb3d3/download/",
+ "file_size_0": "933272.0",
+ "file_size_1": "1005680.0",
+ "identifier": "DANDI:000637",
+ "keywords": "[]",
+ "name": "Neural Spike Time Response Data in Anesthetized Rats in the Primary Somatosensory Cortex with Phased Ultrasound Array Stimulation",
+ "num_bytes": "1163422160",
+ "num_files": "292",
+ "numb_subjects": "25.0",
+ "nwb_version": "2.5.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-BH460",
+ "parent_folder_1": "sub-BH457",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000637/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Feng, (Susie) Yu (2023) Hippocampus/Entorhinal Cortex Dual Region Silicon Probe recording (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000638/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000638",
+ "keywords": "",
+ "name": "Hippocampus/Entorhinal Cortex Dual Region Silicon Probe recording",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000638/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Boivin, Bruno (2023) test my dandiset 1 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000639/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000639",
+ "keywords": "",
+ "name": "test my dandiset 1",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000639/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Koloski, Miranda ; Ramanathan, Dhakshin (2023) 32-CH Local Field Potential Data During Probabilistic Reversal Learning Task (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000640/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/48b3edb1-d70f-4cba-9c0f-e601dd0d2d88/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/f2af98a7-41cf-4b8b-b53d-e2affb10118a/download/",
+ "file_size_0": "208056.0",
+ "file_size_1": "208056.0",
+ "identifier": "DANDI:000640",
+ "keywords": "['electrophysiology', 'rodent behavior', 'reversal learning', 'traumatic brain injury']",
+ "name": "32-CH Local Field Potential Data During Probabilistic Reversal Learning Task",
+ "num_bytes": "30511569704",
+ "num_files": "339",
+ "numb_subjects": "24.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-199",
+ "parent_folder_1": "sub-201",
+ "schemaKey": "Dandiset",
+ "species": "Rattus norvegicus - Norway rat",
+ "url": "https://dandiarchive.org/dandiset/000640/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Marx, Slayton (2023) Volumetric multiplex imaging of whole human and non-human primate brains (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000674/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000674",
+ "keywords": "",
+ "name": "Volumetric multiplex imaging of whole human and non-human primate brains",
+ "num_bytes": "4618488962",
+ "num_files": "9",
+ "numb_subjects": "1.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000674/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Kassahun, Ruth (2023) Exploring zebra finch neural activity using Neuropixel Probes (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000676",
+ "keywords": "",
+ "name": "Exploring zebra finch neural activity using Neuropixel Probes",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000676/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Martin, Hannah (2023) Utricular hair cell recordings from mice with constitutive knockout of K+ channel subunit Kv1.8 and wildtype/heterozygous littermates (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000677/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000677",
+ "keywords": "",
+ "name": "Utricular hair cell recordings from mice with constitutive knockout of K+ channel subunit Kv1.8 and wildtype/heterozygous littermates",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000677/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Hulsey, Daniel; Zumwalt, Kevin; Mazzucato, Luca; McCormick, David A.; Jaramillo, Santiago (2023) Pupil and movement measurements during mouse auditory and visual discrimination (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000678/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/sjara/uobrainflex/tree/master/hulsey2023",
+ "file_0": "https://api.dandiarchive.org/api/assets/4a0482ec-e9ad-41cc-a2fa-e65c6e0e0de9/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/b2e2aa29-b4a0-4f83-8047-1f317df31b65/download/",
+ "file_size_0": "5513556.0",
+ "file_size_1": "5532796.0",
+ "identifier": "DANDI:000678",
+ "keywords": "[]",
+ "name": "Pupil and movement measurements during mouse auditory and visual discrimination",
+ "num_bytes": "8108311416",
+ "num_files": "391",
+ "numb_subjects": "13.0",
+ "nwb_version": "2.2.5",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-BW053",
+ "parent_folder_1": "sub-BW051",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000678/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Yeomans, David (2023) Oxytocin receptors on human dorsal root and trigeminal ganglia neurons (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000679/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000679",
+ "keywords": "",
+ "name": "Oxytocin receptors on human dorsal root and trigeminal ganglia neurons",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000679/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Kimura, Kotaro (2023) Whole brain spontaneous activity plus NeuroPAL images of semi-restricted worms (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000680/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000680",
+ "keywords": "[]",
+ "name": "Whole brain spontaneous activity plus NeuroPAL images of semi-restricted worms",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000680/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Wolf, John (2023) Hippocampal Interneuronal Dysfunction and Hyperexcitability in a Porcine Model of Concussion (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000682/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000682",
+ "keywords": "",
+ "name": "Hippocampal Interneuronal Dysfunction and Hyperexcitability in a Porcine Model of Concussion",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000682/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Bakshi, Kushal (2023) Element Calcium Imaging Data Upload (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000683",
+ "keywords": "",
+ "name": "Element Calcium Imaging Data Upload",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000683/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Silkuniene, Giedre; Silkunas, Mantas; Pakhomov, Andrei (2023) Real-time visualization and measurements of individual electropores (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000686/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000686",
+ "keywords": "[]",
+ "name": "Real-time visualization and measurements of individual electropores",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000686/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Saxena, Rajat; Shobe, Justin; McNaughton, Bruce (2023) similarity-weighted interleaved learning (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/0321ffed-a986-4949-bebc-7ad15aa157a1/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/3567a450-8ebe-4c01-8081-a16be5837bce/download/",
+ "file_size_0": "95558629386.0",
+ "file_size_1": "258608564327.0",
+ "identifier": "DANDI:000687",
+ "keywords": "['cortex layers', 'hippocampus', 'learning ', 'memory', 'memory replay', 'memory consolidation']",
+ "name": "similarity-weighted interleaved learning",
+ "num_bytes": "3431932754105",
+ "num_files": "9",
+ "numb_subjects": "8.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-swil11",
+ "parent_folder_1": "sub-swil8",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000687/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectrodeGroup', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Perich, Matthew G.; Miller, Lee E.; Azabou, Mehdi; Dyer, Eva L. (2023) Long-term recordings of motor and premotor cortical spiking activity during reaching in monkeys (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000688/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "https://pubmed.ncbi.nlm.nih.gov/30344047/",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000688",
+ "keywords": "[]",
+ "name": "Long-term recordings of motor and premotor cortical spiking activity during reaching in monkeys",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000688/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Keyes, Laurel (2023) Data supporting Neurotensin orchestrates valence assignment in the amygdala (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000689/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000689",
+ "keywords": "['in vivo electrophysiology', 'mouse', ' Pavlovian discrimination', 'deeplabcut', 'basolateral amygdala (BLA)', 'paraventricular nucleus of the thalamus (PVT)', 'neutotensin', 'valence assignment']",
+ "name": "Data supporting Neurotensin orchestrates valence assignment in the amygdala",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000689/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Scherrer, Joseph R.; Lynch, Galen F.; Zhang, Jie J.; Fee, Michale S. (2023) An optical design enabling lightweight and large field-of-view head-mounted microscopes (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "https://doi.org/10.1038/s41592-023-01806-1",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000691",
+ "keywords": "[]",
+ "name": "An optical design enabling lightweight and large field-of-view head-mounted microscopes",
+ "num_bytes": "105329192",
+ "num_files": "1",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000691/draft",
+ "validation_summary": "",
+ "variableMeasured": "[]",
+ "version": "draft"
+ },
+ {
+ "citation": "Suzuki, Ryoga; Wen, Chentao; Sprague, Daniel; Onami, Shuichi; Kimura, Koutarou D (2023) Whole-brain spontaneous GCaMP activity with NeuroPAL cell ID information of semi-restricted worms (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000692/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/c6ee14c9-b0eb-4384-b0db-aaed493bd187/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/0af9fa87-93a5-44c7-a701-d22439d145b3/download/",
+ "file_size_0": "8689790728.0",
+ "file_size_1": "8795824400.0",
+ "identifier": "DANDI:000692",
+ "keywords": "[]",
+ "name": "Whole-brain spontaneous GCaMP activity with NeuroPAL cell ID information of semi-restricted worms",
+ "num_bytes": "80536795746",
+ "num_files": "9",
+ "numb_subjects": "9.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-2308918-01",
+ "parent_folder_1": "sub-230928-03",
+ "schemaKey": "Dandiset",
+ "species": "Caenorhabditis elegans",
+ "url": "https://dandiarchive.org/dandiset/000692/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ProcessingModule', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Saxena, Rajat; Shobe, Justin; McNaughton, Bruce; National Institute of Health (BRAIN) (2023) Characterizing the effect of environmental enrichment on representational complexity and functional synaptic connectivity (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000693/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000693",
+ "keywords": "['memory consolidation', 'cognitive reserve', 'environmental enrichment', 'learning', 'schema', 'cortex layers']",
+ "name": "Characterizing the effect of environmental enrichment on representational complexity and functional synaptic connectivity",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000693/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "De Preter, Caitlynn (2023) Brainstem recordings (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000694/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000694",
+ "keywords": "",
+ "name": "Brainstem recordings",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000694/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Francis , Chase (2023) Circadian regulation of dopamine 1 receptor signaling in the Nucleus Accumbens (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000695/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000695",
+ "keywords": "['Circadian rhythms, kcnq, excitability, medium spiny neuron, spiny projection neuron, dopamine, ventral tegmental area']",
+ "name": "Circadian regulation of dopamine 1 receptor signaling in the Nucleus Accumbens",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000695/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Ning, Wing (2023) The organization of context versus content coding in the hippocampus and neocortex (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/967d26f0-0130-4e5f-a9fc-6c6a764b2452/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/49651a8e-8f8a-4f50-9300-70b817132ca3/download/",
+ "file_size_0": "699207211405.0",
+ "file_size_1": "749222240484.0",
+ "identifier": "DANDI:000696",
+ "keywords": "",
+ "name": "The organization of context versus content coding in the hippocampus and neocortex",
+ "num_bytes": "3849974839417",
+ "num_files": "5",
+ "numb_subjects": "5.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-TR11",
+ "parent_folder_1": "sub-TR12-512ch",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000696/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectrodeGroup', 'ElectricalSeries']",
+ "version": "draft"
+ },
+ {
+ "citation": "Shobe, Justin (2023) Laminar coding properties of visual object representations in the mouse neocortex across multiple contexts (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/67dbc22a-e82d-4219-a889-2d4571ae314b/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/2c965674-b51b-49ae-8240-9b36ab1b07e3/download/",
+ "file_size_0": "467655419047.0",
+ "file_size_1": "492188519911.0",
+ "identifier": "DANDI:000710",
+ "keywords": "[]",
+ "name": "Laminar coding properties of visual object representations in the mouse neocortex across multiple contexts",
+ "num_bytes": "2196510951659",
+ "num_files": "4",
+ "numb_subjects": "4.0",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-VR33",
+ "parent_folder_1": "sub-VR31",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000710/draft",
+ "validation_summary": "NULL_FILE_LIMIT",
+ "variableMeasured": "['ElectricalSeries', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Institute for Brain Science; Olsen, Shawn; Garrett, Marina; Groblewski, Peter (2023) Allen Institute - Visual Behavior - Optical Physiology (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000711/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://visual-behavior-ophys-data.s3.us-west-2.amazonaws.com/visual-behavior-ophys/project_metadata/ophys_session_table.csv",
+ "file_0": "https://api.dandiarchive.org/api/assets/b1bb596f-6980-4393-9be5-b7fb6098587a/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/ade7fe9e-2c70-4351-b5ce-65eb767bd990/download/",
+ "file_size_0": "51028422.0",
+ "file_size_1": "51560394.0",
+ "identifier": "DANDI:000711",
+ "keywords": "['mouse', 'visual cortex', '2-photon microscopy', 'calcium imaging', 'excitatory neurons', 'inhibitory neurons', 'novelty', 'task engagement', 'behavior', 'learning', 'change detection', 'disinhibition ']",
+ "name": "Allen Institute - Visual Behavior - Optical Physiology",
+ "num_bytes": "1508058148534",
+ "num_files": "6015",
+ "numb_subjects": "107.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-498972",
+ "parent_folder_1": "sub-412036",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000711/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'ImagingPlane', 'PlaneSegmentation', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Amin, Jai (2023) test (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000712/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000712",
+ "keywords": "",
+ "name": "test",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000712/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Allen Institute - Visual Behavior - Neuropixels (2023). (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://visual-behavior-neuropixels-data.s3.us-west-2.amazonaws.com/visual-behavior-neuropixels/project_metadata/behavior_sessions.csv",
+ "file_0": "https://api.dandiarchive.org/api/assets/6affb667-753b-447a-b83a-3f5e4447a6f0/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/7ca1f528-413d-4ee0-a67b-1a02fb01deca/download/",
+ "file_size_0": "51422891.0",
+ "file_size_1": "51423814.0",
+ "identifier": "DANDI:000713",
+ "keywords": "[]",
+ "name": "Allen Institute - Visual Behavior - Neuropixels",
+ "num_bytes": "4747842512353",
+ "num_files": "4288",
+ "numb_subjects": "81.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-524926",
+ "parent_folder_1": "sub-550324",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000713/draft",
+ "validation_summary": "CRITICAL,BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['ProcessingModule', 'ElectricalSeries', 'LFP', 'Units']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sprague, Daniel; Chaudhary, Shivesh; Lee, Sol Ah; Li, Yueyi; Patel, Dhaval S; Lu, Hang (2023) Segmented and labeled NeuroPAL structural images (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000714/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "https://github.com/shiveshc/CRF_Cell_ID",
+ "file_0": "https://api.dandiarchive.org/api/assets/4cb34249-316f-413b-9e69-1356ba09097d/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/eb250ec0-ff30-45f2-a328-674a872251f6/download/",
+ "file_size_0": "50921612.0",
+ "file_size_1": "50930460.0",
+ "identifier": "DANDI:000714",
+ "keywords": "[]",
+ "name": "Segmented and labeled NeuroPAL structural images",
+ "num_bytes": "478077932",
+ "num_files": "9",
+ "numb_subjects": "9.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "NC-0",
+ "nwbe_compatibility_1": "NC-0",
+ "parent_folder_0": "sub-7",
+ "parent_folder_1": "sub-9",
+ "schemaKey": "Dandiset",
+ "species": "Caenorhabditis elegans",
+ "url": "https://dandiarchive.org/dandiset/000714/draft",
+ "validation_summary": "ERROR",
+ "variableMeasured": "['ProcessingModule', 'PlaneSegmentation']",
+ "version": "draft"
+ },
+ {
+ "citation": "Sprague, Daniel; Eviatar Yemini (2023) NeuroPAL: Atlas of C. elegans neuron locations and colors in NeuroPAL worm (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000715/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000715",
+ "keywords": "[]",
+ "name": "NeuroPAL: Atlas of C. elegans neuron locations and colors in NeuroPAL worm",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000715/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "ABLITIP, ALIYA (2023) Peristimulus Time Histograms Derived from Electrophysiological Recordings in the Inferotemporal Cortex of Macaques During RSVP Tasks (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000716/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000716",
+ "keywords": "[]",
+ "name": "Peristimulus Time Histograms Derived from Electrophysiological Recordings in the Inferotemporal Cortex of Macaques During RSVP Tasks",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000716/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Flynn, Garrett (2023) CatalystNeuro Placeholder 1 (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/90270d2c-0961-4992-91e2-8d575907b602/download/",
+ "file_1": "",
+ "file_size_0": "641430.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000717",
+ "keywords": "[]",
+ "name": "CatalystNeuro Placeholder 1",
+ "num_bytes": "641430",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-mouse2",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000717/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Flynn, Garrett (2023) CatalystNeuro Placeholder 2 (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/06ead224-745f-45e9-b20a-0ed2253a8280/download/",
+ "file_1": "",
+ "file_size_0": "641430.0",
+ "file_size_1": "",
+ "identifier": "DANDI:000718",
+ "keywords": "[]",
+ "name": "CatalystNeuro Placeholder 2",
+ "num_bytes": "641430",
+ "num_files": "1",
+ "numb_subjects": "1.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "sub-mouse2",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000718/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Flynn, Garrett (2023) CatalystNeuro Placeholder 3 (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/fc532497-87fd-4469-9a17-924fd6cc0596/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/e56d0046-9b75-42d6-83e3-49c460093863/download/",
+ "file_size_0": "641430.0",
+ "file_size_1": "641430.0",
+ "identifier": "DANDI:000719",
+ "keywords": "[]",
+ "name": "CatalystNeuro Placeholder 3",
+ "num_bytes": "2565720",
+ "num_files": "4",
+ "numb_subjects": "2.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-P",
+ "nwbe_compatibility_1": "LL-P",
+ "parent_folder_0": "sub-mouse1",
+ "parent_folder_1": "sub-mouse2",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000719/draft",
+ "validation_summary": "PASSED_VALIDATION",
+ "variableMeasured": "['ElectricalSeries', 'Units', 'ElectrodeGroup']",
+ "version": "draft"
+ },
+ {
+ "citation": "Chollet, Etienne (2023) UNet Validation Data (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000722/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000722",
+ "keywords": "[]",
+ "name": "UNet Validation Data",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000722/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Reimer, Marike (2023) VR-SASE Virtual Reality Dendritic Spine Analysis (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000723/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000723",
+ "keywords": "",
+ "name": "VR-SASE Virtual Reality Dendritic Spine Analysis",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000723/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Gunalan, Kabilar (2023) Multimodal Human Brain Imaging Data (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "https://dandiarchive.org/dandiset/000026",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000724",
+ "keywords": "",
+ "name": "Multimodal Human Brain Imaging Data",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000724/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Hussein, Kareem (2023) 4chDemoPL2.pl2 (Version draft) [Data set]. DANDI archive. https://dandiarchive.org/dandiset/000726/draft",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000726",
+ "keywords": "",
+ "name": "4chDemoPL2.pl2",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000726/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ },
+ {
+ "citation": "Baker, Cody (2023) Allen Institute - Visual Coding - Optical Physiology (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "Neurodata Without Borders (NWB)",
+ "doi_link": "",
+ "file_0": "https://api.dandiarchive.org/api/assets/cfde80fc-9864-4a8b-9fe8-ba6728a29f92/download/",
+ "file_1": "https://api.dandiarchive.org/api/assets/c0707671-5a7b-4abe-8447-3e5ef4965ec8/download/",
+ "file_size_0": "117329770.0",
+ "file_size_1": "119123455.0",
+ "identifier": "DANDI:000728",
+ "keywords": "",
+ "name": "Allen Institute - Visual Coding - Optical Physiology",
+ "num_bytes": "377541535032",
+ "num_files": "1101",
+ "numb_subjects": "245.0",
+ "nwb_version": "2.6.0",
+ "nwbe_compatibility_0": "LL-V",
+ "nwbe_compatibility_1": "LL-V",
+ "parent_folder_0": "sub-644572921",
+ "parent_folder_1": "sub-570077427",
+ "schemaKey": "Dandiset",
+ "species": "Mus musculus - House mouse",
+ "url": "https://dandiarchive.org/dandiset/000728/draft",
+ "validation_summary": "BEST_PRACTICE_VIOLATION",
+ "variableMeasured": "['PlaneSegmentation', 'BehavioralTimeSeries', 'ImagingPlane', 'ProcessingModule', 'OpticalChannel']",
+ "version": "draft"
+ },
+ {
+ "citation": "Platholi, Jimcy (2023) Testing sharing and upload (Version draft) [Data set]. DANDI archive. https://doi.org/10.80507/dandi.123456/0.123456.1234",
+ "dandiset_schemaver": "0.6.4",
+ "data_type": "",
+ "doi_link": "",
+ "file_0": "",
+ "file_1": "",
+ "file_size_0": "",
+ "file_size_1": "",
+ "identifier": "DANDI:000730",
+ "keywords": "",
+ "name": "Testing sharing and upload",
+ "num_bytes": "0",
+ "num_files": "0",
+ "numb_subjects": "",
+ "nwb_version": "",
+ "nwbe_compatibility_0": "NI",
+ "nwbe_compatibility_1": "NI",
+ "parent_folder_0": "",
+ "parent_folder_1": "",
+ "schemaKey": "Dandiset",
+ "species": "",
+ "url": "https://dandiarchive.org/dandiset/000730/draft",
+ "validation_summary": "",
+ "variableMeasured": "",
+ "version": "draft"
+ }
+]
\ No newline at end of file
diff --git a/libraries/client/cached_info/modeldb.json b/libraries/client/cached_info/modeldb.json
new file mode 100644
index 000000000..8ef5c46b6
--- /dev/null
+++ b/libraries/client/cached_info/modeldb.json
@@ -0,0 +1,225573 @@
+{
+ "279": {
+ "class_id": 19,
+ "created": "2001-01-01T00:00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 279,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4161,
+ "object_name": "Destexhe A, Neubig M, Ulrich D, Huguenard J (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "279_1",
+ "name": "Burst behavior in single-compartment model"
+ },
+ {
+ "id": "279_2",
+ "name": "Burst behavior in 3-compartment model"
+ },
+ {
+ "id": "279_3",
+ "name": "Burst behavior in detailed cell model"
+ },
+ {
+ "id": "279_4",
+ "name": "Voltage-clamp in detailed cell model"
+ },
+ {
+ "id": "279_5",
+ "name": "Voltage-clamp in dissociated cell model"
+ }
+ ],
+ "default": "279_1"
+ },
+ "name": "Low Threshold Calcium Currents in TC cells (Destexhe et al 1998)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In Destexhe, Neubig, Ulrich, and Huguenard (1998) experiments and models examine low threshold calcium current's (IT, or T-current) distribution in thalamocortical (TC) cells. Multicompartmental modeling supports the hypothesis that IT currents have a density at least several fold higher in the dendrites than the soma. The IT current contributes significantly to rebound bursts and is thought to have important network behavior consequences. See the paper for details. See also http://cns.iaf.cnrs-gif.fr Correspondance may be addressed to Alain Destexhe: Destexhe@iaf.cnrs-gif.fr"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/279",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181344,
+ "object_name": "279_4"
+ },
+ {
+ "object_id": 181345,
+ "object_name": "279_5"
+ },
+ {
+ "object_id": 181346,
+ "object_name": "279_2"
+ },
+ {
+ "object_id": 181347,
+ "object_name": "279_3"
+ },
+ {
+ "object_id": 181348,
+ "object_name": "279_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 275
+ },
+ "ver_date": "2015-01-02T22:01:45",
+ "ver_number": 24
+ },
+ "2487": {
+ "class_id": 19,
+ "created": "2001-04-05T22:35:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 2487,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33739,
+ "object_name": "Davison, Andrew [Andrew.Davison at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4036,
+ "object_name": "Davison AP, Feng J, Brown D (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "2487_1",
+ "name": "Stimulate soma with 0.2 uA/cm2"
+ },
+ {
+ "id": "2487_2",
+ "name": "Stimulate soma with 1.6 uA/cm2"
+ },
+ {
+ "id": "2487_3",
+ "name": "Stimulate glomerulus with 0.2 uA/cm2"
+ },
+ {
+ "id": "2487_4",
+ "name": "Stimulate glomerulus with 1.6 uA/cm2"
+ }
+ ],
+ "default": "2487_1"
+ },
+ "name": "Olfactory Mitral Cell (Davison et al 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A four-compartment model of a mammalian olfactory bulb mitral cell, reduced \r\nfrom the complex 286-compartment model described by Bhalla and Bower (1993). \r\nThe compartments are soma/axon, secondary dendrites, primary dendrite shaft \r\nand primary dendrite tuft. The reduced model runs 75 or more times faster \r\nthan the full model, making its use in large, realistic network models of the \r\nolfactory bulb practical."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2487",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181441,
+ "object_name": "2487_4"
+ },
+ {
+ "object_id": 181443,
+ "object_name": "2487_2"
+ },
+ {
+ "object_id": 181444,
+ "object_name": "2487_3"
+ },
+ {
+ "object_id": 181445,
+ "object_name": "2487_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 304
+ },
+ "ver_date": "2022-05-27T18:13:12.8",
+ "ver_number": 14
+ },
+ "2488": {
+ "class_id": 19,
+ "created": "2001-04-05T22:36:18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 2488,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33763,
+ "object_name": "Mainen, Zach [Mainen at cshl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4252,
+ "object_name": "Mainen ZF, Sejnowski TJ (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "2488_1",
+ "name": "1a. L3 Aspiny"
+ },
+ {
+ "id": "2488_2",
+ "name": "1b. L4 Stellate"
+ },
+ {
+ "id": "2488_3",
+ "name": "1c. L3 Pyramid"
+ },
+ {
+ "id": "2488_4",
+ "name": "1d. L5 Pyramid"
+ },
+ {
+ "id": "2488_5",
+ "name": "2"
+ }
+ ],
+ "default": "2488_4"
+ },
+ "name": "Influence of dendritic structure on neocortical neuron firing patterns (Mainen and Sejnowski 1996)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This package contains compartmental models of four reconstructed neocortical neurons (layer 3 Aspiny, layer 4 Stellate, layer 3 and layer 5 Pyramidal neurons) with active dendritic currents using NEURON. Running this simulation demonstrates that an entire spectrum of firing patterns can be reproduced in this set of model neurons which share a common distribution of ion channels and differ only in their dendritic geometry. The reference paper is: Z. F. Mainen and T. J. Sejnowski (1996) Influence of dendritic structure on firing pattern in model neocortical neurons. Nature 382: 363-366. See also http://www.cnl.salk.edu/~zach/methods.html and http://www.cnl.salk.edu/~zach/ More info in readme.txt file below made visible by clicking on the patdemo folder and then on the readme.txt file."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2488",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181358,
+ "object_name": "2488_4"
+ },
+ {
+ "object_id": 181361,
+ "object_name": "2488_1"
+ },
+ {
+ "object_id": 181363,
+ "object_name": "2488_3"
+ },
+ {
+ "object_id": 181364,
+ "object_name": "2488_2"
+ },
+ {
+ "object_id": 181648,
+ "object_name": "2488_5"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 315
+ },
+ "ver_date": "2018-11-16T15:29:16.747",
+ "ver_number": 24
+ },
+ "2730": {
+ "class_id": 19,
+ "created": "2001-05-16T10:13:42",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 2730,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33739,
+ "object_name": "Davison, Andrew [Andrew.Davison at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 22120,
+ "object_name": "Davison AP, Feng J, Brown D (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "2730_1",
+ "name": "Fig 2 (Olfactory nerve shock)"
+ }
+ ],
+ "default": "2730_1"
+ },
+ "name": "Olfactory Bulb Network (Davison et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A biologically-detailed model of the mammalian olfactory bulb, incorporating \r\nthe mitral and granule cells and the dendrodendritic synapses between them. \r\nThe results of simulation experiments with electrical stimulation agree \r\nclosely in most details with published experimental data. The model predicts \r\nthat the time course of dendrodendritic inhibition is dependent on the \r\nnetwork connectivity as well as on the intrinsic parameters of the synapses. \r\nIn response to simulated odor stimulation, strongly activated mitral cells \r\ntend to suppress neighboring cells, the mitral cells readily synchronize \r\ntheir firing, and increasing the stimulus intensity increases the degree of \r\nsynchronization. For more details, see the reference below."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2730",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181170,
+ "object_name": "2730_2"
+ },
+ {
+ "object_id": 181171,
+ "object_name": "2730_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 302
+ },
+ "ver_date": "2022-05-27T18:15:00.95",
+ "ver_number": 50
+ },
+ "2733": {
+ "class_id": 19,
+ "created": "2001-05-18T15:26:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 2733,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33739,
+ "object_name": "Davison, Andrew [Andrew.Davison at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4675,
+ "object_name": "Bhalla US, Bower JM (1993)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "2733",
+ "name": "ModelView"
+ }
+ ],
+ "default": "2733"
+ },
+ "name": "Olfactory Mitral Cell (Bhalla, Bower 1993)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a conversion to NEURON of the mitral cell model described in Bhalla \r\nand Bower (1993). \r\nThe original model was written in GENESIS and is available by joining BABEL, the GENESIS users' group here http://www.genesis-sim.org/GENESIS/babel.html"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2733",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 303
+ },
+ "ver_date": "2022-05-27T18:16:56.667",
+ "ver_number": 29
+ },
+ "2796": {
+ "class_id": 19,
+ "created": "2001-06-05T17:25:25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 2796,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 26749,
+ "object_name": "Migliore M, Hoffman DA, Magee JC, Johnston D (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron (Migliore et al 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Hippocampal CA1 pyramidal neuron model from the paper \r\nM.Migliore, D.A Hoffman, J.C. Magee and D. Johnston (1999) Role of an A-type K+ conductance in the back-propagation of action potentials in the dendrites of hippocampal pyramidal neurons,\r\nJ. Comput. Neurosci. 7, 5-15. Instructions are provided in the below README file.Contact michele.migliore@pa.ibf.cnr.it if you have any questions about the implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2796",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181645,
+ "object_name": "2796_2"
+ },
+ {
+ "object_id": 181646,
+ "object_name": "2796_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 165
+ },
+ "ver_date": "2015-01-02T22:00:55",
+ "ver_number": 15
+ },
+ "2798": {
+ "class_id": 19,
+ "created": "2001-06-05T17:29:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 2798,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4655,
+ "object_name": "Hopfield JJ, Brody CD (2001)"
+ },
+ {
+ "object_id": 4656,
+ "object_name": "Hopfield JJ, Brody CD (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "2798_1",
+ "name": "before training"
+ },
+ {
+ "id": "2798_2",
+ "name": "after training"
+ },
+ {
+ "id": "2798_3",
+ "name": "random activation"
+ }
+ ],
+ "default": "2798_1"
+ },
+ "name": "Hopfield and Brody model (Hopfield, Brody 2000)",
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON implementation of the Hopfield and Brody model from the papers:\r\nJJ Hopfield and CD Brody (2000)\r\nJJ Hopfield and CD Brody (2001). Instructions are provided in the below readme.txt file."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2798",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115949,
+ "object_name": "Olfactory cortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181642,
+ "object_name": "2798_1"
+ },
+ {
+ "object_id": 181643,
+ "object_name": "2798_3"
+ },
+ {
+ "object_id": 181644,
+ "object_name": "2798_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 263
+ },
+ "ver_date": "2018-10-17T14:23:47.05",
+ "ver_number": 13
+ },
+ "2937": {
+ "class_id": 19,
+ "created": "2001-06-19T18:03:07",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 2937,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4236,
+ "object_name": "Migliore M (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 Pyramidal Neuron: slow Na+ inactivation (Migliore 1996)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model files from the paper: \r\nM. Migliore, Modeling the attenuation and failure of action potentials in \r\nthe dendrites of hippocampal neurons, Biophys. J. 71:2394-403 (1996). Please see the below readme file for installation and use instructions. Contact michele.migliore@pa.ibf.cnr.it\r\n if you have any questions about the implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2937",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181303,
+ "object_name": "2937_2"
+ },
+ {
+ "object_id": 181304,
+ "object_name": "2937_3"
+ },
+ {
+ "object_id": 181305,
+ "object_name": "2937_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 162
+ },
+ "ver_date": "2015-01-02T22:06:31",
+ "ver_number": 13
+ },
+ "3167": {
+ "class_id": 19,
+ "created": "2001-08-27T10:14:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3167,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3891,
+ "object_name": "Migliore M, Messineo L, Cardaci M, Ayala GF (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3167",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3167"
+ },
+ "name": "Estimation and Production of Time Intervals (Migliore et al 2001)",
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON model files from the paper \r\nM. Migliore, L. Messineo, M. Cardaci, G.F. Ayala, \r\nQuantitative modeling of perception and production of time intervals, J.Neurophysiol. 86, 2754-2760 (2001). Contact michele.migliore@pa.ibf.cnr.it if you have any questions about the implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3167",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 239
+ },
+ "ver_date": "2015-07-26T07:44:54.557",
+ "ver_number": 12
+ },
+ "3263": {
+ "class_id": 19,
+ "created": "2001-09-20T14:50:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3263,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4307,
+ "object_name": "Migliore M, Cook EP, Jaffe DB, Turner DA, Johnston D (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3263_1",
+ "name": "burst"
+ },
+ {
+ "id": "3263_2",
+ "name": "no-burst short"
+ },
+ {
+ "id": "3263_3",
+ "name": "no-burst long"
+ }
+ ],
+ "default": "3263_1"
+ },
+ "name": "CA3 Pyramidal Neuron (Migliore et al 1995)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model files from the paper:\r\nM. Migliore, E. Cook, D.B. Jaffe, D.A. Turner and D. Johnston, Computer\r\nsimulations of morphologically reconstructed CA3 hippocampal neurons, J.\r\nNeurophysiol. 73, 1157-1168 (1995).\r\n\r\nDemonstrates how the same cell could be bursting or non bursting according to the Ca-independent conductance densities. Includes calculation of intracellular Calcium. Instructions are provided in the below README file. Contact michele.migliore@pa.ibf.cnr.it if you have any questions about the implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3263",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181579,
+ "object_name": "3263_1"
+ },
+ {
+ "object_id": 181581,
+ "object_name": "3263_3"
+ },
+ {
+ "object_id": 181582,
+ "object_name": "3263_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 180
+ },
+ "ver_date": "2015-01-02T22:07:07",
+ "ver_number": 14
+ },
+ "3264": {
+ "class_id": 19,
+ "created": "2001-09-20T17:17:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3264,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4420,
+ "object_name": "Varela JA, Sen K, Gibson J, Fost J, Abbott LF, Nelson SB (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3264_1",
+ "name": "Fig. 3A using slow epsp"
+ },
+ {
+ "id": "3264_2",
+ "name": "Fig. 3C using slow epsp"
+ },
+ {
+ "id": "3264_3",
+ "name": "Fig. 3D using fast epsp"
+ },
+ {
+ "id": "3264_6",
+ "name": "'Biophysical' cell with fast epsp"
+ },
+ {
+ "id": "3264_7",
+ "name": "'Biophysical' cell with slow epsp"
+ },
+ {
+ "id": "3264_8",
+ "name": "'Biophysical' cell with multiple input streams"
+ }
+ ],
+ "default": "3264_1"
+ },
+ "name": "Short term plasticity of synapses onto V1 layer 2/3 pyramidal neuron (Varela et al 1997)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This archive contains 3 mod files for NEURON that implement the short term \r\nsynaptic plasticity model described in\r\n Varela, J.A., Sen, K., Gibson, J., Fost, J., Abbott, L.R., \r\n and Nelson, S.B.. \r\n A quantitative description of short-term plasticity at \r\n excitatory synapses in layer 2/3 of rat primary visual cortex.\r\n Journal of Neuroscience 17:7926-7940, 1997.\r\n\r\nContact ted.carnevale@yale.edu if you have questions \r\nabout this implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3264",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 266986,
+ "object_name": "Visual cortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181523,
+ "object_name": "3264_2"
+ },
+ {
+ "object_id": 181524,
+ "object_name": "3264_3"
+ },
+ {
+ "object_id": 181525,
+ "object_name": "3264_1"
+ },
+ {
+ "object_id": 181526,
+ "object_name": "3264_6"
+ },
+ {
+ "object_id": 181527,
+ "object_name": "3264_7"
+ },
+ {
+ "object_id": 181529,
+ "object_name": "3264_8"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 337
+ },
+ "ver_date": "2021-03-23T06:11:10.997",
+ "ver_number": 14
+ },
+ "3289": {
+ "class_id": 19,
+ "created": "2001-10-10T11:41:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3289,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4659,
+ "object_name": "Korngreen A, Sakmann B (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3289",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3289"
+ },
+ "name": "Pyramidal Neuron Deep: K+ kinetics (Korngreen, Sakmann 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the slow and fast K+ currents from the paper:\r\nVoltage-gated K+ channels in layer 5 neocortical pyramidal neurones from young rats: subtypes and gradients\r\nA. Korngreen and B. Sakmann, J.Physiol. 525.3, 621-639 (2000)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3289",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181465,
+ "object_name": "3289"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 316
+ },
+ "ver_date": "2015-01-02T23:07:13",
+ "ver_number": 9
+ },
+ "3332": {
+ "class_id": 19,
+ "created": "2001-10-24T09:53:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3332,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4408,
+ "object_name": "Bal R, Oertel D (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3332",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3332"
+ },
+ "name": "CN Octopus Cell: Ih current (Bal, Oertel 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 277,
+ "object_name": "Cochlear nucleus octopus GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the Ih current from the paper \r\nR. Bal and D. Oertel\r\nHyperpolarization-Activated, Mixed-Cation Current (Ih) in Octopus Cells of the Mammalian Cochlear Nucleus, J. Neurophysiol. 84, 806-817 (2000).\r\nContact michele.migliore@pa.ibf.cnr.it if you have any questions about the implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3332",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181161,
+ "object_name": "3332"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 185
+ },
+ "ver_date": "2014-02-06T16:18:23",
+ "ver_number": 14
+ },
+ "3342": {
+ "class_id": 19,
+ "created": "2001-10-27T10:46:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3342,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4059,
+ "object_name": "Shen GY, Chen WR, Midtgaard J, Shepherd GM, Hines ML (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3342",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3342"
+ },
+ "name": "Action potential initiation in the olfactory mitral cell (Shen et al 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Mitral cell model with standard parameters for the paper:\r\nShen, G.Y., Chen, W. R., Midtgaard, J., Shepherd, G.M., and Hines, M.L.\r\n(1999)\r\nComputational Analysis of Action Potential Initiation in Mitral\r\nCell Soma and Dendrites Based on Dual Patch Recordings.\r\nJournal of Neurophysiology 82:3006. Contact Michael.Hines@yale.edu if you have any questions about the implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3342",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 305
+ },
+ "ver_date": "2018-10-17T14:24:06.313",
+ "ver_number": 12
+ },
+ "3343": {
+ "class_id": 19,
+ "created": "2001-10-27T11:11:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3343,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 28235,
+ "object_name": "Destexhe A, Bal T, McCormick DA, Sejnowski TJ (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3343_1",
+ "name": "Spindle oscillations - short run"
+ },
+ {
+ "id": "3343_2",
+ "name": "Spindle oscillations - long run"
+ },
+ {
+ "id": "3343_3",
+ "name": "Bicuculline-induced oscillations - short run"
+ },
+ {
+ "id": "3343_4",
+ "name": "Bicuculline-induced oscillations - long run"
+ },
+ {
+ "id": "3343_5",
+ "name": "Delta oscillations - short run"
+ },
+ {
+ "id": "3343_6",
+ "name": "Delta oscillations - long run"
+ }
+ ],
+ "default": "3343_1"
+ },
+ "name": "Thalamocortical and Thalamic Reticular Network (Destexhe et al 1996)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON model of oscillations in networks of thalamocortical and thalamic reticular neurons in the ferret. (more applications for a model quantitatively identical to previous DLGN model; updated for NEURON v4 and above)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3343",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-04-04T13:50:31.867",
+ "ver_number": 17
+ },
+ "3344": {
+ "class_id": 19,
+ "created": "2001-10-27T13:24:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3344,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4430,
+ "object_name": "Beck H, Ficker E, Heinemann U (1992)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3344",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3344"
+ },
+ "name": "DG granule cell: I-A model (Beck et al 1992)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the I-A current from the paper:\r\nBeck H, Ficker E, Heinemann U.\r\nProperties of two voltage-activated potassium currents in \r\nacutely isolated juvenile rat dentate gyrus granule cells.\r\nJ. Neurophysiol. 68, 2086-2099 (1992) Contact michele.migliore@pa.ibf.cnr.it if you have any questions about the implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3344",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181337,
+ "object_name": "3344"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 213
+ },
+ "ver_date": "2014-02-06T17:13:19",
+ "ver_number": 9
+ },
+ "3434": {
+ "class_id": 19,
+ "created": "2001-11-16T12:05:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3434,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33753,
+ "object_name": "Simon, Jonathon Z [jzsimon at isr.umd.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4838,
+ "object_name": "Simon JZ, Carr CE, Shamma SA (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3434",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3434"
+ },
+ "name": "Coincidence detection in avian brainstem (Simon et al 1999)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52424,
+ "object_name": "Nucleus laminaris neuron"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A detailed biophysical model of coincidence\r\ndetector neurons in the nucleus laminaris (auditory brainstem) which are\r\npurported to detect interaural time differences (ITDs) from Simon et al 1999."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3434",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181681,
+ "object_name": "3434"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 200
+ },
+ "ver_date": "2014-02-06T16:21:55",
+ "ver_number": 19
+ },
+ "3454": {
+ "class_id": 19,
+ "created": "2001-11-19T23:10:15",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3454,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33740,
+ "object_name": "Kornfeld, David [dbk1 at mindspring.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4664,
+ "object_name": "Wang LY, Gan L, Forsythe ID, Kaczmarek LK (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3454_1",
+ "name": "100 hz"
+ },
+ {
+ "id": "3454_2",
+ "name": "200 hz"
+ },
+ {
+ "id": "3454_3",
+ "name": "300 hz"
+ },
+ {
+ "id": "3454_4",
+ "name": "400 hz"
+ }
+ ],
+ "default": "3454_1"
+ },
+ "name": "MNTB Neuron: Kv3.1 currents (Wang et al 1998)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 85986,
+ "object_name": "Medial Nucleus of the Trapezoid Body (MNTB) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of Medial Nucleus of the Trapezoid Body (MNTB) neurons described in Lu-Yang Wang, Li Gan, Ian D. Forsythe and Leonard K. Kaczmarek. Contribution of the Kv3.1 potassium channel to high-frequency firing in mouse auditory neurones. J. Physiol (1998) 509.1 183-194. Created by David Kornfeld, Byram Hills High School, Armonk NY. Please email dbk1@mindspring.com for questions about the model. See Readme.txt below for more info."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3454",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181856,
+ "object_name": "3454_4"
+ },
+ {
+ "object_id": 181860,
+ "object_name": "3454_3"
+ },
+ {
+ "object_id": 181861,
+ "object_name": "3454_2"
+ },
+ {
+ "object_id": 181894,
+ "object_name": "3454_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 277
+ },
+ "ver_date": "2015-01-02T22:33:23",
+ "ver_number": 18
+ },
+ "3457": {
+ "class_id": 19,
+ "created": "2001-11-20T16:15:39",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3457,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4405,
+ "object_name": "Benison G, Keizer J, Chalupa LM, Robinson DW (2001)"
+ },
+ {
+ "object_id": 4413,
+ "object_name": "Huang SJ, Robinson DW (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3457",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3457"
+ },
+ "name": "Retinal Ganglion Cell: I-CaN and I-CaL (Benison et al. 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the CaN and CaL currents from the papers:\r\nHuang, S.-J. & Robinson, D.W. (1998). Activation and Inactivation properties of voltage-gated calcium currents in developing cat retinal ganglion cells. Neuroscience 85:239-247 (experimental) and\r\nBenison G. Keizer J., Chalupa L.M., Robinson D.W., (2001) J. theor. Biol. 210:187-199 (theoretical)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3457",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181235,
+ "object_name": "3457"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 326
+ },
+ "ver_date": "2014-02-25T01:17:47",
+ "ver_number": 10
+ },
+ "3483": {
+ "class_id": 19,
+ "created": "2001-11-28T10:35:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3483,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4405,
+ "object_name": "Benison G, Keizer J, Chalupa LM, Robinson DW (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3483",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3483"
+ },
+ "name": "Retinal Ganglion Cell: I-Na,t (Benison et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the Na current from the papers:\r\n(model)\r\nBenison G, Keizer J, Chalupa LM, Robinson DW. Modeling temporal behavior of postnatal cat retinal ganglion cells. J Theor Biol. 2001 210:187-99 and a reference from this paper: (experimental)\r\nSkaliora I, Scobey RP, Chalupa LM. Prenatal development of excitability in cat retinal ganglion cells: action potentials and sodium currents. J Neurosci 1993 13:313-23. See the readme.txt file below for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3483",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181744,
+ "object_name": "3483"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 328
+ },
+ "ver_date": "2014-02-25T01:18:14",
+ "ver_number": 9
+ },
+ "3488": {
+ "class_id": 19,
+ "created": "2001-12-07T14:19:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3488,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4405,
+ "object_name": "Benison G, Keizer J, Chalupa LM, Robinson DW (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3488",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3488"
+ },
+ "name": "Retinal Ganglion Cell: I-A (Benison et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the K-A current from the papers: (model) Benison G, Keizer J, Chalupa LM, Robinson DW. Modeling temporal behavior of postnatal cat retinal ganglion cells. J.Theor.Biol. 210:187-199 (2001) and (experiment) Skaliora I, Robinson DW, Scobey RP, Chalupa LM., Properties of K+ conductances in cat retinal ganglion cells during the period of activity-mediated refinements in retinofugal pathways. Eur.J.Neurosci. 7:1558-1568 (1995)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3488",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181827,
+ "object_name": "3488"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 325
+ },
+ "ver_date": "2014-02-25T01:17:32",
+ "ver_number": 8
+ },
+ "3491": {
+ "class_id": 19,
+ "created": "2001-12-14T10:20:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3491,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4426,
+ "object_name": "Skaliora I, Robinson DW, Scobey RP, Chalupa LM (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3491",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3491"
+ },
+ "name": "Retinal Ganglion Cell: I-K (Skaliora et al 1995)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the K-DR current from the paper: \r\nSkaliora I, Robinson DW, Scobey RP, Chalupa LM. Properties of K+ conductances in cat retinal ganglion cells during the period of activity-mediated refinements in retinofugal pathways.\r\nEur J Neurosci 1995 7(7):1558-1568. See the readme.txt file below for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3491",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181167,
+ "object_name": "3491"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 327
+ },
+ "ver_date": "2014-02-25T01:18:00",
+ "ver_number": 7
+ },
+ "3493": {
+ "class_id": 19,
+ "created": "2001-12-27T11:49:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3493,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4672,
+ "object_name": "Safronov BV, Vogel W (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3493",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3493"
+ },
+ "name": "Spinal Motor Neuron: Na, K_A, and K_DR currents (Safronov, Vogel 1995)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the Na, K-A, and K-DR currents from the paper: \r\nSafronov, B.V. and Vogel,W. Single voltage-activated Na+ and K+ channels in the somata of rat motorneurons. Journal of Physiology 487.1:91-106 (1995). See the readme.txt file for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3493",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181534,
+ "object_name": "3493"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 491
+ },
+ "ver_date": "2014-02-25T01:10:03",
+ "ver_number": 8
+ },
+ "3507": {
+ "class_id": 19,
+ "created": "2002-01-07T10:17:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3507,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 5057,
+ "object_name": "FRANKENHAEUSER B, HUXLEY AF (1964)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Xenopus Myelinated Neuron (Frankenhaeuser, Huxley 1964)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Frankenhaeuser, B. and Huxley, A. F. (1964),\r\nThe action potential in the myelinated nerve fiber of Xenopus Laevis as computed on the basis of voltage clamp data. J. Physiol. 171: 302-315. See README file for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3507",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181275,
+ "object_name": "3507"
+ }
+ ]
+ },
+ "ver_date": "2014-02-01T08:02:53",
+ "ver_number": 8
+ },
+ "3509": {
+ "class_id": 19,
+ "created": "2002-01-07T11:05:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3509,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4439,
+ "object_name": "Moczydlowski E, Latorre R (1983)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3509_1",
+ "name": "rate"
+ },
+ {
+ "id": "3509_2",
+ "name": "steady state current"
+ },
+ {
+ "id": "3509_3",
+ "name": "voltage clamp"
+ }
+ ],
+ "default": "3509_1"
+ },
+ "name": "Ca-dependent K Channel: kinetics from rat muscle (Moczydlowski, Latorre 1983) NEURON",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 105531,
+ "object_name": "Skeletal muscle cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Macroscopic channel model based on\r\nMoczydlowski, E. and Latorre, R. (1983).\r\nGating kinetics of Ca++ activated K+ channels from rat muscle incorporated into planar lipid bilayers. \r\nJ. Gen. Physiol. 82: 511-542 \r\nSee README file for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3509",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181449,
+ "object_name": "3509_2"
+ },
+ {
+ "object_id": 181450,
+ "object_name": "3509_3"
+ },
+ {
+ "object_id": 181451,
+ "object_name": "3509_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 188
+ },
+ "ver_date": "2015-01-02T22:07:59",
+ "ver_number": 11
+ },
+ "3511": {
+ "class_id": 19,
+ "created": "2002-01-08T13:56:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3511,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33778,
+ "object_name": "Nadim, Farzan [Farzan at andromeda.Rutgers.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4152,
+ "object_name": "Nadim F, Manor Y, Nusbaum MP, Marder E (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3511",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3511"
+ },
+ "name": "Regulation of a slow STG rhythm (Nadim et al 1998)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114276,
+ "object_name": "Stomatogastric Ganglion (STG) Modulatory commissural neuron 1 (MCN1)"
+ },
+ {
+ "object_id": 114302,
+ "object_name": "Stomatogastric Ganglion (STG) interneuron 1 (Int1)"
+ },
+ {
+ "object_id": 114303,
+ "object_name": "Stomatogastric Ganglion (STG) Lateral Gastric (LG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Frequency regulation of a slow rhythm by a fast periodic input. Nadim, F., Manor, Y., Nusbaum, M. P., Marder, E. (1998) J. Neurosci. 18: 5053-5067"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3511",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181237,
+ "object_name": "3511"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 322
+ },
+ "ver_date": "2014-02-25T01:16:22",
+ "ver_number": 16
+ },
+ "3533": {
+ "class_id": 19,
+ "created": "2002-01-14T10:19:57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3533,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4411,
+ "object_name": "Williams SR, Stuart GJ (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3533",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3533"
+ },
+ "name": "Thalamic Relay Neuron: I-T current (Williams, Stuart 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the Ca-T current from the paper:\r\nWilliams SR, Stuart GJ, Action potential backpropagation and \r\nsomato-dendritic distribution of ion channels in thalamocortical neurons.\r\nJ Neurosci. 2000 20:1307-17.\r\nContact michele.migliore@pa.ibf.cnr.it if you have any questions about the implementation of the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3533",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181666,
+ "object_name": "3533"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T01:14:48",
+ "ver_number": 9
+ },
+ "3648": {
+ "class_id": 19,
+ "created": "2002-01-24T14:38:44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3648,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4671,
+ "object_name": "Wang XY, McKenzie JS, Kemm RE (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3648",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3648"
+ },
+ "name": "Olfactory Mitral Cell: I-A and I-K currents (Wang et al 1996)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the I-A and I-K currents from the paper:\r\nX.Y. Wang, J.S. McKenzie and R.E. Kemm, Whole-cell K+ currents in identified olfactory \r\nbulb output neurones of rats. J Physiol. 1996 490.1:63-77. Please see the readme.txt included in the model file for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3648",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181750,
+ "object_name": "3648"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 306
+ },
+ "ver_date": "2018-10-17T14:24:24.937",
+ "ver_number": 7
+ },
+ "3658": {
+ "class_id": 19,
+ "created": "2002-01-29T15:26:00",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3658,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 51148,
+ "object_name": "Saftenku, Elena [esaft at biph.kiev.ua]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 51141,
+ "object_name": "Saftenku EE (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Glutamate diffusion and AMPA receptor activation in the cerebellar glomerulus (Saftenku 2005)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Synaptic conductances are influenced markedly by the geometry of the space surrounding the synapse since the transient glutamate concentration in the synaptic cleft is determined by this geometry. Our paper is an attempt to understand the reasons for slow glutamate diffusion in the cerebellar glomerulus, a structure situated around the enlarged mossy fiber terminal in the cerebellum and surrounded by a glial sheath. \r\n...\r\nOur results suggest at least a 7- to 10-fold lower apparent diffusion coefficient of glutamate in the porous medium of the glomerulus than in water. \r\n... See paper for details and more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3658",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 257
+ },
+ "ver_date": "2022-05-27T07:58:45.433",
+ "ver_number": 19
+ },
+ "3660": {
+ "class_id": 19,
+ "created": "2002-01-31T17:15:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3660,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4423,
+ "object_name": "Zhou FM, Hablitz JJ (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3660",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3660"
+ },
+ "name": "Neocortical Layer I: I-A and I-K (Zhou, Hablitz 1996)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the I-A and I-K currents from the paper:\r\nZhou FM, Hablitz JJ.\r\nLayer I neurons of the rat neocortex. II. Voltage-dependent outward currents.\r\nJ Neurophysiol 1996 76:668-82."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3660",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181423,
+ "object_name": "3660"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 295
+ },
+ "ver_date": "2014-02-25T01:02:07",
+ "ver_number": 8
+ },
+ "3665": {
+ "class_id": 19,
+ "created": "2002-02-08T09:13:36",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3665,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4849,
+ "object_name": "Cadetti L, Belluzzi O (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3665",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3665"
+ },
+ "name": "Olfactory Periglomerular Cells: I-h kinetics (Cadetti, Belluzzi 2001)",
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the Ih current from the paper:\r\nCadetti L, Belluzzi O.\r\nHyperpolarisation-activated current in glomerular cells \r\nof the rat olfactory bulb.\r\nNeuroreport 12:3117-20 (2001)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3665",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181422,
+ "object_name": "3665"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 308
+ },
+ "ver_date": "2018-10-17T14:25:21.15",
+ "ver_number": 10
+ },
+ "3670": {
+ "class_id": 19,
+ "created": "2002-02-08T18:34:20",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3670,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4900,
+ "object_name": "Destexhe A, Contreras D, Sejnowski TJ, Steriade M (1994)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3670_1",
+ "name": "Fig. 5a"
+ },
+ {
+ "id": "3670_2",
+ "name": "Fig. 5b"
+ },
+ {
+ "id": "3670_3",
+ "name": "Fig. 6a"
+ },
+ {
+ "id": "3670_4",
+ "name": "Fig. 6b"
+ },
+ {
+ "id": "3670_5",
+ "name": "Fig. 6c"
+ },
+ {
+ "id": "3670_6",
+ "name": "Fig. 6d"
+ },
+ {
+ "id": "3670_7",
+ "name": "Fig. 13a"
+ },
+ {
+ "id": "3670_8",
+ "name": "Fig. 13b"
+ }
+ ],
+ "default": "3670_1"
+ },
+ "name": "Thalamic Reticular Network (Destexhe et al 1994)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Demo for simulating networks of thalamic reticular neurons (reproduces figures from Destexhe A et al 1994)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3670",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-04-04T13:52:45.483",
+ "ver_number": 15
+ },
+ "3673": {
+ "class_id": 19,
+ "created": "2002-02-11T13:08:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3673,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4665,
+ "object_name": "Fohlmeister JF, Miller RF (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3673",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3673"
+ },
+ "name": "Salamander retinal ganglion cell: ion channels (Fohlmeister, Miller 1997)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A realistic five (5) channel spiking model reproduces \r\nthe bursting behavior of tiger salamander\r\nganglion cells in the retina.\r\nPlease see the readme for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3673",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181181,
+ "object_name": "3673"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 334
+ },
+ "ver_date": "2014-02-25T01:07:05",
+ "ver_number": 15
+ },
+ "3676": {
+ "class_id": 19,
+ "created": "2002-02-14T09:24:19",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3676,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 183995,
+ "object_name": "Ephaptic coupling"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4652,
+ "object_name": "Bokil H, Laaris N, Blinder K, Ennis M, Keller A (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3676_1",
+ "name": "Fig 2"
+ },
+ {
+ "id": "3676_2",
+ "name": "Fig 3B"
+ }
+ ],
+ "default": "3676_1"
+ },
+ "name": "Ephaptic interactions in olfactory nerve (Bokil et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Bokil, H., Laaris, N., Blinder, K., Ennis, M., and Keller, A. (2001) Ephaptic interactions in the mammalian olfactory system. J. Neurosci. 21:RC173(1-5)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3676",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 238
+ },
+ "ver_date": "2018-10-17T14:25:41.027",
+ "ver_number": 11
+ },
+ "3677": {
+ "class_id": 19,
+ "created": "2002-02-14T13:26:15",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3677,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33779,
+ "object_name": "Spruston, Nelson [Spruston at Northwestern.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4163,
+ "object_name": "Stuart G, Spruston N (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3677_1",
+ "name": "Ri18"
+ },
+ {
+ "id": "3677_2",
+ "name": "Ri21"
+ },
+ {
+ "id": "3677_3",
+ "name": "Ri22"
+ }
+ ],
+ "default": "3677_1"
+ },
+ "name": "Pyramidal Neuron Deep: attenuation in dendrites (Stuart, Spruston 1998)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Stuart, G. and Spruston, N. Determinants of voltage attenuation in neocortical pyramidal neuron dendrites. Journal of Neuroscience 18:3501-3510, 1998."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3677",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181512,
+ "object_name": "3677_2"
+ },
+ {
+ "object_id": 181513,
+ "object_name": "3677_3"
+ },
+ {
+ "object_id": 181515,
+ "object_name": "3677_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 317
+ },
+ "ver_date": "2015-01-02T22:38:42",
+ "ver_number": 6
+ },
+ "3682": {
+ "class_id": 19,
+ "created": "2002-02-18T08:58:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3682,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 33767,
+ "object_name": "Archie, Kevin A [karchie at lnc.usc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4051,
+ "object_name": "Archie KA, Mel BW (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3682",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3682"
+ },
+ "name": "Visual Cortex Neurons: Dendritic computations (Archie, Mel 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neuron and C program files from Archie, K.A. and Mel, B.W. A model of intradendritic computation of binocular disparity. Nature Neuroscience 3:54-63, 2000\r\nThe original files for this model are located at \r\nthe web site http://www-lnc.usc.edu/~karchie/synmap"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3682",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 266986,
+ "object_name": "Visual cortex"
+ }
+ ]
+ },
+ "ver_date": "2021-03-23T06:10:55.857",
+ "ver_number": 9
+ },
+ "3684": {
+ "class_id": 19,
+ "created": "2002-02-19T09:41:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3684,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4433,
+ "object_name": "McCormick DA, Pape HC (1990)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3684",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3684"
+ },
+ "name": "Thalamic Relay Neuron: I-h (McCormick, Pape 1990)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for the Ih current from the paper:\r\nMcCormick DA, Pape HC.\r\nProperties of a hyperpolarization-activated cation current \r\nand its role in rhythmic oscillation in thalamic relay neurones.\r\nJ. Physiol. 1990 431:291-318."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3684",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181651,
+ "object_name": "3684"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T01:14:33",
+ "ver_number": 6
+ },
+ "3785": {
+ "class_id": 19,
+ "created": "2002-02-21T10:21:30",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3785,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 33745,
+ "object_name": "Crane, Glenis J [prsgjc at bath.ac.uk]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3860,
+ "object_name": "Crane GJ, Hines ML, Neild TO (2001)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Arteriolar networks: Spread of potential (Crane et al 2001)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52411,
+ "object_name": "Arteriolar network"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Crane, G.J., Hines, M.L., and Neild, T.O. (2001)\r\nSimulating the spread of membrane potential changes in arteriolar networks.\r\nMicrocirculation 8:33-43.\r\n\r\nThis model uses a gap junction density mechanism\r\nto couple arteriolar smooth muscle and endothelium\r\nin microvascular trees."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3785",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181536,
+ "object_name": "3785_4"
+ },
+ {
+ "object_id": 181537,
+ "object_name": "3785_5"
+ },
+ {
+ "object_id": 181538,
+ "object_name": "3785_1"
+ },
+ {
+ "object_id": 181539,
+ "object_name": "3785_2"
+ },
+ {
+ "object_id": 181540,
+ "object_name": "3785_3"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 155
+ },
+ "ver_date": "2015-01-02T22:39:59",
+ "ver_number": 10
+ },
+ "3793": {
+ "class_id": 19,
+ "created": "2002-02-21T16:23:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3793,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 18137,
+ "object_name": "Chen WR, Shen GY, Shepherd GM, Hines ML, Midtgaard J (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Olfactory Mitral cell: AP initiation modes (Chen et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The mitral cell primary dendrite plays an important role in transmitting distal olfactory nerve input from olfactory glomerulus to the soma-axon initial segment. To understand how dendritic active properties are involved in this transmission, we have combined dual soma and dendritic patch recordings with computational modeling to analyze action-potential initiation and propagation in the primary dendrite."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3793",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 307
+ },
+ "ver_date": "2018-10-17T14:25:58.737",
+ "ver_number": 14
+ },
+ "3798": {
+ "class_id": 19,
+ "created": "2002-02-28T14:43:28",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3798,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 52406,
+ "object_name": "Multiple sclerosis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169217,
+ "object_name": "Hines M, Shrager P (1991)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Demyelinated and remyelinating axon conductances (Hines, Shrager 1991)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Hines, Michael and Peter Shrager (1991). A computational test of\r\nthe requirements for conduction in demyelinated axons.\r\nJ. Restorative Neurology and Neuroscience. 3 81--93."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3798",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181285,
+ "object_name": "3798_2"
+ },
+ {
+ "object_id": 181288,
+ "object_name": "3798_1"
+ },
+ {
+ "object_id": 181291,
+ "object_name": "3798_4"
+ },
+ {
+ "object_id": 181342,
+ "object_name": "3798_3"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 214
+ },
+ "ver_date": "2015-01-02T21:48:32",
+ "ver_number": 8
+ },
+ "3800": {
+ "class_id": 19,
+ "created": "2002-02-28T15:29:41",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122803,
+ "object_name": "Kv4.3 KCND3"
+ },
+ {
+ "object_id": 122806,
+ "object_name": "Kv1.5 KCNA5"
+ },
+ {
+ "object_id": 122807,
+ "object_name": "HERG KCNH2"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3800,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33749,
+ "object_name": "Jacobson, Ingemar [Ingemar.Jacobson at astrazeneca.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3870,
+ "object_name": "Courtemanche M, Ramirez RJ, Nattel S (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3800",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3800"
+ },
+ "name": "Cardiac Atrial Cell (Courtemanche et al 1998)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52422,
+ "object_name": "Cardiac atrial cell"
+ },
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Marc Courtemanche, Rafael J. Ramirez, and Stanley Nattel.\r\nIonic mechanisms underlying human atrial action potential properties\r\ninsights from a mathematical model\r\nAm J Physiol Heart Circ Physiol 1998 275: H301-H321.\r\n\r\nThe implementation of this model in NEURON\r\nwas contributed by Ingemar Jacobson."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3800",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 193
+ },
+ "ver_date": "2019-08-01T16:30:12.693",
+ "ver_number": 24
+ },
+ "3801": {
+ "class_id": 19,
+ "created": "2002-02-28T16:35:33",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3801,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3866,
+ "object_name": "Bartos M, Vida I, Frotscher M, Geiger JR, Jonas P (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3801_1",
+ "name": "All three synaptic terminals are active"
+ },
+ {
+ "id": "3801_2",
+ "name": "synapse 0 only"
+ },
+ {
+ "id": "3801_3",
+ "name": "synapse 1 only"
+ },
+ {
+ "id": "3801_4",
+ "name": "synapse 2 only"
+ }
+ ],
+ "default": "3801_1"
+ },
+ "name": "Dentate Basket Cell: spatial summation of inhibitory synaptic inputs (Bartos et al 2001)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Spatial summation of inhibitory synaptic input in a passive model of a basket cell from the dentate gyrus of rat hippocampus. Reproduces Figs. 5Ac and d in Bartos, M., Vida, I., Frotscher, M., Geiger, J.R.P, and Jonas, P.. Rapid signaling at inhibitory synapses in a dentate gyrus interneuron network. Journal of Neuroscience 21:2687-2698, 2001."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3801",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181879,
+ "object_name": "3801_3"
+ },
+ {
+ "object_id": 181880,
+ "object_name": "3801_2"
+ },
+ {
+ "object_id": 181881,
+ "object_name": "3801_1"
+ },
+ {
+ "object_id": 181883,
+ "object_name": "3801_4"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 218
+ },
+ "ver_date": "2015-01-02T22:30:26",
+ "ver_number": 8
+ },
+ "3802": {
+ "class_id": 19,
+ "created": "2002-02-28T18:42:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3802,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4436,
+ "object_name": "Beech DJ, Barnes S (1989)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3802",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3802"
+ },
+ "name": "Retinal Photoreceptor: I Potassium (Beech, Barnes 1989)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for a Potassium current from the paper:\r\nBeech DJ, Barnes S.\r\nCharacterization of a voltage-gated K+ channel that accelerates \r\nthe rod response to dim light.\r\nNeuron 3:573-81 (1989)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3802",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181229,
+ "object_name": "3802"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 329
+ },
+ "ver_date": "2014-02-25T01:18:27",
+ "ver_number": 7
+ },
+ "3805": {
+ "class_id": 19,
+ "created": "2002-03-04T15:13:45",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3805,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4852,
+ "object_name": "Dodge FA, Cooley JW (1973)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3805_1",
+ "name": "Fig 3 Soma voltage clamp"
+ },
+ {
+ "id": "3805_2",
+ "name": "Fig 5 IS conductance"
+ },
+ {
+ "id": "3805_3",
+ "name": "Fig 6 Threshold difference"
+ },
+ {
+ "id": "3805_4",
+ "name": "Fig 7 Soma hyperpolarization"
+ },
+ {
+ "id": "3805_5",
+ "name": "Fig 8 Antidromic spatial pattern"
+ }
+ ],
+ "default": "3805_1"
+ },
+ "name": "Spinal Motor Neuron (Dodge, Cooley 1973)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The excitability of various regions of the spinal motorneuron can be specified by solving the partial differential equation of a nerve fiber whose diameter and membrane properties vary with distance. For our model geometrical factors for the myelinated axon, initial segment and cell body were derived from anatomical measurements, the dendritic tree was represented by its equivalent cylinder, and the current-voltage relations of the membrane were described by a modification of the Hodgkin-Huxley model that fits voltage-clamp data from the motorneuron. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3805",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181141,
+ "object_name": "3805_5"
+ },
+ {
+ "object_id": 181142,
+ "object_name": "3805_4"
+ },
+ {
+ "object_id": 181143,
+ "object_name": "3805_3"
+ },
+ {
+ "object_id": 181144,
+ "object_name": "3805_2"
+ },
+ {
+ "object_id": 181155,
+ "object_name": "3805_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 489
+ },
+ "ver_date": "2017-06-21T21:13:33.173",
+ "ver_number": 8
+ },
+ "3807": {
+ "class_id": 19,
+ "created": "2002-03-05T08:48:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3807,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33760,
+ "object_name": "Baccus, Stephen [Baccus at fas.Harvard.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7429,
+ "object_name": "Baccus SA (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Leech Mechanosensory Neurons: Synaptic Facilitation by Reflected APs (Baccus 1998)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114297,
+ "object_name": "Leech pressure (P) mechanosensory neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model by Stephen Baccus explores the phenomena of action potential (AP) propagation at branch boints in axons. APs are sometimes transmitted down the efferent processes and sometimes are reflected back to the axon of AP origin or neither. See the paper for details. The model zip file contains a readme.txt which list introductory steps to follow to run the simulation. Stephen Baccus's email address: baccus@fas.harvard.edu"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3807",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181227,
+ "object_name": "3807"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 273
+ },
+ "ver_date": "2016-04-05T17:40:35.72",
+ "ver_number": 17
+ },
+ "3808": {
+ "class_id": 19,
+ "created": "2002-03-05T10:23:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "id": 3808,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33761,
+ "object_name": "Houweling, Arthur [Arthur at Salk.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4846,
+ "object_name": "Huguenard J, McCormick DA, Shepherd GM (1997)"
+ },
+ {
+ "object_id": 8075,
+ "object_name": "Houweling AR, Sejnowski TJ (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "MyFirstNEURON (Houweling, Sejnowski 1997)",
+ "notes": {
+ "attr_id": 24,
+ "value": "MyFirstNEURON is a NEURON demo by Arthur Houweling and Terry Sejnowski. Perform experiments from the book 'Electrophysiology of the Neuron, A Companion to Shepherd's Neurobiology, An Interactive Tutorial' by John Huguenard & David McCormick, Oxford University Press 1997, or design your own one or two cell simulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3808",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 288
+ },
+ "ver_date": "2023-01-30T09:58:07.433",
+ "ver_number": 21
+ },
+ "3810": {
+ "class_id": 19,
+ "created": "2002-03-05T15:20:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 3810,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33766,
+ "object_name": "MacIntyre, CC [ccm4 at case.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3874,
+ "object_name": "McIntyre CC, Richardson AG, Grill WM (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3810",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3810"
+ },
+ "name": "Spinal Motor Neuron (McIntyre et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulation of peripheral nervous system (PNS) mylelinated axon.\r\n\r\nThis model is described in detail in:\r\n\r\nMcIntyre CC, Richardson AG, and Grill WM.(2002)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3810",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181797,
+ "object_name": "3810"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 490
+ },
+ "ver_date": "2018-09-20T17:27:37.327",
+ "ver_number": 12
+ },
+ "3812": {
+ "class_id": 19,
+ "created": "2002-03-06T09:23:09",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3812,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33805,
+ "object_name": "Khana, Oz"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4081,
+ "object_name": "Anderson JC, Binzegger T, Kahana O, Martin KA, Segev I (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3812",
+ "name": "ModelView"
+ }
+ ],
+ "default": "3812"
+ },
+ "name": "Visual Cortex Neurons: Dendritic study (Anderson et al 1999)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Neuron mod and hoc files for the paper: Anderson, J.C. Binzegger, T., Kahana, O., Segev, I., and Martin, K.A.C Dendritic asymmetry cannot account for directional responses in visual cortex. Nature Neuroscience 2:820:824, 1999"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3812",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 266986,
+ "object_name": "Visual cortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181796,
+ "object_name": "3812"
+ }
+ ]
+ },
+ "ver_date": "2021-03-23T06:10:38.227",
+ "ver_number": 9
+ },
+ "3815": {
+ "class_id": 19,
+ "created": "2002-03-06T16:12:35",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 3815,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4870,
+ "object_name": "Tsodyks M, Pawelzik K, Markram H (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "3815_1",
+ "name": "Fig. 1A pyramid-->pyramid (depression)"
+ },
+ {
+ "id": "3815_2",
+ "name": "Fig. 1B pyramid-->interneuron at 20 Hz (facilitation)"
+ },
+ {
+ "id": "3815_3",
+ "name": "Fig. 1C pyramid-->interneuron at 70 Hz (facilitation-depression)"
+ }
+ ],
+ "default": "3815_1"
+ },
+ "name": "Synaptic plasticity: pyramid->pyr and pyr->interneuron (Tsodyks et al 1998)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An implementation of a model of short-term synaptic plasticity with NEURON. The model was originally described by Tsodyks et al., who assumed that the synapse acted as a current source, but this implementation treats it as a conductance change.\r\n\r\nTsodyks, M., Pawelzik, K., Markram, H.\r\n Neural networks with dynamic synapses.\r\n Neural Computation 10:821-835, 1998.\r\nTsodyks, M., Uziel, A., Markram, H.\r\n Synchrony generation in recurrent networks with\r\n frequency-dependent synapses.\r\n J. Neurosci. 2000 RC50."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3815",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181253,
+ "object_name": "3815_1"
+ },
+ {
+ "object_id": 181506,
+ "object_name": "3815_3"
+ },
+ {
+ "object_id": 181742,
+ "object_name": "3815_2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:05:34",
+ "ver_number": 11
+ },
+ "3817": {
+ "class_id": 19,
+ "created": "2002-03-07T15:27:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "id": 3817,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4170,
+ "object_name": "Destexhe A, Contreras D, Steriade M (1998)"
+ },
+ {
+ "object_id": 19840,
+ "object_name": "Destexhe A, Contreras D, Steriade M (2001)"
+ },
+ {
+ "object_id": 19841,
+ "object_name": "Destexhe A, Sejnowski TJ (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Pyramidal Neuron: Deep, Thalamic Relay and Reticular, Interneuron (Destexhe et al 1998, 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This package shows single-compartment models of different classes of cortical neurons, such as the \"regular-spiking\", \"fast-spiking\" and \"bursting\" (LTS) neurons. The mechanisms included are the Na+ and K+ currents for generating action potentials (INa, IKd), the T-type calcium current (ICaT), and a slow voltage-dependent K+ current (IM). See http://cns.fmed.ulaval.ca/alain_demos.html"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/3817",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 318
+ },
+ "ver_date": "2012-01-09T16:26:03",
+ "ver_number": 23
+ },
+ "5426": {
+ "class_id": 19,
+ "created": "2002-03-21T09:28:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 5426,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29126,
+ "object_name": "HODGKIN AL, HUXLEY AF (1952)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Squid axon (Hodgkin, Huxley 1952) (NEURON)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The classic HH model of squid axon membrane\r\nimplemented in NEURON.\r\nHodgkin, A.L., Huxley, A.F. (1952)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/5426",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 499
+ },
+ "ver_date": "2008-09-18T15:03:44",
+ "ver_number": 11
+ },
+ "6763": {
+ "class_id": 19,
+ "created": "2002-04-02T12:35:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 6763,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33801,
+ "object_name": "Canavier, CC"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4121,
+ "object_name": "Canavier CC (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "6763",
+ "name": "Init & Run"
+ }
+ ],
+ "default": "6763"
+ },
+ "name": "Midbrain dopamine neuron: firing patterns (Canavier 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Sodium dynamics drives the generation of\r\nslow oscillations postulated to underly\r\nNMDA-evoked bursting activity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/6763",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181833,
+ "object_name": "6763"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 281
+ },
+ "ver_date": "2022-12-16T10:29:38.733",
+ "ver_number": 10
+ },
+ "7176": {
+ "class_id": 19,
+ "created": "2002-04-11T13:40:57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 7176,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33751,
+ "object_name": "Cornelis, Hugo [hugo at bbf.uia.ac.be]"
+ },
+ {
+ "object_id": 33770,
+ "object_name": "Airong, Dong [tard at fimmu.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7177,
+ "object_name": "De Schutter E, Bower JM (1994)"
+ },
+ {
+ "object_id": 7203,
+ "object_name": "De Schutter E, Bower JM (1994)"
+ },
+ {
+ "object_id": 12854,
+ "object_name": "Staub C, De Schutter E, Kn\u00f6pfel T (1994)"
+ },
+ {
+ "object_id": 12864,
+ "object_name": "De Schutter E, Bower JM (1994)"
+ },
+ {
+ "object_id": 14598,
+ "object_name": "De Schutter E (1998)"
+ },
+ {
+ "object_id": 17804,
+ "object_name": "Jaeger D, De Schutter E, Bower JM (1997)"
+ },
+ {
+ "object_id": 27597,
+ "object_name": "de Schutter E (1994)"
+ },
+ {
+ "object_id": 27598,
+ "object_name": "De Schutter E (1997)"
+ },
+ {
+ "object_id": 114734,
+ "object_name": "Steuber V, Mittmann W, Hoebeek FE, Silver RA, De Zeeuw CI, H\u00e4usser M, De Schutter E (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Cerebellar purkinje cell (De Schutter and Bower 1994)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Tutorial simulation of a cerebellar Purkinje cell.\r\n\r\nThis tutorial is based upon a GENESIS simulation of a cerebellar Purkinje cell, modeled and fine-tuned by Erik de Schutter. The tutorial assumes that you have a basic knowledge of the Purkinje cell and its synaptic inputs. It gives visual insight in how different properties as concentrations and channel conductances vary and interact within a real Purkinje cell."
+ },
+ "opensourcebrain": {
+ "value": "purkinjecell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7176",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 416
+ },
+ "ver_date": "2006-02-20T09:56:55",
+ "ver_number": 9
+ },
+ "7386": {
+ "class_id": 19,
+ "created": "2002-04-15T13:01:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 7386,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 8736,
+ "object_name": "Watanabe S, Hoffman DA, Migliore M, Johnston D (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: conditional boosting of dendritic APs (Watanabe et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model files from the paper Watanabe S, Hoffman DA, Migliore M,\r\nJohnston D (2002). The experimental and modeling results support the\r\nhypothesis that\r\ndendritic K-A channels and the boosting of back-propagating action\r\npotentials\r\ncontribute to the induction of LTP in CA1 neurons.\r\n See the paper for details.\r\nQuestions about the model may be addressed to Michele Migliore:\r\n michele.migliore@pa.ibf.cnr.it"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7386",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181633,
+ "object_name": "7386"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 170
+ },
+ "ver_date": "2014-02-01T08:02:19",
+ "ver_number": 12
+ },
+ "7399": {
+ "class_id": 19,
+ "created": "2002-04-22T15:16:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 7399,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7401,
+ "object_name": "Lytton WW (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "7399",
+ "name": "ModelView"
+ }
+ ],
+ "default": "7399"
+ },
+ "name": "Feedforward heteroassociative network with HH dynamics (Lytton 1998)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Using the original McCulloch-Pitts notion of simple on and off spike coding in lieu of rate coding, an Anderson-Kohonen artificial neural network (ANN) associative memory model was ported to a neuronal network with Hodgkin-Huxley dynamics."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7399",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181293,
+ "object_name": "7399"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 248
+ },
+ "ver_date": "2023-04-30T15:08:56.327",
+ "ver_number": 22
+ },
+ "7400": {
+ "class_id": 19,
+ "created": "2002-04-22T15:23:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 7400,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4083,
+ "object_name": "Lytton WW, Lipton P (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "7400",
+ "name": "ModelView"
+ }
+ ],
+ "default": "7400"
+ },
+ "name": "Hippocampus temporo-septal engram shift model (Lytton 1999)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Temporo-septal engram shift model of hippocampal memory. The model posits that memories gradually move along the hippocampus from a temporal encoding site to ever more septal sites from which they are recalled. We propose that the sense of time is encoded by the location of the engram along the temporo-septal axis."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7400",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181477,
+ "object_name": "7400"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 260
+ },
+ "ver_date": "2022-12-16T10:24:32.223",
+ "ver_number": 12
+ },
+ "7485": {
+ "class_id": 19,
+ "created": "2002-04-30T16:55:39",
+ "gitrepo": false,
+ "id": 7485,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33792,
+ "object_name": "London, Mickey [MikiLon at lobster.ls.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3919,
+ "object_name": "London M, Segev I (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "CA1 Pyramidal Neuron: Synaptic Scaling (London, Segev 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "London and Segev (2001) discuss location dependent and location independent synaptic scaling in a model CA1 neuron with passive dendrites. The freely available text is followed by a critique by Maggee and Cook who comment that\r\nthe London and Segev model is accurate and informative and however needs to be augmented by\r\nactive channels in dendrites. Note: the\r\nzip files for this model are stored at the nature neuroscience website - Click above Supplementary Source Code in the readme.html in the model files"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7485",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2005-05-27T14:02:55",
+ "ver_number": 14
+ },
+ "7509": {
+ "class_id": 19,
+ "created": "2002-05-03T08:26:10",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 7509,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33747,
+ "object_name": "Magee, Jeffrey [jmagee at lsumc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4002,
+ "object_name": "Magee JC, Cook EP (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: Synaptic Scaling (Magee, Cook 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Jeffrey Magee and Erik Cook found evidence in experiments and modeling that support the hypothesis that an increase in synaptic conductance for\r\nsynapses at larger distances from the soma is\r\nresponsible for reducing the location dependence (relative to the soma) of synapses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7509",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181700,
+ "object_name": "7509"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 168
+ },
+ "ver_date": "2014-02-01T08:01:39",
+ "ver_number": 15
+ },
+ "7659": {
+ "class_id": 19,
+ "created": "2002-05-05T06:32:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 7659,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7658,
+ "object_name": "Migliore M, Shepherd GM (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "7659_1",
+ "name": "S1 and S2 prox (black)"
+ },
+ {
+ "id": "7659_2",
+ "name": "S1 prox, S2 dist (red)"
+ },
+ {
+ "id": "7659_3",
+ "name": "S1 and S2 dist (blue)"
+ },
+ {
+ "id": "7659_4",
+ "name": "S1 prox, S2 dist, + Ih (green)"
+ }
+ ],
+ "default": "7659_1"
+ },
+ "name": "Modulation of temporal integration window (Migliore, Shepherd 2002)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Model simulation file from the paper \r\nM.Migliore and Gordon M. Shepherd\r\nEmerging rules for distributions of active dendritic properties underlying specific neuronal functions. Nature Rev. Neurosci. 3, 362-370 (2002)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7659",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181391,
+ "object_name": "7659_2"
+ },
+ {
+ "object_id": 181395,
+ "object_name": "7659_3"
+ },
+ {
+ "object_id": 181585,
+ "object_name": "7659_4"
+ },
+ {
+ "object_id": 181589,
+ "object_name": "7659_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 286
+ },
+ "ver_date": "2015-01-02T22:30:39",
+ "ver_number": 9
+ },
+ "7907": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 185121,
+ "object_name": "dendritica 1.0 including doc and pdf"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2002-05-17T12:03:12",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "dendritica 1.1"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 7907,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33758,
+ "object_name": "Hausser, M [M.Hausser at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3973,
+ "object_name": "Vetter P, Roth A, H\u00e4usser M (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dendritica (Vetter et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Dendritica is a collection of programs for relating dendritic geometry and signal propagation. The programs are based on those used for the simulations described in: Vetter, P., Roth, A. & Hausser, M. (2001) For reprint requests\r\nand additional information please contact Dr. M. Hausser, email address: m.hausser@ucl.ac.uk"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7907",
+ "ver_date": "2017-07-03T22:32:42.95",
+ "ver_number": 26
+ },
+ "7988": {
+ "class_id": 19,
+ "created": "2002-05-20T13:50:33",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122826,
+ "object_name": "NR2A GRIN2A"
+ },
+ {
+ "object_id": 122827,
+ "object_name": "NR2B GRIN2B"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 7988,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33762,
+ "object_name": "Murphy, Tim H [THMurphy at interchange.ubc.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3971,
+ "object_name": "Chen N, Ren J, Raymond LA, Murphy TH (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "7988_1",
+ "name": "NR2A"
+ },
+ {
+ "id": "7988_2",
+ "name": "NR2B"
+ }
+ ],
+ "default": "7988_1"
+ },
+ "name": "NMDA receptor saturation (Chen et al 2001)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Experiments and modeling reported in the paper Chen N, Ren J, Raymond LA, and Murphy T (2001) support the hypothesis that glutamate has a relatively lower potency at NMDARs than previously thought from agonist application under equilibrium conditions. Further information and reprint requests are available from Dr T.H. Murphy thmurphy at interchange.ubc.ca"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/7988",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 292
+ },
+ "ver_date": "2016-06-14T15:48:39.12",
+ "ver_number": 30
+ },
+ "8115": {
+ "class_id": 19,
+ "created": "2002-05-24T15:48:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 8115,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3882,
+ "object_name": "Destexhe A, Rudolph M, Fellous JM, Sejnowski TJ (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "8115",
+ "name": "ModelView"
+ }
+ ],
+ "default": "8115"
+ },
+ "name": "Fluctuating synaptic conductances recreate in-vivo-like activity (Destexhe et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model (and experiments) reported in Destexhe, Rudolh, Fellous, and Sejnowski (2001) support the hypothesis that many of the\r\ncharacteristics of cortical neurons in vivo can be explained by fast glutamatergic and GABAergic conductances varying stochastically.\r\n\r\nSome of these cortical neuron characteristics of fluctuating synaptic origin are a depolarized membrane potential, the\r\npresence of high-amplitude membrane potential fluctuations, a low input resistance and irregular spontaneous firing activity. In addition, the\r\npoint-conductance model could simulate the enhancement of responsiveness due to background activity.\r\nFor more information please contact Alain Destexhe. email: Destexhe@iaf.cnrs-gif.fr"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/8115",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 249
+ },
+ "ver_date": "2022-12-16T10:31:49.27",
+ "ver_number": 18
+ },
+ "8210": {
+ "class_id": 19,
+ "created": "2002-05-31T17:41:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 8210,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33763,
+ "object_name": "Mainen, Zach [Mainen at cshl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4290,
+ "object_name": "Mainen ZF, Joerges J, Huguenard JR, Sejnowski TJ (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "8210_1",
+ "name": "inject soma"
+ },
+ {
+ "id": "8210_2",
+ "name": "inject dend"
+ }
+ ],
+ "default": "8210_1"
+ },
+ "name": "Spike Initiation in Neocortical Pyramidal Neurons (Mainen et al 1995)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model reproduces figure 3A from the paper\r\nMainen ZF, Joerges J, Huguenard JR, Sejnowski TJ (1995). Please see the paper for detail whose full text is available at http://www.cnl.salk.edu/~zach/methods.html\r\nEmail Zach Mainen for questions: mainen@cshl.org"
+ },
+ "opensourcebrain": {
+ "value": "mainenetalpyramidalcell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/8210",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181399,
+ "object_name": "8210_2"
+ },
+ {
+ "object_id": 181401,
+ "object_name": "8210_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 487
+ },
+ "ver_date": "2016-05-18T09:54:34.45",
+ "ver_number": 16
+ },
+ "8284": {
+ "class_id": 19,
+ "created": "2002-06-05T10:53:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 8284,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33759,
+ "object_name": "Aradi, Ildiko [IAradi at uci.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3937,
+ "object_name": "Chen K, Aradi I, Thon N, Eghbal-Ahmadi M, Baram TZ, Soltesz I (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "8284_1",
+ "name": "HT"
+ },
+ {
+ "id": "8284_2",
+ "name": "Control"
+ }
+ ],
+ "default": "8284_1"
+ },
+ "name": "Febrile seizure-induced modifications to Ih (Chen et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Modeling and experiments in the paper Chen K,Aradi I, Thom N,Eghbal-Ahmadi M, Baram TZ, and Soltesz I (2001) support the hypothesis that modified Ih currents strongly influence inhibitory inputs in CA1 cells and that the depolarizing shift in Ih activation plays a primary role in this process.\r\nPlease see the paper for details. Some modeling details are available at http://www.ucihs.uci.edu/anatomy/soltesz/supp.htm Correspondance should be addressed to isoltesz@uci.edu (modeling was done by Ildiko Aradi, iaradi@uci.edu)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/8284",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181757,
+ "object_name": "8284_1"
+ },
+ {
+ "object_id": 181758,
+ "object_name": "8284_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 247
+ },
+ "ver_date": "2022-05-27T09:25:00.503",
+ "ver_number": 13
+ },
+ "9769": {
+ "class_id": 19,
+ "created": "2002-07-01T05:16:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 9769,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 13856,
+ "object_name": "Poolos NP, Migliore M, Johnston D (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "9769_distal",
+ "name": "distal"
+ },
+ {
+ "id": "9769_proximal",
+ "name": "proximal"
+ }
+ ],
+ "default": "9769_distal"
+ },
+ "name": "CA1 pyramidal neuron: effects of Lamotrigine on dendritic excitability (Poolos et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from N. Poolos, M. Migliore, and D. Johnston, Nature Neuroscience (2002).\r\nThe experimental and modeling results in this paper demonstrate for the first time that neuronal excitability can be altered by pharmaceuticals acting selectively on dendrites, and suggest an important role for Ih in controlling dendritic excitability and epileptogenesis."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/9769",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181521,
+ "object_name": "9769_distal"
+ },
+ {
+ "object_id": 181838,
+ "object_name": "9769_proximal"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 173
+ },
+ "ver_date": "2015-01-02T22:39:35",
+ "ver_number": 10
+ },
+ "9848": {
+ "class_id": 19,
+ "created": "2002-07-03T16:03:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 9848,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7735,
+ "object_name": "Brill MH, Waxman SG, Moore JW, Joyner RW (1977)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "9848_1",
+ "name": "Figure 1"
+ },
+ {
+ "id": "9848_2",
+ "name": "Figure 2A"
+ },
+ {
+ "id": "9848_3",
+ "name": "Figure 2B"
+ }
+ ],
+ "default": "9848_1"
+ },
+ "name": "Myelinated axon conduction velocity (Brill et al 1977)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Examines conduction velocity as function of\r\ninternodal length."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/9848",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181609,
+ "object_name": "9848_1"
+ },
+ {
+ "object_id": 181610,
+ "object_name": "9848_2"
+ },
+ {
+ "object_id": 181611,
+ "object_name": "9848_3"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 289
+ },
+ "ver_date": "2015-01-02T22:07:51",
+ "ver_number": 12
+ },
+ "9849": {
+ "class_id": 19,
+ "created": "2002-07-03T17:46:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 9849,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7734,
+ "object_name": "Westerfield M, Joyner RW, Moore JW (1978)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "9849",
+ "name": "ModelView"
+ }
+ ],
+ "default": "9849"
+ },
+ "name": "Temperature-Sensitive conduction at axon branch points (Westerfield et al 1978)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Propagation of impulses through branching regions of squid axons was examined experimentally and with computer simulations. The ratio of postbranch/prebranch diameters at which propagation failed was very sensitive to temperature."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/9849",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181211,
+ "object_name": "9849"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T01:13:51",
+ "ver_number": 13
+ },
+ "9851": {
+ "class_id": 19,
+ "created": "2002-07-04T13:35:40",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 9851,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 52406,
+ "object_name": "Multiple sclerosis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7733,
+ "object_name": "Moore JW, Joyner RW, Brill MH, Waxman SD, Najar-Joa M (1978)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "9851",
+ "name": "ModelView"
+ }
+ ],
+ "default": "9851"
+ },
+ "name": "Conduction in uniform myelinated axons (Moore et al 1978)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Examines the relative sensitivity of the velocity of impulse propagation to changes in nodal and internodal parameters."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/9851",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181774,
+ "object_name": "9851"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 208
+ },
+ "ver_date": "2014-02-06T16:22:44",
+ "ver_number": 12
+ },
+ "9852": {
+ "class_id": 19,
+ "created": "2002-07-05T09:02:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 9852,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7728,
+ "object_name": "Moore JW, Stockbridge N, Westerfield M (1983)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "9852_1",
+ "name": "Figure 1A"
+ },
+ {
+ "id": "9852_2",
+ "name": "Figure 1B"
+ },
+ {
+ "id": "9852_3",
+ "name": "Figure 1C"
+ },
+ {
+ "id": "9852_4",
+ "name": "Figure 1D"
+ },
+ {
+ "id": "9852_5",
+ "name": "Figure 2A"
+ },
+ {
+ "id": "9852_6",
+ "name": "Figure 2B"
+ },
+ {
+ "id": "9852_7",
+ "name": "Figure 3A"
+ },
+ {
+ "id": "9852_8",
+ "name": "Figure 3B"
+ },
+ {
+ "id": "9852_9",
+ "name": "Figure 3C"
+ },
+ {
+ "id": "9852_10",
+ "name": "Figure 4A"
+ },
+ {
+ "id": "9852_11",
+ "name": "Figure 4B"
+ },
+ {
+ "id": "9852_12",
+ "name": "Figure 4C"
+ },
+ {
+ "id": "9852_13",
+ "name": "Figure 5A"
+ },
+ {
+ "id": "9852_14",
+ "name": "Figure 5B"
+ },
+ {
+ "id": "9852_15",
+ "name": "Figure 5C"
+ },
+ {
+ "id": "9852_16",
+ "name": "Figure 5D"
+ }
+ ],
+ "default": "9852_1"
+ },
+ "name": "Site of impulse initiation in a neuron (Moore et al 1983)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Examines the effect of temperature, the taper of the axon hillock, and HH channel density on antidromic spike invasion into the soma and spike initiation under dendritic stimulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/9852",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181182,
+ "object_name": "9852_1"
+ },
+ {
+ "object_id": 181183,
+ "object_name": "9852_3"
+ },
+ {
+ "object_id": 181184,
+ "object_name": "9852_2"
+ },
+ {
+ "object_id": 181185,
+ "object_name": "9852_5"
+ },
+ {
+ "object_id": 181186,
+ "object_name": "9852_4"
+ },
+ {
+ "object_id": 181187,
+ "object_name": "9852_7"
+ },
+ {
+ "object_id": 181188,
+ "object_name": "9852_6"
+ },
+ {
+ "object_id": 181189,
+ "object_name": "9852_9"
+ },
+ {
+ "object_id": 181190,
+ "object_name": "9852_8"
+ },
+ {
+ "object_id": 181845,
+ "object_name": "9852_15"
+ },
+ {
+ "object_id": 181846,
+ "object_name": "9852_14"
+ },
+ {
+ "object_id": 181847,
+ "object_name": "9852_16"
+ },
+ {
+ "object_id": 181848,
+ "object_name": "9852_11"
+ },
+ {
+ "object_id": 181849,
+ "object_name": "9852_10"
+ },
+ {
+ "object_id": 181850,
+ "object_name": "9852_13"
+ },
+ {
+ "object_id": 181851,
+ "object_name": "9852_12"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:01:31",
+ "ver_number": 10
+ },
+ "9853": {
+ "class_id": 19,
+ "created": "2002-07-06T16:10:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 9853,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7729,
+ "object_name": "Joyner RW, Westerfield M, Moore JW (1980)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "9853",
+ "name": "ModelView"
+ }
+ ],
+ "default": "9853"
+ },
+ "name": "Current flow during PAP in squid axon at diameter change (Joyner et al 1980)",
+ "notes": {
+ "attr_id": 24,
+ "value": "From the paper abstract: An impulse ... sees an increased electrical load at regions of increasing diameter or at branch points with certain morphologies. We present here theoretical and experimental studies on the changes in membrane current and axial current associated with diameter changes. The theoretical studies were done with numerical solutions for cable equations that were generalized to include a varying diameter; the Hodgkin-Huxley equations were used to represent the membrane properties. ... As an action potential approaches a region of increased electrical load, the action potential amplitude and rate of rise decrease, but there is a marked increase in the magnitude of the inward sodium current. ... (See paper for more details.)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/9853",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181776,
+ "object_name": "9853"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 211
+ },
+ "ver_date": "2014-02-06T16:24:52",
+ "ver_number": 14
+ },
+ "9888": {
+ "class_id": 19,
+ "created": "2002-07-09T12:51:58",
+ "gitrepo": false,
+ "id": 9888,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7725,
+ "object_name": "Stockbridge N, Moore JW (1984)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Presynaptic calcium dynamics at neuromuscular junction (Stockbridge, Moore 1984)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The diffusion of calcium is effectively reduced\r\nby the ratio of bound to free calcium. Treating\r\nthe release magnitude as proportional to the\r\nfourth power of calcium concentration next to\r\nthe membrane gives reasonable facilitation\r\nwith very little release between spikes."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/9888",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 314
+ },
+ "ver_date": "2014-07-22T13:49:02",
+ "ver_number": 14
+ },
+ "9889": {
+ "class_id": 19,
+ "created": "2002-07-09T15:54:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 9889,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4220,
+ "object_name": "Lytton WW, Contreras D, Destexhe A, Steriade M (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "9889",
+ "name": "ModelView"
+ }
+ ],
+ "default": "9889"
+ },
+ "name": "Thalamic quiescence of spike and wave seizures (Lytton et al 1997)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A phase plane analysis of a two cell interaction between a thalamocortical neuron (TC) and a thalamic reticularis neuron (RE)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/9889",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181701,
+ "object_name": "9889"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T09:28:45.46",
+ "ver_number": 25
+ },
+ "10360": {
+ "class_id": 19,
+ "created": "2002-07-15T16:37:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 10360,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7723,
+ "object_name": "Lindgren CA, Moore JW (1989)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "10360",
+ "name": "Init & Run"
+ }
+ ],
+ "default": "10360"
+ },
+ "name": "Nerve terminal currents at lizard neuromuscular junction (Lindgren, Moore 1989)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Loose patch clamp measurement of presynaptic ionic currents at lizard neuromuscular junction compared with computer simulations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/10360",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181675,
+ "object_name": "10360"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 297
+ },
+ "ver_date": "2014-02-25T01:02:37",
+ "ver_number": 11
+ },
+ "12631": {
+ "class_id": 19,
+ "created": "2002-07-29T08:00:57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 12631,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 13855,
+ "object_name": "Therapeutics"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4188,
+ "object_name": "Lytton WW (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Computer model of clonazepam's effect in thalamic slice (Lytton 1997)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Demonstration of the effect of a minor pharmacological synaptic\r\nchange at the network level. Clonazepam, a benzodiazepine, enhances\r\ninhibition but is paradoxically useful for certain types of\r\nseizures. This simulation shows how inhibition of\r\ninhibitory cells (the RE cells) produces this counter-intuitive\r\neffect."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/12631",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 205
+ },
+ "ver_date": "2023-04-30T15:10:43.643",
+ "ver_number": 35
+ },
+ "17663": {
+ "class_id": 19,
+ "created": "2002-08-26T18:51:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 17663,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4896,
+ "object_name": "Destexhe A, Contreras D, Steriade M, Sejnowski TJ, Huguenard JR (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "17663_1",
+ "name": "Burst behavior in single-compartment model"
+ },
+ {
+ "id": "17663_2",
+ "name": "Burst behavior in 3-compartment model"
+ },
+ {
+ "id": "17663_3",
+ "name": "Voltage-clamp in 3-compartment cell model"
+ },
+ {
+ "id": "17663_4",
+ "name": "Burst behavior in detailed cell model"
+ },
+ {
+ "id": "17663_5",
+ "name": "Voltage-clamp in detailed cell model"
+ },
+ {
+ "id": "17663_6",
+ "name": "Burst behavior in dissociated cell model"
+ },
+ {
+ "id": "17663_7",
+ "name": "Voltage-clamp in dissociated cell model"
+ }
+ ],
+ "default": "17663_1"
+ },
+ "name": "Thalamic reticular neurons: the role of Ca currents (Destexhe et al 1996)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The experiments and modeling reported in this paper show how intrinsic bursting properties of RE cells may be explained by dendritic calcium currents."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/17663",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181670,
+ "object_name": "17663_5"
+ },
+ {
+ "object_id": 181671,
+ "object_name": "17663_4"
+ },
+ {
+ "object_id": 181672,
+ "object_name": "17663_7"
+ },
+ {
+ "object_id": 181673,
+ "object_name": "17663_6"
+ },
+ {
+ "object_id": 181674,
+ "object_name": "17663_1"
+ },
+ {
+ "object_id": 181676,
+ "object_name": "17663_3"
+ },
+ {
+ "object_id": 181677,
+ "object_name": "17663_2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:39:42",
+ "ver_number": 15
+ },
+ "17664": {
+ "class_id": 19,
+ "created": "2002-08-27T10:17:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 17664,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33752,
+ "object_name": "Miyakawa, H [Miyakawa at ls.toyaku.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3965,
+ "object_name": "Miyasho T, Takagi H, Suzuki H, Watanabe S, Inoue M, Kudo Y, Miyakawa H (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "17664",
+ "name": "ModelView"
+ }
+ ],
+ "default": "17664"
+ },
+ "name": "Cerebellar purkinje cell: K and Ca channels regulate APs (Miyasho et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We adopted De Schutter and Bower's model as the starting point, then modified the descriptions of\r\nseveral ion channels, such as the P-type Ca channel and the delayed rectifier K channel, and added class-E Ca channels and D-type K channels to the model. Our new model reproduces most of our experimental results and supports the conclusions of our experimental study that class-E Ca channels and D-type K channels are present and functioning in the dendrites of Purkinje neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/17664",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181301,
+ "object_name": "17664"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 197
+ },
+ "ver_date": "2013-12-10T15:37:09",
+ "ver_number": 14
+ },
+ "18197": {
+ "class_id": 19,
+ "created": "2002-09-05T11:00:06",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 18197,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 33763,
+ "object_name": "Mainen, Zach [Mainen at cshl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 13844,
+ "object_name": "Destexhe A, Mainen Z, Sejnowski TJ (1994)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "18197_1",
+ "name": "fig 1A (Glutamate)"
+ },
+ {
+ "id": "18197_2",
+ "name": "fig 1D (GABA)"
+ }
+ ],
+ "default": "18197_1"
+ },
+ "name": "Efficient Method for Computing Synaptic Conductance (Destexhe et al 1994)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A simple model of transmitter release is used to solve first order kinetic equations of neurotransmiter/receptor binding. This method is applied to a glutamate and gabaa receptor. See reference for more details. The method is extended to more complex kinetic schemes in a seperate paper (Destexhe et al J Comp Neuro 1:195-231, 1994). Application to AMPA, NMDA, GABAA, and GABAB receptors is given in a book chapter (Destexhe et al In: The Neurobiology of Computation, Edited by Bower, J., Kluwer Academic Press, Norwell MA, 1995, pp. 9-14.) More information and papers at\r\nhttp://cns.iaf.cnrs-gif.fr/Main.html\r\nand through email: Destexhe@iaf.cnrs-gif.fr"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/18197",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181156,
+ "object_name": "18197_1"
+ },
+ {
+ "object_id": 181531,
+ "object_name": "18197_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 231
+ },
+ "ver_date": "2015-01-02T21:55:26",
+ "ver_number": 9
+ },
+ "18198": {
+ "class_id": 19,
+ "created": "2002-09-05T17:32:27",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 18198,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 33763,
+ "object_name": "Mainen, Zach [Mainen at cshl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4314,
+ "object_name": "Destexhe A, Mainen ZF, Sejnowski TJ (1994)"
+ },
+ {
+ "object_id": 13844,
+ "object_name": "Destexhe A, Mainen Z, Sejnowski TJ (1994)"
+ },
+ {
+ "object_id": 19255,
+ "object_name": "Destexhe A, Mainen Z, Sejnowski T (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Application of a common kinetic formalism for synaptic models (Destexhe et al 1994)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 214,
+ "object_name": "Glycine"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 225,
+ "object_name": "Zn2+"
+ },
+ {
+ "object_id": 226,
+ "object_name": "NO"
+ },
+ {
+ "object_id": 227,
+ "object_name": "CO"
+ },
+ {
+ "object_id": 228,
+ "object_name": "Dynorphin"
+ },
+ {
+ "object_id": 229,
+ "object_name": "Ephinephrine"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ },
+ {
+ "object_id": 231,
+ "object_name": "Amino Acids"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 234,
+ "object_name": "Monoamines"
+ },
+ {
+ "object_id": 235,
+ "object_name": "Peptides"
+ },
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ },
+ {
+ "object_id": 237,
+ "object_name": "Gases"
+ },
+ {
+ "object_id": 238,
+ "object_name": "Histamine"
+ },
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Application to AMPA, NMDA, GABAA, and GABAB receptors is given in a book chapter. The reference paper synthesizes a comprehensive general description of synaptic transmission with Markov kinetic models. This framework is applicable to modeling ion channels, synaptic release, and all receptors. Please see the references for more details. A simple introduction to this method is given in a seperate paper Destexhe et al Neural Comput 6:14-18 , 1994). More information and papers at http://cns.iaf.cnrs-gif.fr/Main.html and through email: Destexhe@iaf.cnrs-gif.fr"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/18198",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ },
+ {
+ "object_id": 179,
+ "object_name": "M1"
+ },
+ {
+ "object_id": 180,
+ "object_name": "M3"
+ },
+ {
+ "object_id": 181,
+ "object_name": "M4"
+ },
+ {
+ "object_id": 182,
+ "object_name": "M5"
+ },
+ {
+ "object_id": 183,
+ "object_name": "M2"
+ },
+ {
+ "object_id": 184,
+ "object_name": "mGluR1"
+ },
+ {
+ "object_id": 185,
+ "object_name": "mGluR2"
+ },
+ {
+ "object_id": 186,
+ "object_name": "mGluR3"
+ },
+ {
+ "object_id": 187,
+ "object_name": "mGluR4"
+ },
+ {
+ "object_id": 188,
+ "object_name": "mGluR5"
+ },
+ {
+ "object_id": 189,
+ "object_name": "mGluR6"
+ },
+ {
+ "object_id": 190,
+ "object_name": "mGluR7"
+ },
+ {
+ "object_id": 191,
+ "object_name": "mGluR8"
+ },
+ {
+ "object_id": 192,
+ "object_name": "Alpha"
+ },
+ {
+ "object_id": 193,
+ "object_name": "Alpha1"
+ },
+ {
+ "object_id": 194,
+ "object_name": "Alpha2"
+ },
+ {
+ "object_id": 195,
+ "object_name": "Beta"
+ },
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ },
+ {
+ "object_id": 198,
+ "object_name": "5-HT1"
+ },
+ {
+ "object_id": 199,
+ "object_name": "5-HT2"
+ },
+ {
+ "object_id": 200,
+ "object_name": "5-HT4"
+ },
+ {
+ "object_id": 201,
+ "object_name": "H2"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ },
+ {
+ "object_id": 208,
+ "object_name": "5-HT3"
+ },
+ {
+ "object_id": 210,
+ "object_name": "Kainate"
+ },
+ {
+ "object_id": 211,
+ "object_name": "Monoamine Receptors"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 215,
+ "object_name": "Adrenergic"
+ },
+ {
+ "object_id": 216,
+ "object_name": "Serotonin"
+ },
+ {
+ "object_id": 217,
+ "object_name": "Histamine"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ },
+ {
+ "object_id": 219,
+ "object_name": "Amino Acid Receptors"
+ },
+ {
+ "object_id": 220,
+ "object_name": "Sensory Receptors"
+ },
+ {
+ "object_id": 221,
+ "object_name": "Olfactory Receptors"
+ },
+ {
+ "object_id": 222,
+ "object_name": "Opsins"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ },
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ },
+ {
+ "object_id": 2372,
+ "object_name": "Gaseous Receptors"
+ },
+ {
+ "object_id": 2375,
+ "object_name": "NO"
+ },
+ {
+ "object_id": 2388,
+ "object_name": "Peptide Receptors"
+ },
+ {
+ "object_id": 2389,
+ "object_name": "Dynorphin"
+ },
+ {
+ "object_id": 2390,
+ "object_name": "H1"
+ },
+ {
+ "object_id": 2391,
+ "object_name": "Ion Receptors"
+ },
+ {
+ "object_id": 2392,
+ "object_name": "Zn2+"
+ },
+ {
+ "object_id": 2393,
+ "object_name": "CO"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181263,
+ "object_name": "18198_1"
+ },
+ {
+ "object_id": 181368,
+ "object_name": "18198_5"
+ },
+ {
+ "object_id": 181370,
+ "object_name": "18198_7"
+ },
+ {
+ "object_id": 181371,
+ "object_name": "18198_6"
+ },
+ {
+ "object_id": 181373,
+ "object_name": "18198_3"
+ },
+ {
+ "object_id": 181783,
+ "object_name": "18198_4"
+ },
+ {
+ "object_id": 181799,
+ "object_name": "18198_2"
+ },
+ {
+ "object_id": 181808,
+ "object_name": "18198_9"
+ },
+ {
+ "object_id": 181811,
+ "object_name": "18198_8"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 154
+ },
+ "ver_date": "2018-02-26T10:59:14.057",
+ "ver_number": 25
+ },
+ "18500": {
+ "class_id": 19,
+ "created": "2002-09-20T15:40:32",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 18500,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 33763,
+ "object_name": "Mainen, Zach [Mainen at cshl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4314,
+ "object_name": "Destexhe A, Mainen ZF, Sejnowski TJ (1994)"
+ },
+ {
+ "object_id": 12053,
+ "object_name": "Destexhe A, Mainen ZF, Sejnowski TJ (1998)"
+ },
+ {
+ "object_id": 13844,
+ "object_name": "Destexhe A, Mainen Z, Sejnowski TJ (1994)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "18500_1",
+ "name": "AMPA/Kainate glutamatergic receptors"
+ },
+ {
+ "id": "18500_2",
+ "name": "NMDA glutamatergic receptors"
+ },
+ {
+ "id": "18500_3",
+ "name": "GABA-A receptors"
+ },
+ {
+ "id": "18500_4",
+ "name": "GABA-B receptors"
+ }
+ ],
+ "default": "18500_1"
+ },
+ "name": "Kinetic synaptic models applicable to building networks (Destexhe et al 1998)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simplified AMPA, NMDA, GABAA, and GABAB receptor models useful for building networks are described in a book chapter. One reference paper synthesizes a comprehensive general description of synaptic transmission with Markov kinetic models which is applicable to modeling ion channels, synaptic release, and all receptors. Also a simple introduction to this method is given in a seperate paper Destexhe et al Neural Comput 6:14-18 , 1994). More information and papers at http://cns.iaf.cnrs-gif.fr/Main.html and through email: Destexhe@iaf.cnrs-gif.fr"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/18500",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181841,
+ "object_name": "18500_4"
+ },
+ {
+ "object_id": 181842,
+ "object_name": "18500_2"
+ },
+ {
+ "object_id": 181843,
+ "object_name": "18500_3"
+ },
+ {
+ "object_id": 181844,
+ "object_name": "18500_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 270
+ },
+ "ver_date": "2018-02-26T10:59:54.67",
+ "ver_number": 15
+ },
+ "18501": {
+ "class_id": 19,
+ "created": "2002-10-03T12:50:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "id": 18501,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33802,
+ "object_name": "Sheasby, Brent W "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4117,
+ "object_name": "Sheasby BW, Fohlmeister JF (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Salamander retinal ganglian cells: morphology influences firing (Sheasby, Fohlmeister 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Nerve impulse entrainment and other\r\nexcitation and passive phenomena are analyzed for a morphologically\r\ndiverse and exhaustive data set (n=57) of realistic (3-dimensional\r\ncomputer traced) soma-dendritic tree structures of ganglion cells in\r\nthe tiger salamander (Ambystoma tigrinum) retina."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/18501",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 333
+ },
+ "ver_date": "2012-01-11T11:33:09",
+ "ver_number": 17
+ },
+ "18502": {
+ "class_id": 19,
+ "created": "2002-10-11T15:52:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 18502,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33803,
+ "object_name": "Rusakov, DA [D.Rusakov at ion.ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4193,
+ "object_name": "Rusakov DA, Richter-Levin G, Stewart MG, Bliss TV (1997)"
+ },
+ {
+ "object_id": 4235,
+ "object_name": "Rusakov DA, Stewart MG, Korogod SM (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "18502_1",
+ "name": "branch near shaft"
+ },
+ {
+ "id": "18502_2",
+ "name": "regular sized necks"
+ },
+ {
+ "id": "18502_3",
+ "name": "0.25 nS AMPA (control)"
+ },
+ {
+ "id": "18502_4",
+ "name": "0.35 nS AMPA (control)"
+ }
+ ],
+ "default": "18502_1"
+ },
+ "name": "Spine fusion and branching affects synaptic response (Rusakov et al 1996, 1997)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This compartmental model of a hippocampal granule cell has spinous synapses\r\nplaced on the second-order dendrites. Changes in shape and connectivity of\r\nthe spines usually does not effect the synaptic response of the cell unless\r\nactive conductances are incorporated into the spine membrane (e.g. voltage-dependent\r\nCa2+ channels). With active conductances, spines can generate spike-like events.\r\nWe showed that changes like fusion and branching, or in fact any increase in the \r\nequivalent spine neck resistance, could trigger a dramatic increase in the spine's\r\ninfluence on the dendritic shaft potential."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/18502",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181872,
+ "object_name": "18502_1"
+ },
+ {
+ "object_id": 181873,
+ "object_name": "18502_2"
+ },
+ {
+ "object_id": 181874,
+ "object_name": "18502_3"
+ },
+ {
+ "object_id": 181875,
+ "object_name": "18502_4"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 492
+ },
+ "ver_date": "2020-04-21T18:19:49.103",
+ "ver_number": 14
+ },
+ "18738": {
+ "class_id": 19,
+ "created": "2002-10-17T12:05:17",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 18738,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33794,
+ "object_name": "Tsutsui, H "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3930,
+ "object_name": "Tsutsui H, Oka Y (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "18738",
+ "name": "ModelView"
+ }
+ ],
+ "default": "18738"
+ },
+ "name": "Dendritic tip geometry effects electrical properties (Tsutsui, Oka 2001)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52427,
+ "object_name": "Teleost thalamic neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In their teleost thalamic neuron models the authors demonstrate a dramatic increase in the passive propagation of synaptic inputs through the dendritic stalk to the soma in cells with larger tips."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/18738",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181853,
+ "object_name": "18738"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 217
+ },
+ "ver_date": "2014-02-06T17:14:52",
+ "ver_number": 10
+ },
+ "18742": {
+ "class_id": 19,
+ "created": "2002-10-18T09:43:18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 18742,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33794,
+ "object_name": "Tsutsui, H "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 10335,
+ "object_name": "Tsutsui H, Oka Y (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "18742_1",
+ "name": "6A"
+ },
+ {
+ "id": "18742_2",
+ "name": "6B"
+ },
+ {
+ "id": "18742_3",
+ "name": "7A"
+ }
+ ],
+ "default": "18742_1"
+ },
+ "name": "Novel Na current with slow de-inactivation (Tsutsui, Oka 2002)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52427,
+ "object_name": "Teleost thalamic neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The authors found a novel Na current in teleost thalamic nuclei was well described by the m^3 h Hodgkin-Huxley model. The kinetic parameters derived from their experiments (see the reference for details) revealed that the h gate had a large time constant\r\n(~100ms at -80 to -50mV). This explains the thalamic neurons long refractory period and the gradual recovery of AP amplitude as the inter spike interval grows."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/18742",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181341,
+ "object_name": "18742_3"
+ },
+ {
+ "object_id": 181366,
+ "object_name": "18742_1"
+ },
+ {
+ "object_id": 181855,
+ "object_name": "18742_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 300
+ },
+ "ver_date": "2015-01-02T22:29:45",
+ "ver_number": 14
+ },
+ "18871": {
+ "class_id": 19,
+ "created": "2002-10-23T16:16:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 18871,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33795,
+ "object_name": "Bhalla, Upinder S [bhalla at ncbs.res.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 18759,
+ "object_name": "Bhalla US, Iyengar R (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 18747,
+ "object_name": "GENESIS (web link to model)"
+ }
+ ]
+ },
+ "name": "Emergent properties of networks of biological signaling pathways (Bhalla, Iyengar 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Biochemical signaling networks were constructed with experimentally obtained constants and analyzed by computational methods to understand their role in complex biological processes. These networks exhibit emergent properties such as integration of signals across multiple time scales, generation of distinct outputs depending on input strength and duration, and self-sustaining feedback loops. Properties of signaling networks raise the possibility that information for \"learned behavior\" of biological systems may be stored within intracellular biochemical reactions that comprise signaling pathways."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/18871",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ }
+ ]
+ },
+ "ver_date": "2016-04-07T15:14:45.423",
+ "ver_number": 11
+ },
+ "19022": {
+ "class_id": 19,
+ "created": "2002-10-25T09:33:42",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 19022,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33797,
+ "object_name": "Roth, Arnd "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4548,
+ "object_name": "Geiger JR, L\u00fcbke J, Roth A, Frotscher M, Jonas P (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "19022",
+ "name": "ModelView"
+ }
+ ],
+ "default": "19022"
+ },
+ "name": "Fast AMPA receptor signaling (Geiger et al 1997)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Glutamatergic transmission at a principal neuron-interneuron synapse was investigated by dual whole-cell patch-clamp recording in rat hippocampal slices combined with morphological analysis and modeling. Simulations based on a compartmental model of the interneuron indicated that the rapid postsynaptic conductance change determines the shape and the somatodendritic integration of EPSPs, thus enabling interneurons to detect synchronous principal neuron activity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19022",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181266,
+ "object_name": "19022"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 245
+ },
+ "ver_date": "2014-02-14T15:30:10",
+ "ver_number": 13
+ },
+ "19176": {
+ "class_id": 19,
+ "created": "2002-11-06T09:49:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 19176,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33742,
+ "object_name": "Nolan, Matt [mfnolan at fido.cpmc.columbia.edu]"
+ },
+ {
+ "object_id": 33743,
+ "object_name": "Chen, Shan [sc448 at columbia.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 18748,
+ "object_name": "Wang J, Chen S, Nolan MF, Siegelbaum SA (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Activity dependent regulation of pacemaker channels by cAMP (Wang et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Demonstration of the physiological consequences of the cyclic allosteric gating scheme for Ih mediated by HCN2 in thalamocortical relay cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19176",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 150
+ },
+ "ver_date": "2017-03-18T10:16:58.22",
+ "ver_number": 14
+ },
+ "19214": {
+ "class_id": 19,
+ "created": "2002-11-18T15:29:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 19214,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33754,
+ "object_name": "Korogod, Sergey M [Korogod at ff.dsu.dp.ua]"
+ },
+ {
+ "object_id": 33755,
+ "object_name": "Kulagina, Irina B [Kulagina at ff.dsu.dp.ua]"
+ },
+ {
+ "object_id": 33756,
+ "object_name": "Kukushka, Valery I [Valery at ff.dsu.dp.ua]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 10298,
+ "object_name": "Korogod SM, Kulagina IB (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "19214_1",
+ "name": "Fig.1. A,C"
+ },
+ {
+ "id": "19214_2",
+ "name": "Fig.1. B,D"
+ },
+ {
+ "id": "19214_3",
+ "name": "Fig.2. A,C"
+ },
+ {
+ "id": "19214_4",
+ "name": "Fig.2. B,D"
+ },
+ {
+ "id": "19214_5",
+ "name": "Fig.3. A-C Symmetric"
+ },
+ {
+ "id": "19214_6",
+ "name": "Fig.3. A-C Asymmetric"
+ },
+ {
+ "id": "19214_7",
+ "name": "Fig.3. D Symmetric"
+ },
+ {
+ "id": "19214_8",
+ "name": "Fig.3. D Asymmetric"
+ },
+ {
+ "id": "19214_9",
+ "name": "Fig.3. E-G Symmetric"
+ },
+ {
+ "id": "19214_10",
+ "name": "Fig.3. E-G Asymmetric"
+ },
+ {
+ "id": "19214_11",
+ "name": "Fig.4. A-C Symmetric"
+ },
+ {
+ "id": "19214_12",
+ "name": "Fig.4. A-C Asymmetric"
+ },
+ {
+ "id": "19214_14",
+ "name": "Fig.4. D Asymmetric"
+ },
+ {
+ "id": "19214_15",
+ "name": "Fig.4. E-G Symmetric"
+ },
+ {
+ "id": "19214_16",
+ "name": "Fig.4. E-G Asymmetric"
+ },
+ {
+ "id": "19214_18",
+ "name": "Fig.5. A-C Asymmetric"
+ },
+ {
+ "id": "19214_19",
+ "name": "Fig.5. D Symmetric"
+ },
+ {
+ "id": "19214_20",
+ "name": "Fig.5. D Asymmetric"
+ },
+ {
+ "id": "19214_21",
+ "name": "Fig.5. E-G Symmetric"
+ },
+ {
+ "id": "19214_22",
+ "name": "Fig.5. E-G Asymmetric"
+ }
+ ],
+ "default": "19214_1"
+ },
+ "name": "Geometry-induced features of current transfer in neuronal dendrites (Korogod, Kulagina 1998)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The impact of dendritic geometry on somatopetal transfer of the current generated by steady uniform activation of excitatory synaptic conductance distributed over passive, or active (Hodgkin-Huxley type), dendrites was studied in simulated neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19214",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181153,
+ "object_name": "19214_21"
+ },
+ {
+ "object_id": 181180,
+ "object_name": "19214_16"
+ },
+ {
+ "object_id": 181289,
+ "object_name": "19214_9"
+ },
+ {
+ "object_id": 181290,
+ "object_name": "19214_8"
+ },
+ {
+ "object_id": 181292,
+ "object_name": "19214_5"
+ },
+ {
+ "object_id": 181294,
+ "object_name": "19214_7"
+ },
+ {
+ "object_id": 181295,
+ "object_name": "19214_6"
+ },
+ {
+ "object_id": 181296,
+ "object_name": "19214_1"
+ },
+ {
+ "object_id": 181298,
+ "object_name": "19214_3"
+ },
+ {
+ "object_id": 181299,
+ "object_name": "19214_2"
+ },
+ {
+ "object_id": 181415,
+ "object_name": "19214_4"
+ },
+ {
+ "object_id": 181580,
+ "object_name": "19214_19"
+ },
+ {
+ "object_id": 181583,
+ "object_name": "19214_18"
+ },
+ {
+ "object_id": 181607,
+ "object_name": "19214_15"
+ },
+ {
+ "object_id": 181608,
+ "object_name": "19214_14"
+ },
+ {
+ "object_id": 181721,
+ "object_name": "19214_11"
+ },
+ {
+ "object_id": 181722,
+ "object_name": "19214_10"
+ },
+ {
+ "object_id": 181723,
+ "object_name": "19214_13"
+ },
+ {
+ "object_id": 181724,
+ "object_name": "19214_12"
+ },
+ {
+ "object_id": 181727,
+ "object_name": "19214_17"
+ },
+ {
+ "object_id": 181862,
+ "object_name": "19214_20"
+ },
+ {
+ "object_id": 181864,
+ "object_name": "19214_22"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 256
+ },
+ "ver_date": "2015-01-02T22:06:38",
+ "ver_number": 10
+ },
+ "19366": {
+ "class_id": 19,
+ "created": "2002-11-26T14:11:42",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 19366,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33754,
+ "object_name": "Korogod, Sergey M [Korogod at ff.dsu.dp.ua]"
+ },
+ {
+ "object_id": 33755,
+ "object_name": "Kulagina, Irina B [Kulagina at ff.dsu.dp.ua]"
+ },
+ {
+ "object_id": 33756,
+ "object_name": "Kukushka, Valery I [Valery at ff.dsu.dp.ua]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 19367,
+ "object_name": "Korogod SM, Kulagina IB (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "19366_1",
+ "name": "Fig.1. A-C"
+ },
+ {
+ "id": "19366_2",
+ "name": "Fig.2. A"
+ },
+ {
+ "id": "19366_3",
+ "name": "Fig.2. B"
+ },
+ {
+ "id": "19366_4",
+ "name": "Fig.3. A-D"
+ },
+ {
+ "id": "19366_5",
+ "name": "Fig.3. E-H"
+ }
+ ],
+ "default": "19366_1"
+ },
+ "name": "Conditions of dominant effectiveness of distal dendrites (Korogod, Kulagina 1998)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The model illustrates and explains bistable spatial patterns of the current transfer effectiveness \r\nin the active dendrite with distributed (multiple) tonic excitatory, NMDA type, synaptic input."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19366",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181480,
+ "object_name": "19366_5"
+ },
+ {
+ "object_id": 181481,
+ "object_name": "19366_4"
+ },
+ {
+ "object_id": 181482,
+ "object_name": "19366_3"
+ },
+ {
+ "object_id": 181483,
+ "object_name": "19366_2"
+ },
+ {
+ "object_id": 181484,
+ "object_name": "19366_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 207
+ },
+ "ver_date": "2015-01-02T22:01:09",
+ "ver_number": 9
+ },
+ "19491": {
+ "class_id": 19,
+ "created": "2002-12-03T11:55:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 19491,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33757,
+ "object_name": "Jones, Kelvin E [KEJones at ualberta.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 169987,
+ "object_name": "Dendritic Bistability"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 23451,
+ "object_name": "Carlin KP, Jones KE, Jiang Z, Jordan LM, Brownstone RM (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dendritic L-type Ca currents in motoneurons (Carlin et al 2000)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A component of recorded currents demonstrated kinetics consistent with a current originating at a site spatially segregated from the soma. In response to step commands this component was seen as a late-onset, low amplitude persistent current whilst in response to depolarizing-repolarizing ramp commands a low voltage clockwise current hysteresis was recorded. Simulations using a neuromorphic motoneuron model could reproduce these currents only if a noninactivating calcium conductance was placed in the dendritic compartments."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19491",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181140,
+ "object_name": "19491"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 215
+ },
+ "ver_date": "2015-02-02T16:45:03",
+ "ver_number": 12
+ },
+ "19591": {
+ "class_id": 19,
+ "created": "2002-12-05T18:01:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 19591,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33804,
+ "object_name": "Gabbiani, F"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4324,
+ "object_name": "Gabbiani F, Midtgaard J, Kn\u00f6pfel T (1994)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "19591_1",
+ "name": "Figure 1A"
+ },
+ {
+ "id": "19591_2",
+ "name": "Figure 2A1"
+ },
+ {
+ "id": "19591_3",
+ "name": "Figure 2A2"
+ },
+ {
+ "id": "19591_4",
+ "name": "Figure 2A3"
+ },
+ {
+ "id": "19591_5",
+ "name": "Figure 2B1"
+ },
+ {
+ "id": "19591_6",
+ "name": "Figure 2B2"
+ },
+ {
+ "id": "19591_7",
+ "name": "Figure 2B3"
+ }
+ ],
+ "default": "19591_1"
+ },
+ "name": "Synaptic integration in a model of granule cells (Gabbiani et al 1994)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We have developed a compartmental model of a turtle cerebellar granule cell consisting of 13 compartments that represent the soma and 4 dendrites. We used this model to investigate the synaptic integration of mossy fiber inputs in granule cells. See reference or abstract at PubMed link below for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19591",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181548,
+ "object_name": "19591_3"
+ },
+ {
+ "object_id": 181549,
+ "object_name": "19591_2"
+ },
+ {
+ "object_id": 181550,
+ "object_name": "19591_1"
+ },
+ {
+ "object_id": 181551,
+ "object_name": "19591_7"
+ },
+ {
+ "object_id": 181552,
+ "object_name": "19591_6"
+ },
+ {
+ "object_id": 181553,
+ "object_name": "19591_5"
+ },
+ {
+ "object_id": 181554,
+ "object_name": "19591_4"
+ }
+ ]
+ },
+ "ver_date": "2022-12-16T10:37:41.42",
+ "ver_number": 25
+ },
+ "19696": {
+ "class_id": 19,
+ "created": "2002-12-11T12:55:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 19696,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 20005,
+ "object_name": "Migliore M (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "19696_1",
+ "name": "full model (black)"
+ },
+ {
+ "id": "19696_2",
+ "name": "uniform KA (red)"
+ },
+ {
+ "id": "19696_3",
+ "name": "uniform KA and I-h (blue)"
+ }
+ ],
+ "default": "19696_1"
+ },
+ "name": "CA1 pyramidal neuron: integration of subthreshold inputs from PP and SC (Migliore 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model shows how the experimentally observed increase in the dendritic density of Ih and IA could have a major role in constraining the temporal integration window for the main CA1 \r\nsynaptic inputs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19696",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181353,
+ "object_name": "19696_3"
+ },
+ {
+ "object_id": 181354,
+ "object_name": "19696_2"
+ },
+ {
+ "object_id": 181787,
+ "object_name": "19696_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 176
+ },
+ "ver_date": "2015-01-02T22:30:29",
+ "ver_number": 15
+ },
+ "19698": {
+ "class_id": 19,
+ "created": "2002-12-18T13:08:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 19698,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33799,
+ "object_name": "Hill, Andrew A [aavhill at yahoo.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 19701,
+ "object_name": "Hill AA, Masino MA, Calabrese RL (2002)"
+ },
+ {
+ "object_id": 19711,
+ "object_name": "Hill AA, Lu J, Masino MA, Olsen OH, Calabrese RL (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Leech heart interneuron network model (Hill et al 2001, 2002)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52410,
+ "object_name": "Leech heart interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We have created a computational model of the timing network that paces the heartbeat of the medicinal leech, Hirudo medicinalis. In the intact nerve cord, segmental oscillators are mutually entrained to the same cycle period. Although experiments have shown that the segmental oscillators are coupled by inhibitory coordinating interneurons, the underlying mechanisms of intersegmental coordination have not yet been elucidated. To help understand this coordination, we have created a simple computational model with two variants: symmetric and asymmetric. See references for more details. Biologically realistic network models with two, six, and eight cells and a tutorial are available at the links to Calabrese's web site below."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19698",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114272,
+ "object_name": "Hirudinea (leech)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:21:18.103",
+ "ver_number": 19
+ },
+ "19746": {
+ "class_id": 19,
+ "created": "2002-12-20T09:41:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 19746,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33787,
+ "object_name": "Graham, Bruce [B.Graham at cs.stir.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 10344,
+ "object_name": "Graham BP (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Signal integration in a CA1 pyramidal cell (Graham 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model investigates signal integration in the dendritic tree of a hippocampal CA1 pyramidal cell when different combinations of active channels are present in the tree (Graham, 2001)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19746",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 339
+ },
+ "ver_date": "2014-02-27T16:41:41",
+ "ver_number": 13
+ },
+ "19747": {
+ "class_id": 19,
+ "created": "2002-12-20T09:59:07",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 19747,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33787,
+ "object_name": "Graham, Bruce [B.Graham at cs.stir.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 245693,
+ "object_name": "Vestibular"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 19858,
+ "object_name": "Graham BP, Wong AYC, Forsythe ID (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "19747",
+ "name": "ModelView"
+ }
+ ],
+ "default": "19747"
+ },
+ "name": "Synaptic transmission at the calyx of Held (Graham et al 2001)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model allows the user to investigate faciliation and depression in a complex Monte Carlo model of the calyx of Held, a giant synapse in the mammalian auditory system (Graham et al, 2001)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19747",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181507,
+ "object_name": "19747"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T15:11:20.35",
+ "ver_number": 17
+ },
+ "19920": {
+ "class_id": 19,
+ "created": "2003-01-08T08:34:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ },
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122811,
+ "object_name": "Cav3.3 CACNA1I"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 19920,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 10774,
+ "object_name": "McRory JE, Santi CM, Hamming KS, Mezeyova J, Sutton KG, Baillie DL, Stea A, Snutch TP (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "19920",
+ "name": "ModelView"
+ }
+ ],
+ "default": "19920"
+ },
+ "name": "T-type Calcium currents (McRory et al 2001)",
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for CaT currents from the paper\r\nMcRory et al., J.Biol.Chem. 276:3999 (2001).\r\nIn this paper, three members (alpha-1G, -1H, and -1I) of the LVA calcium channels family were studied. Kinetic parameters were derived from functional expression in transfected cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/19920",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181508,
+ "object_name": "19920"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T01:13:30",
+ "ver_number": 9
+ },
+ "20007": {
+ "class_id": 19,
+ "created": "2003-01-23T10:29:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 20007,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 33748,
+ "object_name": "Lazarewicz, Maciej [mlazarew at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 20013,
+ "object_name": "Lazarewicz MT, Migliore M, Ascoli GA (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "20007",
+ "name": "ModelView"
+ }
+ ],
+ "default": "20007"
+ },
+ "name": "CA3 pyramidal neuron (Lazarewicz et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model shows how using a CA1-like distribution of active dendritic conductances in a CA3 morphology results in dendritic initiation of spikes during a burst."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/20007",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181251,
+ "object_name": "20007"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 182
+ },
+ "ver_date": "2013-12-10T15:37:44",
+ "ver_number": 18
+ },
+ "20014": {
+ "class_id": 19,
+ "created": "2003-01-23T16:52:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 20014,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33754,
+ "object_name": "Korogod, Sergey M [Korogod at ff.dsu.dp.ua]"
+ },
+ {
+ "object_id": 33755,
+ "object_name": "Kulagina, Irina B [Kulagina at ff.dsu.dp.ua]"
+ },
+ {
+ "object_id": 33756,
+ "object_name": "Kukushka, Valery I [Valery at ff.dsu.dp.ua]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 19875,
+ "object_name": "Korogod SM, Kulagina IB, Tyc-Dumont S (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "20014_1",
+ "name": "Fig.2. A-D"
+ },
+ {
+ "id": "20014_2",
+ "name": "Fig.2. E-H"
+ },
+ {
+ "id": "20014_3",
+ "name": "Fig.3. A"
+ },
+ {
+ "id": "20014_4",
+ "name": "Fig.3."
+ },
+ {
+ "id": "20014_5",
+ "name": "Fig.3. C"
+ }
+ ],
+ "default": "20014_1"
+ },
+ "name": "Transfer properties of Neuronal Dendrites (Korogod et al 1998)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The somatopetal current transfer was studied in mathematical models of a reconstructed brainstem motoneuron with tonically activated excitatory synaptic inputs uniformly distributed over the dendritic arborization. See paper and below readme.txt for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/20014",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181636,
+ "object_name": "20014_3"
+ },
+ {
+ "object_id": 181637,
+ "object_name": "20014_2"
+ },
+ {
+ "object_id": 181638,
+ "object_name": "20014_1"
+ },
+ {
+ "object_id": 181639,
+ "object_name": "20014_5"
+ },
+ {
+ "object_id": 181640,
+ "object_name": "20014_4"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:38:22",
+ "ver_number": 15
+ },
+ "20015": {
+ "class_id": 19,
+ "created": "2003-01-24T09:27:07",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 20015,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 20017,
+ "object_name": "Lien CC, Martina M, Schultz JH, Ehmke H, Jonas P (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 interneuron: K currents (Lien et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files for slow and fast K-DR, and K-A potassium currents in inhibitory interneurones of stratum oriens-alveus of the hippocampal CA1 region."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/20015",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 163
+ },
+ "ver_date": "2017-03-14T16:24:55.173",
+ "ver_number": 10
+ },
+ "20212": {
+ "class_id": 19,
+ "created": "2003-02-12T11:15:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 20212,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33746,
+ "object_name": "Poirazi, Panayiota [poirazi at imbb.forth.gr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 20216,
+ "object_name": "Poirazi P, Brannon T, Mel BW (2003)"
+ },
+ {
+ "object_id": 21227,
+ "object_name": "Poirazi P, Brannon T, Mel BW (2003)"
+ },
+ {
+ "object_id": 22353,
+ "object_name": "Poirazi P, Brannon T, Mel BW (2003ab-sup)"
+ },
+ {
+ "object_id": 45500,
+ "object_name": "Polsky A, Mel BW, Schiller J (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: as a 2-layer NN and subthreshold synaptic summation (Poirazi et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed a CA1\r\npyramidal cell model calibrated with a broad spectrum of in vitro data. Using simultaneous\r\ndendritic and somatic recordings, and combining results for two different response measures\r\n(peak vs. mean EPSP), two different stimulus formats (single shock vs. 50 Hz trains),\r\nand two different spatial integration conditions (within vs. between-branch summation),\r\nwe found the cell's subthreshold responses to paired inputs are best described as a sum of\r\nnonlinear subunit responses, where the subunits correspond to different dendritic branches.\r\nIn addition to suggesting a new type of experiment and providing testable predictions, our\r\nmodel shows how conclusions regarding synaptic arithmetic can be influenced by an array\r\nof seemingly innocuous experimental design choices."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/20212",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181569,
+ "object_name": "20212_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 167
+ },
+ "ver_date": "2015-01-02T22:02:32",
+ "ver_number": 29
+ },
+ "20756": {
+ "class_id": 19,
+ "created": "2003-03-19T15:30:08",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 20756,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33748,
+ "object_name": "Lazarewicz, Maciej [mlazarew at gmu.edu]"
+ },
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 20862,
+ "object_name": "Traub RD, Buhl EH, Gloveli T, Whittington MA (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "20756_1",
+ "name": "Figure 2 ( left )"
+ },
+ {
+ "id": "20756_2",
+ "name": "Figure 2 ( right )"
+ },
+ {
+ "id": "20756_3",
+ "name": "Figure 4 Injection 2.5 nA"
+ },
+ {
+ "id": "20756_4",
+ "name": "Figure 4 Injection 1.5 nA"
+ },
+ {
+ "id": "20756_5",
+ "name": "Figure 4 Injection 1.1 nA"
+ },
+ {
+ "id": "20756_6",
+ "name": "Figure 4 Injection 0.6 nA"
+ },
+ {
+ "id": "20756_7",
+ "name": "Figure 5 B1"
+ },
+ {
+ "id": "20756_8",
+ "name": "Figure 5 B2"
+ },
+ {
+ "id": "20756_9",
+ "name": "Figure 6 B1"
+ },
+ {
+ "id": "20756_10",
+ "name": "Figure 6 B2"
+ },
+ {
+ "id": "20756_11",
+ "name": "Figure 7 g_NaP x 0.0"
+ },
+ {
+ "id": "20756_12",
+ "name": "Figure 7 g_NaP x 0.7"
+ },
+ {
+ "id": "20756_13",
+ "name": "Figure 7 g_NaP x 1.0"
+ }
+ ],
+ "default": "20756_1"
+ },
+ "name": "Mechanisms of fast rhythmic bursting in a layer 2/3 cortical neuron (Traub et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This simulation is based on the reference paper listed below.\r\nThis port was made by Roger D Traub and Maciej T Lazarewicz (mlazarew at seas.upenn.edu)\r\n\r\nThanks to Ashlen P Reid for help with porting a morphology of the cell."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/20756",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 280
+ },
+ "ver_date": "2016-06-14T15:41:26.247",
+ "ver_number": 28
+ },
+ "21329": {
+ "class_id": 19,
+ "created": "2003-04-09T16:20:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 21329,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33798,
+ "object_name": "Jonas, Peter [Peter.Jonas at ist.ac.at]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 19797,
+ "object_name": "Bartos M, Vida I, Frotscher M, Meyer A, Monyer H, Geiger JR, Jonas P (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "21329",
+ "name": "ModelView"
+ }
+ ],
+ "default": "21329"
+ },
+ "name": "Gamma oscillations in hippocampal interneuron networks (Bartos et al 2002)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To examine whether an interneuron network with fast inhibitory synapses can act as a gamma frequency oscillator, we developed an interneuron network model based on experimentally determined properties. In comparison to previous interneuron network models, our model was able to generate oscillatory activity with higher coherence over a broad range of frequencies (20-110 Hz). In this model, high coherence and flexibility in frequency control emerge from the combination of synaptic properties, network structure, and electrical coupling.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/21329",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181804,
+ "object_name": "21329"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 253
+ },
+ "ver_date": "2014-02-14T16:27:04",
+ "ver_number": 20
+ },
+ "21984": {
+ "class_id": 19,
+ "created": "2003-05-16T11:59:27",
+ "gitrepo": false,
+ "id": 21984,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 21985,
+ "object_name": "Stockbridge N, Hines M (1982)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Facilitation by residual calcium (Stockbridge, Hines 1982)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The residual calcium hypothesis is compatible\r\nwith facilitation of transmitter release from\r\nthe neuromuscular junction."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/21984",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 244
+ },
+ "ver_date": "2005-04-10T15:40:59",
+ "ver_number": 9
+ },
+ "22203": {
+ "class_id": 19,
+ "created": "2003-06-03T17:13:29",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 22203,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83441,
+ "object_name": "Schaefer, Andreas T [andreas.schaefer at crick.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 22185,
+ "object_name": "Schaefer AT, Helmstaedter M, Sakmann B, Korngreen A (2003)"
+ },
+ {
+ "object_id": 87737,
+ "object_name": "Schaefer AT, Helmstaedter M, Schmitt AC, Bar-Yehuda D, Almog M, Ben-Porat H, Sakmann B, Korngreen A (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Correcting space clamp in dendrites (Schaefer et al. 2003 and 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227970,
+ "object_name": "Neocortex M1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In voltage-clamp experiments, incomplete space clamp distorts the recorded currents, rendering accurate analysis impossible. Here, we present\r\na simple numerical algorithm that corrects such distortions. The method enabled accurate\r\nretrieval of the local densities, kinetics, and density gradients of somatic and dendritic channels. The correction method was applied to two-electrode voltage-clamp recordings of K currents from the apical dendrite of layer 5 neocortical pyramidal\r\nneurons. The generality and robustness of the algorithm make it a useful tool for voltage-clamp analysis of voltage-gated\r\ncurrents in structures of any morphology that is amenable to the voltage-clamp technique."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/22203",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 209
+ },
+ "ver_date": "2017-07-03T22:29:19.73",
+ "ver_number": 19
+ },
+ "26997": {
+ "class_id": 19,
+ "created": "2003-08-07T10:17:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 26997,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4640,
+ "object_name": "Wang XJ, Buzs\u00e1ki G (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "26997_1",
+ "name": "Fig 1A"
+ },
+ {
+ "id": "26997_2",
+ "name": "Fig 3A"
+ }
+ ],
+ "default": "26997_1"
+ },
+ "name": "Gamma oscillations in hippocampal interneuron networks (Wang, Buzsaki 1996)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The authors investigated the hypothesis that 20-80Hz neuronal (gamma) oscillations can emerge in sparsely connected network models of GABAergic fast-spiking interneurons. They explore model NN synchronization and compare their results to anatomical and electrophysiological data from hippocampal fast spiking interneurons."
+ },
+ "opensourcebrain": {
+ "value": "wangbuzsaki1996"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/26997",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181821,
+ "object_name": "26997_2"
+ },
+ {
+ "object_id": 181822,
+ "object_name": "26997_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 254
+ },
+ "ver_date": "2022-05-27T09:34:35.173",
+ "ver_number": 25
+ },
+ "28189": {
+ "class_id": 19,
+ "created": "2003-08-13T15:02:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 28189,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33765,
+ "object_name": "Bazhenov, Maxim [Bazhenov at Salk.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 28190,
+ "object_name": "Bazhenov M, Timofeev I, Steriade M, Sejnowski TJ (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Sleep-wake transitions in corticothalamic system (Bazhenov et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The authors investigate the transition between sleep and awake states with intracellular recordings in cats and computational models. The model describes many essential features of slow wave sleep and activated states as well as the transition between them."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/28189",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2008-10-09T10:52:44",
+ "ver_number": 14
+ },
+ "28316": {
+ "class_id": 19,
+ "created": "2003-08-27T09:21:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 28316,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33741,
+ "object_name": "Saraga, Fernanda [Fernanda.Saraga at utoronto.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 28339,
+ "object_name": "Saraga F, Wu CP, Zhang L, Skinner FK (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Active dendrites and spike propagation in a hippocampal interneuron (Saraga et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We create multi-compartment models of an Oriens-Lacunosum/Moleculare (O-LM) hippocampal interneuron using passive properties, channel kinetics, densities and distributions specific to this cell type, and explore its signaling characteristics. We find that spike initiation depends on both location and amount of input, as well as the intrinsic properties of the interneuron. Distal synaptic input always produces strong back-propagating spikes whereas proximal input could produce both forward and back-propagating spikes depending on the input strength. Please see paper for more details."
+ },
+ "opensourcebrain": {
+ "value": "ca1-oriens-lacunosum-moleculare-saraga-et-al-2003"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/28316",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 148
+ },
+ "ver_date": "2016-08-30T16:11:51.477",
+ "ver_number": 32
+ },
+ "29942": {
+ "class_id": 19,
+ "created": "2003-10-09T09:46:41",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 29942,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29513,
+ "object_name": "Briska AM, Uhlrich DJ, Lytton WW (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "29942",
+ "name": "ModelView"
+ }
+ ],
+ "default": "29942"
+ },
+ "name": "Signal integration in LGN cells (Briska et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Computer models were used to investigate passive properties of lateral geniculate nucleus thalamocortical cells and thalamic\r\ninterneurons based on in vitro whole-cell study. Two neurons of each type were characterized physiologically and morphologically. Differences in the attenuation of propagated signals depend on both cell morphology and signal frequency. See the paper for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/29942",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181625,
+ "object_name": "29942"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 338
+ },
+ "ver_date": "2018-10-17T16:36:25.75",
+ "ver_number": 17
+ },
+ "32992": {
+ "class_id": 19,
+ "created": "2003-11-04T08:31:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 32992,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 47410,
+ "object_name": "Migliore M, Messineo L, Ferrante M (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: effects of Ih on distal inputs (Migliore et al 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from the paper:\r\nM. Migliore, L. Messineo, M. Ferrante\r\nDendritic Ih selectively blocks temporal summation of unsynchronized distal inputs in CA1 pyramidal neurons, J.Comput. Neurosci. 16:5-13 (2004).\r\nThe model demonstrates how the dendritic Ih in pyramidal neurons could selectively suppress AP generation for a volley of excitatory afferents \r\nwhen they are asynchronously and distally activated.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/32992",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181245,
+ "object_name": "32992"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 172
+ },
+ "ver_date": "2013-12-10T14:38:15",
+ "ver_number": 10
+ },
+ "33728": {
+ "class_id": 19,
+ "created": "2003-11-14T11:26:50",
+ "gitrepo": false,
+ "id": 33728,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 33729,
+ "object_name": "Friesen WO, Friesen JA (1994)"
+ },
+ {
+ "object_id": 33732,
+ "object_name": "SZEKELY G (1965)"
+ },
+ {
+ "object_id": 138204,
+ "object_name": "Kling U, Sz\u00e9kely G (1968)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Irregular oscillations produced by cyclic recurrent inhibition (Friesen, Friesen 1994)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of recurrent cyclic inhibition as described on p.119 of Friesen and Friesen (1994), which was slightly modified from Szekely's model (1965) of a network for producing alternating limb movements."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/33728",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 267
+ },
+ "ver_date": "2011-03-22T15:34:28",
+ "ver_number": 15
+ },
+ "33975": {
+ "class_id": 19,
+ "created": "2003-11-24T11:52:41",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 33975,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 49249,
+ "object_name": "Lytton WW, Hines ML (2005)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "33975_1",
+ "name": "Fig 1"
+ },
+ {
+ "id": "33975_2",
+ "name": "Fig 5 Ring Performance"
+ }
+ ],
+ "default": "33975_1"
+ },
+ "name": "Local variable time step method (Lytton, Hines 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The local variable time-step method utilizes separate variable step integrators for individual neurons in the network. It is most suitable for medium size networks in which average synaptic input intervals to a single cell are much greater than a fixed step dt."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/33975",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "methods"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181680,
+ "object_name": "33975_2"
+ },
+ {
+ "object_id": 181795,
+ "object_name": "33975_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 274
+ },
+ "ver_date": "2015-01-02T22:30:35",
+ "ver_number": 13
+ },
+ "33986": {
+ "class_id": 19,
+ "created": "2003-12-05T15:21:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 33986,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 33987,
+ "object_name": "Baxter DA, Canavier CC, Clark JW, Byrne JH (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Serotonergic modulation of Aplysia sensory neurons (Baxter et al 1999)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52413,
+ "object_name": "Aplysia sensory neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The present study investigated how the modulation of these currents altered the spike duration\r\nand excitability of sensory neurons and examined the relative contributions\r\nof PKA- and PKC-mediated effects to the actions of 5-HT. A\r\nHodgkin-Huxley type model was developed that described the ionic\r\nconductances in the somata of sensory neurons. The descriptions of\r\nthese currents and their modulation were based largely on voltageclamp\r\ndata from sensory neurons. Simulations were preformed with\r\nthe program SNNAP (Simulator for Neural Networks and Action\r\nPotentials). The model was sufficient to replicate empirical data that\r\ndescribes the membrane currents, action potential waveform and\r\nexcitability as well as their modulation by application of 5-HT,\r\nincreased levels of adenosine cyclic monophosphate or application of\r\nactive phorbol esters. The results provide\r\nseveral predictions that warrant additional experimental investigation\r\nand illustrate the importance of considering indirect as well as direct\r\neffects of modulatory agents on the modulation of membrane currents. See paper for more details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/33986",
+ "ver_date": "2007-04-13T15:10:02",
+ "ver_number": 9
+ },
+ "34163": {
+ "class_id": 19,
+ "created": "2003-12-05T17:22:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 34163,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 34164,
+ "object_name": "Cai, Yidao"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 34126,
+ "object_name": "Cai Y, Baxter DA, Crow T (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Enhanced Excitability in Hermissenda: modulation by 5-HT (Cai et al 2003)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114290,
+ "object_name": "Hermissenda photoreceptor Type B"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Serotonin (5-HT) applied to the exposed but otherwise intact nervous system results in enhanced excitability\r\nof Hermissenda type-B photoreceptors. Several ion currents in the type-B photoreceptors are modulated\r\nby 5-HT, including the A-type K+ current (IK,A), sustained Ca2+ current (ICa,S), Ca-dependent K+ current (IK,Ca),\r\nand a hyperpolarization-activated inward rectifier current (Ih). In this study,we developed a computational model that\r\nreproduces physiological characteristics of type B photoreceptors, e.g. resting membrane potential, dark-adapted\r\nspike activity, spike width, and the amplitude difference between somatic and axonal spikes. We then used the\r\nmodel to investigate the contribution of different ion currents modulated by 5-HT to the magnitudes of enhanced\r\nexcitability produced by 5-HT. See paper for results and more details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/34163",
+ "ver_date": "2008-06-18T14:41:03",
+ "ver_number": 15
+ },
+ "34168": {
+ "class_id": 19,
+ "created": "2003-12-07T11:11:58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 34168,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 34607,
+ "object_name": "Phares, Gregg A [gregg.a.phares at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 34167,
+ "object_name": "Phares GA, Antzoulatos EG, Baxter DA, Byrne JH (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Burst induced synaptic plasticity in Apysia sensorimotor neurons (Phares et al 2003)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52413,
+ "object_name": "Aplysia sensory neuron"
+ },
+ {
+ "object_id": 52415,
+ "object_name": "Aplysia motor neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Aplysia sensorimotor synapse is a key site of plasticity for several simple forms of learning. Intracellular stimulation of sensory neurons to fire a burst of action potentials at 10 Hz for 1 sec led to significant\r\nhomosynaptic depression of postsynaptic responses. During the burst, the steady-state depressed phase of the postsynaptic response, which was only 20% of the initial EPSP of the burst, still contributed to firing the motor neuron. To explore the functional contribution of transient homosynaptic depression to the response of the motor neuron, computer simulations of the sensorimotor synapse with and without depression were compared. Depression allowed the motor\r\nneuron to produce graded responses over a wide range of presynaptic input strength. \r\nThus, synaptic depression increased the dynamic range of the sensorimotor synapse and can, in principle, have a profound effect on\r\ninformation processing. Please see paper for results and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/34168",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249921,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:06:02.16",
+ "ver_number": 26
+ },
+ "34558": {
+ "class_id": 19,
+ "created": "2003-12-08T10:03:42",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 34558,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 34559,
+ "object_name": "Komendantov, Alexander O [akomenda at tulane.edu]"
+ },
+ {
+ "object_id": 34561,
+ "object_name": "Kononenko, Nikolai I [nik137 at lamar.colostate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 34510,
+ "object_name": "Komendantov AO, Kononenko NI (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Caffeine-induced electrical oscillations in Aplysia neurons (Komendantov, Kononenko 2000)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88109,
+ "object_name": "Aplysia cultured neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "It has been found that in cultured Aplysia neurons bath applications of 40 mM cafffeine evokes oscillations of the membrane potential with about a 40 mV amplitude with a frequency of 0.2 to 0.5 Hz. The most probable mechanism of these caffeine-induced oscillations is inhibition of voltage-activated outward potassium current and, as can be seen from our mathematical modeling, slowdown of inactivation of inward sodium current. It seems likely that these oscillations have a purely membrane origin. Please see paper for results and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/34558",
+ "ver_date": "2007-04-13T14:14:18",
+ "ver_number": 14
+ },
+ "34560": {
+ "class_id": 19,
+ "created": "2003-12-08T11:13:27",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 34560,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 34172,
+ "object_name": "Pelz C, Jander J, Rosenboom H, Hammer M, Menzel R (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "I A in Kenyon cells resemble Shaker currents (Pelz et al 1999)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114295,
+ "object_name": "Honeybee kenyon cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Cultured Kenyon cells from the mushroom body of the honeybee,\r\nApis mellifera, show a voltage-gated, fast transient K1 current that is\r\nsensitive to 4-aminopyridine, an A current. The kinetic properties of\r\nthis A current and its modulation by extracellular K1 ions were\r\ninvestigated in vitro with the whole cell patch-clamp technique. The\r\nA current was isolated from other voltage-gated currents either pharmacologically\r\nor with suitable voltage-clamp protocols. Hodgkin- and\r\nHuxley-style mathematical equations were used for the description of\r\nthis current and for the simulation of action potentials in a Kenyon cell\r\nmodel. The data of the A\r\ncurrent were incorporated into a reduced computational model of the\r\nvoltage-gated currents of Kenyon cells. In addition, the model contained\r\na delayed rectifier K current, a Na current, and a leakage\r\ncurrent. The model reproduces several experimental features and makes \r\npredictions. See paper for details and results."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/34560",
+ "ver_date": "2008-06-18T14:47:33",
+ "ver_number": 10
+ },
+ "34606": {
+ "class_id": 19,
+ "created": "2003-12-08T17:59:15",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 34606,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 34177,
+ "object_name": "White JA, Ziv I, Cleary LJ, Baxter DA, Byrne JH (1993)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "A network model of tail withdrawal in Aplysia (White et al 1993)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52413,
+ "object_name": "Aplysia sensory neuron"
+ },
+ {
+ "object_id": 52414,
+ "object_name": "Aplysia interneuron"
+ },
+ {
+ "object_id": 52415,
+ "object_name": "Aplysia motor neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The contributions of monosynaptic and polysynaptic circuitry to the tail-withdrawal reflex in the marine mollusk Aplysia californica were assessed by the use of physiologically based neural network models. Effects of monosynaptic circuitry were examined by the use of a two-layer network model with four sensory neurons in the input layer and one motor neuron in the output layer. Results of these simulations indicated that the monosynaptic circuit could not account fully for long-duration responses of tail motor neurons elicited by tail stimulation.\r\nA three-layer network model was constructed by interposing a layer of two excitatory interneurons between the input and output layers of the two-layer network model. The three-layer model could account for long-duration responses in motor neurons. Sensory neurons are a known site of plasticity in Aplysia. Synaptic plasticity at more than one locus modified dramatically the input-output relationship of the three-layer network model. This feature gave the model redundancy in its plastic properties and points to the possibility of distributed memory in the circuitry mediating withdrawal reflexes in Aplysia.\r\nPlease see paper for more results and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/34606",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249921,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:07:40.943",
+ "ver_number": 13
+ },
+ "35358": {
+ "biosimulations": {
+ "value": "modeldb-35358"
+ },
+ "class_id": 19,
+ "created": "2004-02-09T17:12:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 35358,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 5225,
+ "object_name": "Pinsky PF, Rinzel J (1994)"
+ },
+ {
+ "object_id": 29029,
+ "object_name": "Pinsky PF, Rinzel J (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "CA3 pyramidal cell: rhythmogenesis in a reduced Traub model (Pinsky, Rinzel 1994)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Fig. 2A and 3 are reproduced in this simulation of Pinsky PF, Rinzel J (1994)."
+ },
+ "opensourcebrain": {
+ "value": "pinskyrinzelmodel"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/35358",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "xppaut"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181605,
+ "object_name": "35358"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 181
+ },
+ "ver_date": "2022-05-27T09:37:41.877",
+ "ver_number": 22
+ },
+ "35781": {
+ "class_id": 19,
+ "created": "2004-03-08T13:27:22",
+ "gitrepo": false,
+ "id": 35781,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22011,
+ "object_name": "Post-Tetanic Potentiation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 6021,
+ "object_name": "Migliore M, Lansky P (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 58965,
+ "object_name": "QBasic/QuickBasic/Turbo Basic/VBA"
+ }
+ ]
+ },
+ "name": "Stochastic LTP/LTD conditioning of a synapse (Migliore and Lansky 1999)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Protracted presynaptic activity can induce long-term potentiation\r\n(LTP) or long-term depression (LTD) of the synaptic strength. However,\r\nvirtually all the experiments testing how LTP and LTD depend on the\r\nconditioning input are carried out with trains of stimuli at constant\r\nfrequencies, whereas neurons in vivo most likely experience a stochastic\r\nvariation of interstimulus intervals. We used a computational model of\r\nsynaptic transmission to test if and to what extent the stochastic\r\nfluctuations of an input signal could alter the probability to change the\r\nstate of a synapse. See paper for conclusions."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/35781",
+ "ver_date": "2005-11-16T13:38:42",
+ "ver_number": 14
+ },
+ "36834": {
+ "class_id": 19,
+ "created": "2004-04-01T11:29:15",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 36834,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 36860,
+ "object_name": "Zhang, Xuedong "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 36800,
+ "object_name": "Heinz MG, Zhang X, Bruce IC, Carney LH (2001)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Auditory nerve model for predicting performance limits (Heinz et al 2001)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A computational auditory nerve (AN) model was developed for\r\nuse in modeling psychophysical experiments with normal and impaired\r\nhuman listeners. In this phenomenological model, many physiologically\r\nvulnerable response properties associated with the cochlear amplifier are\r\nrepresented by a single nonlinear control mechanism, see paper for details. Several model versions are described that\r\ncan be used to evaluate the relative effects of these nonlinear properties."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/36834",
+ "other_type": {
+ "attr_id": 305,
+ "value": "phenomenological"
+ },
+ "ver_date": "2018-10-18T15:11:49.8",
+ "ver_number": 15
+ },
+ "36861": {
+ "class_id": 19,
+ "created": "2004-04-01T16:09:05",
+ "gitrepo": false,
+ "id": 36861,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 36865,
+ "object_name": "Naidu, R "
+ },
+ {
+ "object_id": 36866,
+ "object_name": "Mountain, David [dcm at bu.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 36864,
+ "object_name": "Peterson LC, Bogert BP (1950)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Model of cochlear membrane adapted (Peterson, Bogert 1950)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This model, adapted from Peterson and Bogert (1950), simulates the response of the gerbil basilar membrane to a pure tone stimulus. This model does not attempt to simulate the effect of outer hair cell motility. The program prompts the user for the stimulus frequency and the Q (quality factor) for the basilar membrane impedance. It then plots cochlear partition volume velocity, the pressure difference across the partition and the cochlear partition impedance as a function of cochlear location. More information on the actual computations are contained in comments within the m-file."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/36861",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 121
+ },
+ "ver_date": "2005-04-10T15:57:38",
+ "ver_number": 9
+ },
+ "36869": {
+ "class_id": 19,
+ "created": "2004-04-01T18:07:06",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 36869,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 36866,
+ "object_name": "Mountain, David [dcm at bu.edu]"
+ },
+ {
+ "object_id": 36873,
+ "object_name": "Deligeorges, S"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 36870,
+ "object_name": "Deligeorges S, Mountain DC (1997)"
+ },
+ {
+ "object_id": 36874,
+ "object_name": "Singh S, Mountain DC (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Inner hair cell auditory nerve synapse model (Deligeorges, Mountain 1997)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1965,
+ "object_name": "Cochlea hair outer GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model simulates the response of the synapse between the inner hair cell and an auditory nerve fiber to a square voltage pulse applied to the IHC membrane. The model output is average firing rate. More details of this model can be found in: Deligeorges and Mountain."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/36869",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 114
+ },
+ "ver_date": "2018-10-18T15:12:17.347",
+ "ver_number": 13
+ },
+ "36956": {
+ "class_id": 19,
+ "created": "2004-04-02T10:13:11",
+ "gitrepo": false,
+ "id": 36956,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 36866,
+ "object_name": "Mountain, David [dcm at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 36876,
+ "object_name": "Mountain DC, Cody AR (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Multiple modes of inner hair cell stimulation (Mountain, Cody 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1965,
+ "object_name": "Cochlea hair outer GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model simulates the membrane potential of an inner hair cell for a sinusoidal stimulus to the hair bundle. It uses a 2-state Boltzmann model for the tension-gated conductance in the stereocilia and a linear model for the basolateral membrane. This model is based on the IHC model used in Mountain and Cody (1999)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/36956",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 124
+ },
+ "ver_date": "2005-04-10T15:59:59",
+ "ver_number": 5
+ },
+ "37103": {
+ "class_id": 19,
+ "created": "2004-04-02T11:45:32",
+ "gitrepo": false,
+ "id": 37103,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 36860,
+ "object_name": "Zhang, Xuedong "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 33465,
+ "object_name": "Zhang X, Heinz MG, Bruce IC, Carney LH (2001)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Auditory nerve response model (Zhang et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1965,
+ "object_name": "Cochlea hair outer GLU cell"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A phenomenological model was developed to describe responses of high-spontaneous-rate auditory-nerve (AN) fibers, including several nonlinear response properties. The implementation of this model represents a relatively simple phenomenological description of a single mechanism that underlies several important nonlinear response properties of AN fibers. The model provides a tool for studying the roles of these nonlinearities in the encoding of simple and complex sounds in the responses of populations of AN fibers."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/37103",
+ "ver_date": "2007-04-13T15:26:36",
+ "ver_number": 9
+ },
+ "37129": {
+ "class_id": 19,
+ "created": "2004-04-02T16:44:48",
+ "gitrepo": false,
+ "id": 37129,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 37130,
+ "object_name": "Tan, Qing "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 37105,
+ "object_name": "Tan Q, Carney LH (2003)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Auditory nerve response model (Tan, Carney 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1965,
+ "object_name": "Cochlea hair outer GLU cell"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A computational model was developed to simulate the responses of auditory-nerve (AN) fibers in cat. The incorporation of both the level-independent frequency glide and the level-dependent compressive nonlinearity into a phenomenological model for the AN was the primary focus of this work. The ability of this model to process arbitrary sound inputs makes it a useful tool for studying peripheral auditory processing."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/37129",
+ "ver_date": "2007-04-13T15:25:56",
+ "ver_number": 9
+ },
+ "37436": {
+ "class_id": 19,
+ "created": "2004-04-08T18:13:56",
+ "gitrepo": false,
+ "id": 37436,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 37571,
+ "object_name": "Heinz, Michael G [mgheinz at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 37110,
+ "object_name": "Heinz MG, Colburn HS, Carney LH (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Auditory nerve model with linear tuning (Heinz et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1965,
+ "object_name": "Cochlea hair outer GLU cell"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A method for calculating psychophysical performance limits based on stochastic \r\nneural responses is introduced and compared to previous analytical methods for \r\nevaluating auditory discrimination of tone frequency and level. The method uses \r\nsignal detection theory and a computational model for a population of auditory \r\nnerve (AN) fiber responses. Please see paper for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/37436",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 59
+ },
+ "ver_date": "2010-02-12T19:50:46",
+ "ver_number": 11
+ },
+ "37819": {
+ "class_id": 19,
+ "created": "2004-04-26T16:54:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 37819,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 14214,
+ "object_name": "Bazhenov M, Timofeev I, Steriade M, Sejnowski TJ (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "37819",
+ "name": "ModelView"
+ }
+ ],
+ "default": "37819"
+ },
+ "name": "Thalamocortical augmenting response (Bazhenov et al 1998)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In the cortical model, augmenting responses were more powerful in the \"input\" layer compared with those in the \"output\" layer. Cortical stimulation of the network model produced augmenting responses in cortical neurons in distant cortical areas through corticothalamocortical loops and low-threshold intrathalamic augmentation. ... The predictions of the model were compared with in vivo recordings from neurons in cortical area 4 and thalamic ventrolateral nucleus of anesthetized cats. The known intrinsic properties of thalamic cells and thalamocortical interconnections can account for the basic properties of cortical augmenting responses. See reference for details. NEURON implementation note: cortical SU cells are getting slightly too little stimulation - reason unknown."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/37819",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "activity augmentation"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181852,
+ "object_name": "37819"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T09:39:47.07",
+ "ver_number": 22
+ },
+ "37856": {
+ "class_id": 19,
+ "created": "2004-05-06T16:52:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 37856,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33781,
+ "object_name": "Manis, Paul B [PManis at med.unc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3977,
+ "object_name": "Kanold PO, Manis PB (2001)"
+ },
+ {
+ "object_id": 12730,
+ "object_name": "Kanold PO, Manis PB (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CN pyramidal fusiform cell (Kanold, Manis 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 274,
+ "object_name": "Cochlear nucleus pyramidal/fusiform GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Pyramidal cells in the dorsal cochlear nucleus (DCN) show three characteristic discharge patterns in response tones: pauser, buildup, and regular firing. Experimental evidence suggests that a rapidly inactivating K+ current (I(KIF)) plays a critical role in generating these discharge patterns. To explore the role of I(KIF), we used a computational model based on the biophysical data. The model replicated the dependence of the discharge pattern on the magnitude and duration of hyperpolarizing prepulses, and I(KIF) was necessary to convey this dependence. Experimentally, half-inactivation voltage and kinetics of I(KIF) show wide variability. Varying these parameters in the model ... suggests that pyramidal cells can adjust their sensitivity to different temporal patterns of inhibition and excitation by modulating the kinetics of I(KIF). Overall, I(KIF) is a critical conductance controlling the excitability of DCN pyramidal cells. (See readme.txt and paper for details).\r\n\r\nAny questions regarding these implementations should be directed to:\r\npmanis@med.unc.edu\r\n\r\n2 April 2004\r\nPaul B Manis, Ph.D."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/37856",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181730,
+ "object_name": "37856_1"
+ },
+ {
+ "object_id": 181731,
+ "object_name": "37856_3"
+ },
+ {
+ "object_id": 181732,
+ "object_name": "37856_2"
+ },
+ {
+ "object_id": 181733,
+ "object_name": "37856_5"
+ },
+ {
+ "object_id": 181734,
+ "object_name": "37856_4"
+ },
+ {
+ "object_id": 181735,
+ "object_name": "37856_7"
+ },
+ {
+ "object_id": 181736,
+ "object_name": "37856_6"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 187
+ },
+ "ver_date": "2015-01-02T21:47:11",
+ "ver_number": 17
+ },
+ "37857": {
+ "class_id": 19,
+ "created": "2004-05-07T11:18:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 37857,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33781,
+ "object_name": "Manis, Paul B [PManis at med.unc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 37966,
+ "object_name": "Rothman JS, Manis PB (2003)"
+ },
+ {
+ "object_id": 37967,
+ "object_name": "Rothman JS, Manis PB (2003)"
+ },
+ {
+ "object_id": 37968,
+ "object_name": "Rothman JS, Manis PB (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CN bushy, stellate neurons (Rothman, Manis 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 273,
+ "object_name": "Cochlear nucleus bushy GLU cell"
+ },
+ {
+ "object_id": 88113,
+ "object_name": "CN stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using kinetic data from three different K+ currents in acutely isolated neurons, a single electrical compartment model representing the soma of a ventral cochlear nucleus (VCN) neuron was created. The K+ currents include a fast transient current (IA), a slow-inactivating low-threshold current (ILT), and a noninactivating high-threshold current (IHT). The model also includes a fast-inactivating Na+ current, a hyperpolarization-activated cation current (Ih), and 1-50 auditory nerve synapses. With this model, the role IA, ILT, and IHT play in shaping the discharge patterns of VCN cells is explored. Simulation results indicate these currents have specific roles in shaping the firing patterns of stellate and bushy CN cells. (see readme.txt and the papers, esp 2003c, for details). Any questions regarding these implementations should be directed to: pmanis@med.unc.edu 2 April 2004 Paul B Manis, Ph.D."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/37857",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "CN stellate cell"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181383,
+ "object_name": "37857_12"
+ },
+ {
+ "object_id": 181384,
+ "object_name": "37857_13"
+ },
+ {
+ "object_id": 181385,
+ "object_name": "37857_10"
+ },
+ {
+ "object_id": 181386,
+ "object_name": "37857_11"
+ },
+ {
+ "object_id": 181387,
+ "object_name": "37857_16"
+ },
+ {
+ "object_id": 181388,
+ "object_name": "37857_17"
+ },
+ {
+ "object_id": 181389,
+ "object_name": "37857_14"
+ },
+ {
+ "object_id": 181390,
+ "object_name": "37857_15"
+ },
+ {
+ "object_id": 181392,
+ "object_name": "37857_18"
+ },
+ {
+ "object_id": 181729,
+ "object_name": "37857_9"
+ },
+ {
+ "object_id": 181800,
+ "object_name": "37857_2"
+ },
+ {
+ "object_id": 181885,
+ "object_name": "37857_8"
+ },
+ {
+ "object_id": 181887,
+ "object_name": "37857_1"
+ },
+ {
+ "object_id": 181889,
+ "object_name": "37857_3"
+ },
+ {
+ "object_id": 181890,
+ "object_name": "37857_4"
+ },
+ {
+ "object_id": 181891,
+ "object_name": "37857_5"
+ },
+ {
+ "object_id": 181892,
+ "object_name": "37857_6"
+ },
+ {
+ "object_id": 181893,
+ "object_name": "37857_7"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 186
+ },
+ "ver_date": "2018-10-18T15:12:38.187",
+ "ver_number": 20
+ },
+ "39948": {
+ "class_id": 19,
+ "created": "2004-07-30T17:30:22",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 39948,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 182905,
+ "object_name": "Dura-Bernal, Salvador [salvadordura at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 40104,
+ "object_name": "Izhikevich EM (2007)"
+ },
+ {
+ "object_id": 70557,
+ "object_name": "Izhikevich EM (2004)"
+ },
+ {
+ "object_id": 116892,
+ "object_name": "Izhikevich EM (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Artificial neuron model (Izhikevich 2003, 2004, 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A set of models is presented based on 2 related\r\nparameterizations to reproduce spiking and bursting behavior of multiple\r\ntypes of cortical neurons and thalamic neurons. These models combine the\r\nbiologically plausibility of Hodgkin Huxley-type dynamics and the\r\ncomputational efficiency of integrate-and-fire neurons. Using these\r\nmodel, one can simulate tens of thousands of spiking cortical neurons in\r\nreal time (1 ms resolution) using a desktop PC."
+ },
+ "opensourcebrain": {
+ "value": "izhikevichmodel"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/39948",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "generic"
+ },
+ "ver_date": "2023-01-30T13:46:18.41",
+ "ver_number": 19
+ },
+ "39949": {
+ "class_id": 19,
+ "created": "2004-07-31T16:52:18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122828,
+ "object_name": "D1 DRD1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 39949,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 35784,
+ "object_name": "Gruber AJ, Solla SA, Surmeier DJ, Houk JC (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "39949",
+ "name": "ModelView"
+ }
+ ],
+ "default": "39949"
+ },
+ "name": "Spiny neuron model with dopamine-induced bistability (Gruber et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These files implement a model of dopaminergic modulation of voltage-gated currents (called kir2 and caL in the original paper). See spinycell.html for details of usage and implementation. For questions about this implementation, contact Ted Carnevale (ted.carnevale@yale.edu)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/39949",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I CaL"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Original (published) implementation by Aaron Gruber"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Synapse, Network"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181741,
+ "object_name": "39949"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 496
+ },
+ "ver_date": "2014-02-25T01:10:37",
+ "ver_number": 17
+ },
+ "42020": {
+ "class_id": 19,
+ "created": "2004-08-26T15:48:19",
+ "gitrepo": false,
+ "id": 42020,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 76455,
+ "object_name": "Gewaltig, Marc-Oliver [marc-oliver.gewaltig@epfl.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29380,
+ "object_name": "Brunel N (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "Sparsely connected networks of spiking neurons (Brunel 2000)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The dynamics of networks of sparsely connected excitatory and inhibitory integrate-and-fire neurons\r\nare studied analytically (and with simulations). The analysis reveals a rich repertoire of states, including synchronous states in which\r\nneurons fire regularly; asynchronous states with stationary global activity and very irregular individual cell activity;\r\nand states in which the global activity oscillates but individual cells fire irregularly, typically at rates lower than\r\nthe global oscillation frequency. See paper for more and details."
+ },
+ "opensourcebrain": {
+ "value": "brunel2000"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42020",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Sparse network activity"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Marc-Oliver Gewaltig"
+ },
+ "ver_date": "2012-01-05T14:13:17",
+ "ver_number": 8
+ },
+ "42022": {
+ "class_id": 19,
+ "created": "2004-08-30T16:54:36",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 42022,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ },
+ {
+ "object_id": 42042,
+ "object_name": "Boytcheva, Milena [milena at cs.tu-berlin.de]"
+ },
+ {
+ "object_id": 42043,
+ "object_name": "Wustenberg, Daniel [Daniel.Wustenberg at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 42041,
+ "object_name": "W\u00fcstenberg DG, Boytcheva M, Gr\u00fcnewald B, Byrne JH, Menzel R, Baxter DA (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Kenyon cells in the honeybee (Wustenberg et al 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114295,
+ "object_name": "Honeybee kenyon cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The mushroom body of the insect brain is an important locus for olfactory information\r\nprocessing and associative learning. ... Current- and voltage-clamp analyses were\r\nperformed on cultured Kenyon cells from honeybees. ... Voltage-clamp analyses characterized a\r\nfast transient Na+ current (INa), a delayed rectifier K+ current (IK,V) and a fast transient K+ current\r\n(IK,A). Using the neurosimulator SNNAP, a Hodgkin-Huxley type model was developed and\r\nused to investigate the roles of the different currents during spiking. The model led to the\r\nprediction of a slow transient outward current (IK,ST) that was subsequently identified by reevaluating\r\nthe voltage-clamp data. Simulations indicated that the primary currents that underlie\r\nspiking are INa and IK,V, whereas IK,A and IK,ST primarily determined the responsiveness of the\r\nmodel to stimuli such constant or oscillatory injections of current. See paper for more details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42022",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Kenyon cell"
+ },
+ "ver_date": "2018-10-17T15:40:57.22",
+ "ver_number": 10
+ },
+ "42036": {
+ "class_id": 19,
+ "created": "2004-09-06T05:11:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 42036,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114306,
+ "object_name": "Cataldo, Enrico"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 42057,
+ "object_name": "Cataldo E, Brunelli M, Byrne JH, Av-Ron E, Cai Y, Baxter DA (2005)"
+ },
+ {
+ "object_id": 89177,
+ "object_name": "Scuri R, Lombardo P, Cataldo E, Ristori C, Brunelli M (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Touch Sensory Cells (T Cells) of the Leech (Cataldo et al. 2004) (Scuri et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114293,
+ "object_name": "Leech T segmental sensory neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Bursts of spikes in leech T cells produce an AHP, which results from activation of a Na+/K+ pump and \r\na Ca2+-dependent K+ current. Activity-dependent increases in the AHP are believed to induce conduction \r\nblock of spikes in several regions of the neuron, which in turn, may decrease presynaptic invasion of spikes and \r\nthereby decrease transmitter release. To explore this possibility, we used the neurosimulator SNNAP to develop \r\na multi-compartmental model of the T cell. Each compartment was modeled as an equivalent electrical circuit, \r\nin which some currents were regulated by intracellular Ca2+ and Na+. The membrane model consisted of \r\na membrane capacitance (Cm), for which we used the value 1 uF/cm2, in parallel with \r\ntwo inward currents (Na+ and Ca2+), two K+ currents, a leak current and pump current. \r\nThe model incorporated empirical data that describe the geometry of the cell and activity-dependent changes of the\r\nAHP (see paper for details). \r\nSimulations indicated that at some branching points, activity-dependent increases of the AHP reduced the number \r\nof spikes transmitted from the minor receptive field to the soma and beyond. \r\nThese results suggest that the AHP can regulate spike conduction within the presynaptic arborizations of the cell and \r\ncould in principle contribute to the synaptic depression that is correlated with increases in the AHP."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42036",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Conduction Failure"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Leak, I Na Pump"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Cataldo, Enrico"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Leech T cell"
+ },
+ "ver_date": "2018-10-18T17:20:07.99",
+ "ver_number": 23
+ },
+ "42037": {
+ "class_id": 19,
+ "created": "2004-09-07T09:53:33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 42037,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 42056,
+ "object_name": "Lombardo P, Scuri R, Cataldo E, Calvani M, Nicolai R, Mosconi L, Brunelli M (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Effects of Acetyl-L-carnitine on neural transmission (Lombardo et al 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114293,
+ "object_name": "Leech T segmental sensory neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Acetyl-L-carnitine is known to improve many aspects of the neural activity even if its exact role in neurotransmission is \r\nstill unknown. This study investigates the effects of acetyl-L-carnitine in T segmental sensory neurons of the leech Hirudo \r\nmedicinalis. These neurons are involved in some forms of neural plasticity associated with learning processes. \r\nTheir physiological firing is accompanied by a large afterhyperpolarization that is mainly due to the Na+/K+ ATPase \r\nactivity and partially to a Ca2+-dependent K+ current. A clear-cut hyperpolarization and a significant increase of the \r\nafterhyperpolarization have been recorded in T neurons of leeches injected with 2 mM acetyl-L-carnitine some days \r\nbefore. Acute treatments of 50 mM acetyl-L-carnitine induced similar effects in T cells of naive animals. \r\nMoreover, in these cells, widely arborized, the afterhyperpolarization seems to play an important role in determining \r\nthe action potential transmission at neuritic bifurcations. \r\nA computational model of a T cell has been previously developed considering detailed data for geometry and the \r\nmodulation of the pump current. Herein, we showed that to a larger afterhyperpolarization, due to the \r\nacetyl-L-carnitine-induced effects, corresponds a decrement in the number of action potentials \r\nreaching synaptic terminals."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42037",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Leak, I Na Pump"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Cataldo, Enrico"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Leech T cell"
+ },
+ "ver_date": "2009-05-28T13:07:07",
+ "ver_number": 17
+ },
+ "42044": {
+ "class_id": 19,
+ "created": "2004-09-09T15:23:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 42044,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 42045,
+ "object_name": "Av-Ron, Evyatar [eav-ron at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29126,
+ "object_name": "HODGKIN AL, HUXLEY AF (1952)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Squid axon (Hodgkin, Huxley 1952) (SNNAP)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The classic HH model of squid axon membrane\r\nimplemented in SNNAP.\r\nHodgkin, A.L., Huxley, A.F. (1952)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42044",
+ "ver_date": "2008-09-18T15:04:10",
+ "ver_number": 8
+ },
+ "42046": {
+ "class_id": 19,
+ "created": "2004-09-09T18:12:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 42046,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 42045,
+ "object_name": "Av-Ron, Evyatar [eav-ron at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29018,
+ "object_name": "Morris C, Lecar H (1981)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Morris-Lecar model of the barnacle giant muscle fiber (Morris, Lecar 1981)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114299,
+ "object_name": "Depressor scutorum rostralis muscle cell"
+ },
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "... This paper presents an analysis of the possible modes of behavior available to a system of two noninactivating conductance mechanisms, and indicates a good correspondence to the types of behavior exhibited by barnacle fiber. The differential equations of a simple equivalent circuit for the fiber are dealt with by means of some of the mathematical techniques of nonlinear mechanics. General features of the system are (a) a propensity to produce damped or sustained oscillations over a rather broad parameter range, and (b) considerable latitude in the shape of the oscillatory potentials. It is concluded that for cells subject to changeable parameters (either from cell to cell or with time during cellular activity), a system dominated by two noninactivating conductances can exhibit varied oscillatory and bistable behavior. See paper for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42046",
+ "ver_date": "2013-06-05T11:38:56",
+ "ver_number": 10
+ },
+ "42047": {
+ "class_id": 19,
+ "created": "2004-09-10T10:07:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 42047,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 42045,
+ "object_name": "Av-Ron, Evyatar [eav-ron at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 42048,
+ "object_name": "Av-Ron E, Parnas H, Segel LA (1991)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Minimal cell model (Av-Ron et al 1991)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The minimal cell model (MCM) is a reduced Hodgkin-Huxley model that can\r\nexhibit excitable and oscillatory behavior. It consists of two\r\nordinary differential equations, dV/dt for membrane voltage and dW/dt\r\nfor potassium activation and sodium inactivation. The MCM has a stable\r\nmembrane potential of -60mV. With constant input current of 10uA/cm2, it\r\nexhibits oscillations of 150Hz. It is based on the work by FitzHugh and\r\nRinzel."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42047",
+ "ver_date": "2015-07-26T07:54:16.89",
+ "ver_number": 8
+ },
+ "42321": {
+ "class_id": 19,
+ "created": "2004-09-13T09:54:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 42321,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 34948,
+ "object_name": "Epstein IR, Marder E (1990)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Multiple modes of a conditional neural oscillator (Epstein, Marder 1990)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We present a model for a conditional bursting neuron consisting of five conductances: Hodgkin-Huxley type time- and voltage-dependent Na+ and K+ conductances, a calcium activated voltage-dependent K+ conductance, a calcium-inhibited time- and voltage-dependent Ca++ conductance, and a leakage Cl- conductance.\r\nDifferent bursting and silent modes and transitions between them are analyzed in the model and compared to bursting modes in experiment. See the paper for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42321",
+ "ver_date": "2005-04-10T15:59:25",
+ "ver_number": 6
+ },
+ "42322": {
+ "class_id": 19,
+ "created": "2004-09-14T09:53:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 42322,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7958,
+ "object_name": "L\u00fcscher HR, Shiner JS (1990)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Spike propagation and bouton activation in terminal arborizations (Luscher, Shiner 1990)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Action potential propagation in axons with bifurcations involving short collaterals with synaptic boutons has been simulated ... The architecture of the terminal arborizations has a profound effect on the activation pattern of synapses, suggesting that terminal arborizations not only distribute neural information to postsynaptic cells but may also be able to process neural information presynaptically. Please see paper for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42322",
+ "ver_date": "2017-06-21T14:28:39.443",
+ "ver_number": 8
+ },
+ "42323": {
+ "class_id": 19,
+ "created": "2004-09-14T10:07:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 42323,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 27059,
+ "object_name": "Butera RJ, Clark JW, Canavier CC, Baxter DA, Byrne JH (1995)"
+ },
+ {
+ "object_id": 34010,
+ "object_name": "Canavier CC, Clark JW, Byrne JH (1991)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Bursting activity of neuron R15 in Aplysia (Canavier et al 1991, Butera et al 1995)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52420,
+ "object_name": "Aplysia R15 bursting neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An equivalent circuit model of the R15 bursting neuron in Aplysia has been combined with a fluid compartment model, resulting in a model that incorporates descriptions of most of the membrane ion channels that are known to exist in the somata of R15, as well as providing a Ca2+ balance on the cell. ... (from the second paper) we have implemented proposed mechanisms for the modulation of two ionic currents (IR and ISI) that play key roles in regulating its spontaneous electrical activity. The model was sufficient to simulate a wide range of endogenous activity in the presence of various concentrations of 5-HT or DA. See papers for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/42323",
+ "ver_date": "2007-04-13T13:44:01",
+ "ver_number": 11
+ },
+ "43039": {
+ "class_id": 19,
+ "created": "2004-10-11T07:29:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 43039,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 47318,
+ "object_name": "Migliore M, Hines ML, Shepherd GM (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "43039_1",
+ "name": "control - no GJ (fig.6A)"
+ },
+ {
+ "id": "43039_2",
+ "name": "with GJ (fig.6B)"
+ },
+ {
+ "id": "43039_3",
+ "name": "with GJ & Na+ block (fig.6C)"
+ }
+ ],
+ "default": "43039_1"
+ },
+ "name": "Olfactory bulb mitral cell: synchronization by gap junctions (Migliore et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In a realistic model of two electrically connected mitral cells,\r\nthe paper shows that the somatically-measured experimental properties\r\nof Gap Junctions (GJs) may correspond to a variety of different local coupling strengths\r\nand dendritic distributions of GJs in the tuft. The model suggests\r\nthat the propagation of the GJ-induced local tuft depolarization\r\nis a major mechanim for intraglomerular synchronization of mitral cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/43039",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "gap junction current"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181503,
+ "object_name": "43039_3"
+ },
+ {
+ "object_id": 181504,
+ "object_name": "43039_2"
+ },
+ {
+ "object_id": 181528,
+ "object_name": "43039_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 313
+ },
+ "ver_date": "2018-10-17T15:41:22.9",
+ "ver_number": 20
+ },
+ "44050": {
+ "class_id": 19,
+ "created": "2004-11-02T22:46:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 44050,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 46837,
+ "object_name": "Gasparini S, Migliore M, Magee JC (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: dendritic spike initiation (Gasparini et al 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from the paper:\r\nSonia Gasparini, Michele Migliore, and Jeffrey C. Magee\r\nOn the initiation and propagation of dendritic spikes in CA1 pyramidal neurons,\r\nJ. Neurosci., J. Neurosci. 24:11046-11056 (2004)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/44050",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181272,
+ "object_name": "44050_1"
+ },
+ {
+ "object_id": 181276,
+ "object_name": "44050_3"
+ },
+ {
+ "object_id": 181279,
+ "object_name": "44050_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 171
+ },
+ "ver_date": "2015-01-02T22:05:49",
+ "ver_number": 11
+ },
+ "44972": {
+ "class_id": 19,
+ "created": "2004-11-08T02:18:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 254,
+ "object_name": "I CNG"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 44972,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 45004,
+ "object_name": "Wheeler, Diek W [wheeler at mpih-frankfurt.mpg.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 242018,
+ "object_name": "Synaptic Convergence"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 44964,
+ "object_name": "Wheeler DW, Kullmann PH, Horn JP (2004)"
+ },
+ {
+ "object_id": 44966,
+ "object_name": "Kullmann PH, Wheeler DW, Beacom J, Horn JP (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Sympathetic neuron (Wheeler et al 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This study shows how synaptic convergence and plasticity can interact to generate synaptic gain in autonomic ganglia and thereby enhance homeostatic control. Using a conductance-based computational model of an idealized sympathetic neuron, we simulated the postganglionic response to noisy patterns of presynaptic activity and found that a threefold amplification in postsynaptic spike output can arise in ganglia, depending on the number and strength of nicotinic synapses, the presynaptic firing rate, the extent of presynaptic facilitation, and the expression of muscarinic and peptidergic excitation. See references for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/44972",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Lab View"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ }
+ ]
+ },
+ "ver_date": "2018-06-26T17:31:59.81",
+ "ver_number": 17
+ },
+ "45513": {
+ "biosimulations": {
+ "value": "modeldb-45513"
+ },
+ "class_id": 19,
+ "created": "2004-11-11T05:04:20",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 45513,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33778,
+ "object_name": "Nadim, Farzan [Farzan at andromeda.Rutgers.edu]"
+ },
+ {
+ "object_id": 45517,
+ "object_name": "Bose, Amitabha [bose at njit.edu]"
+ },
+ {
+ "object_id": 45518,
+ "object_name": "Lewis, Timothy [tlewis at cns.nyu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 45514,
+ "object_name": "Bose A, Manor Y, Nadim F (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "The activity phase of postsynaptic neurons (Bose et al 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We show, in a simplified network consisting of an oscillator \r\ninhibiting a follower neuron, how the interaction between synaptic depression\r\nand a transient potassium current in the follower neuron determines the \r\nactivity phase of this neuron. We derive a mathematical expression to \r\ndetermine at what phase of the oscillation the follower neuron becomes \r\nactive. This expression can be used to understand which parameters determine\r\nthe phase of activity of the follower as the frequency of the oscillator is \r\nchanged. See paper for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/45513",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "ver_date": "2013-06-05T11:39:36",
+ "ver_number": 10
+ },
+ "45525": {
+ "class_id": 19,
+ "created": "2004-11-16T22:00:49",
+ "gitrepo": false,
+ "id": 45525,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33765,
+ "object_name": "Bazhenov, Maxim [Bazhenov at Salk.edu]"
+ },
+ {
+ "object_id": 45535,
+ "object_name": "Rulkov, Nikolai [nrulkov at ucsd.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 45527,
+ "object_name": "Rulkov NF, Timofeev I, Bazhenov M (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Large cortex model with map-based neurons (Rulkov et al 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We develop a new computationally efficient approach for the analysis of complex large-scale neurobiological networks. Its key element is the use of a new phenomenological model of a neuron capable of replicating important spike pattern characteristics and designed in the form of a system of difference equations (a map). ... Interconnected with synaptic currents these model neurons demonstrated responses very similar to those found with Hodgkin-Huxley models and in experiments. We illustrate the efficacy of this approach in simulations of one- and two-dimensional cortical network models consisting of regular spiking neurons and fast spiking interneurons to model sleep and activated states of the thalamocortical system. See paper for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/45525",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 66
+ },
+ "ver_date": "2008-10-08T18:49:58",
+ "ver_number": 15
+ },
+ "45539": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 82894,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 82895,
+ "object_name": "g77"
+ },
+ {
+ "object_id": 93318,
+ "object_name": "nrntraub with pattern.mod"
+ },
+ {
+ "object_id": 116860,
+ "object_name": "NEURON 7"
+ },
+ {
+ "object_id": 127353,
+ "object_name": "neuroConstruct"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2004-11-18T23:28:58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "ifc fortran"
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 45539,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 58972,
+ "object_name": "Traub RD, Contreras D, Cunningham MO, Murray H, LeBeau FE, Roopun A, Bibbig A, Wilent WB, Higley MJ, Whittington MA (2005)"
+ },
+ {
+ "object_id": 66265,
+ "object_name": "Traub RD, Contreras D, Whittington MA (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "A single column thalamocortical network model (Traub et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To better understand population phenomena in thalamocortical neuronal ensembles,\r\nwe have constructed a preliminary network model with 3,560 multicompartment neurons\r\n(containing soma, branching dendrites, and a portion of axon). Types of neurons included\r\nsuperficial pyramids (with regular spiking [RS] and fast rhythmic bursting [FRB] firing\r\nbehaviors); RS spiny stellates; fast spiking (FS) interneurons, with basket-type and axoaxonic\r\ntypes of connectivity, and located in superficial and deep cortical layers; low threshold spiking\r\n(LTS) interneurons, that contacted principal cell dendrites; deep pyramids, that could have RS or\r\nintrinsic bursting (IB) firing behaviors, and endowed either with non-tufted apical dendrites or\r\nwith long tufted apical dendrites; thalamocortical relay (TCR) cells; and nucleus reticularis\r\n(nRT) cells. To the extent possible, both electrophysiology and synaptic connectivity were\r\nbased on published data, although many arbitrary choices were necessary."
+ },
+ "opensourcebrain": {
+ "value": "thalamocortical"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/45539",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Epilepsy, Sleep spindles"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "deep cortical interneuron"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-03T22:08:21.927",
+ "ver_number": 41
+ },
+ "46839": {
+ "class_id": 19,
+ "created": "2004-12-10T04:21:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 46839,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 46840,
+ "object_name": "D'Angelo, Egidio [dangelo at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3989,
+ "object_name": "D'Angelo E, Nieus T, Maffei A, Armano S, Rossi P, Taglietti V, Fontana A, Naldi G (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Bursting and resonance in cerebellar granule cells (D'Angelo et al. 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this study we report theta-frequency (3-12 Hz)\r\nbursting and resonance in rat cerebellar granule cells and show that these neurons express a previously unidentified slow repolarizing K1 current (IK-slow ). Our experimental and modeling results indicate that IK-slow was necessary for both bursting and resonance. See paper for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/46839",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 161
+ },
+ "ver_date": "2015-07-26T07:59:59.673",
+ "ver_number": 15
+ },
+ "48332": {
+ "class_id": 19,
+ "created": "2005-01-13T10:03:28",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 48332,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 48422,
+ "object_name": "Raman, Indira M [i-raman at northwestern.edu]"
+ },
+ {
+ "object_id": 48423,
+ "object_name": "Bean, Bruce [bruce_bean at hms.harvard.edu]"
+ },
+ {
+ "object_id": 48424,
+ "object_name": "Gouwens, Nathan W [nathan_gouwens at hms.harvard.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 43936,
+ "object_name": "Khaliq ZM, Gouwens NW, Raman IM (2003)"
+ },
+ {
+ "object_id": 52479,
+ "object_name": "Raman IM, Bean BP (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "48332",
+ "name": "ModelView"
+ }
+ ],
+ "default": "48332"
+ },
+ "name": "Cerebellar Purkinje Cell: resurgent Na current and high frequency firing (Khaliq et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These mod files supplied by Dr Raman are for the below two references. ... we modeled action potential firing by simulating eight currents directly recorded from Purkinje cells in both wild-type and (mutant) med mice.\r\nRegular, high-frequency firing was slowed in med Purkinje neurons. In addition to disrupted sodium currents, med neurons had small\r\nbut significant changes in potassium and leak currents. Simulations indicated that these modified non-sodium currents could not\r\naccount for the reduced excitability of med cells but instead slightly facilitated spiking. The loss of NaV1.6-specific kinetics, however,\r\nslowed simulated spontaneous activity. Together, the data suggest that across a range of conditions, sodium currents with a resurgent\r\ncomponent promote and accelerate firing. See papers for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/48332",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181907,
+ "object_name": "48332"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 196
+ },
+ "ver_date": "2014-02-06T16:21:16",
+ "ver_number": 17
+ },
+ "48506": {
+ "class_id": 19,
+ "created": "2005-01-17T13:38:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88117,
+ "object_name": "I_KHT"
+ },
+ {
+ "object_id": 88118,
+ "object_name": "I_KLT"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 48506,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 48507,
+ "object_name": "Fernandez FR [ffernand at ucalgary.ca]"
+ },
+ {
+ "object_id": 48508,
+ "object_name": "Mehaffey WH "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 48505,
+ "object_name": "Fernandez FR, Mehaffey WH, Molineux ML, Turner RW (2005)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Pyramidal neurons: IKHT offsets activation of IKLT to increase gain (Fernandez et al 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88116,
+ "object_name": "ELL pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This matlab model was supplied by Dr Fernandez. It provides the model specification for the below paper. The influence of a high threshold K current on low threshold K and Na currents (especially frequency-current relationships) are studied in the paper with both experiments and modeling. Please see the reference for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/48506",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "IKHT, ILHT"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "ELL Pyramidal cells"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 133
+ },
+ "ver_date": "2007-04-13T15:58:54",
+ "ver_number": 14
+ },
+ "49305": {
+ "class_id": 19,
+ "created": "2005-01-27T15:52:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 49305,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 102181,
+ "object_name": "Doi T, Kuroda S, Michikawa T, Kawato M (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 18747,
+ "object_name": "GENESIS (web link to model)"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spike timing detection in different forms of LTD (Doi et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To understand the spike-timing detection mechanisms in cerebellar long-term depression (LTD), we developed a kinetic model of Ca dynamics within a Purkinje dendritic spine. In our kinetic simulation, IP3 was first produced via the metabotropic pathway of parallel fiber (PF) inputs, and the Ca influx in response to the climbing fiber (CF) input triggered regenerative Ca-induced Ca release from the internal stores via the IP3\r\nreceptors activated by the increased IP3. The delay in IP3 increase caused by the PF metabotropic pathway generated the optimal PF\u2013CF\r\ninterval. The Ca dynamics revealed a threshold for large Ca2 release that decreased as IP3 increased, and it coherently explained the\r\ndifferent forms of LTD. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/49305",
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "IP3"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "excel"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2015-07-01T13:50:22.293",
+ "ver_number": 14
+ },
+ "50207": {
+ "class_id": 19,
+ "created": "2005-02-13T20:01:31",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 50207,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 50209,
+ "object_name": "Kampa, Bjorn M [Bjoern.Kampa at anu.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 50212,
+ "object_name": "Kampa BM, Clements J, Jonas P, Stuart GJ (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "50207",
+ "name": "ModelView"
+ }
+ ],
+ "default": "50207"
+ },
+ "name": "Kinetic NMDA receptor model (Kampa et al 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This kinetic NMDA receptor model is based on voltage-clamp recordings of NMDA receptor-mediated currents in nucleated patches of rat neocortical layer 5 pyramidal neurons (Kampa et al 2004 J Physiol), this model was fit with AxoGraph directly to experimental recordings in order to obtain the optimal values for the parameters. The demo shows the behaviour of a kinetic NMDA receptor model reproducing the data in figure 2.\r\nThe NMDA receptor model uses realistic rates of magnesium block and its effects on channel desensitisation. Presynaptic transmitter release is necessary for glutamate binding to the receptor. This model was written by Bjoern Kampa, Canberra, 2004."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/50207",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181629,
+ "object_name": "50207"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 269
+ },
+ "ver_date": "2014-02-15T23:21:53",
+ "ver_number": 12
+ },
+ "50210": {
+ "class_id": 19,
+ "created": "2005-02-15T04:20:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 50210,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 51191,
+ "object_name": "Saghatelyan A, Roux P, Migliore M, Rochefort C, Desmaisons D, Charneau P, Shepherd GM, Lledo PM (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "50210_1",
+ "name": "control"
+ },
+ {
+ "id": "50210_2",
+ "name": "short dend"
+ },
+ {
+ "id": "50210_3",
+ "name": "Na shift"
+ }
+ ],
+ "default": "50210_1"
+ },
+ "name": "Olfactory bulb granule cell: effects of odor deprivation (Saghatelyan et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model supports the experimental findings on the effects of postnatal odor deprivation, and shows that a -10mV shift in the\r\nNa activation or a reduction in the dendritic length of newborn GC\r\ncould independently explain the observed increase in excitability. \r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/50210",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181725,
+ "object_name": "50210_2"
+ },
+ {
+ "object_id": 181726,
+ "object_name": "50210_3"
+ },
+ {
+ "object_id": 181728,
+ "object_name": "50210_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 310
+ },
+ "ver_date": "2018-10-17T15:41:42.843",
+ "ver_number": 10
+ },
+ "50219": {
+ "class_id": 19,
+ "created": "2005-02-18T17:17:42",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 50219,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 50400,
+ "object_name": "Maex, Reinoud [reinoud at bbf.uia.ac.be]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 12079,
+ "object_name": "Maex R, De Schutter E (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 18747,
+ "object_name": "GENESIS (web link to model)"
+ }
+ ]
+ },
+ "name": "Network model of the granular layer of the cerebellar cortex (Maex, De Schutter 1998)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We computed the steady-state activity of a large-scale model of the granular layer of the rat cerebellum. Within a few tens of milliseconds after the start of random mossy fiber input, the populations of Golgi and granule cells became entrained in a single synchronous oscillation, the basic frequency of which ranged from 10 to 40 Hz depending on the average rate of firing in the mossy fiber population. ... The synchronous, rhythmic firing pattern was robust over a broad range of biologically realistic parameter values and to parameter randomization. Three conditions, however, made the oscillations more transient and could desynchronize the entire network in the end: a very low mossy fiber activity, a very dominant excitation of Golgi cells through mossy fiber synapses (rather than through parallel fiber synapses), and a tonic activation of granule cell GABAA receptors (with an almost complete absence of synaptically induced inhibitory postsynaptic currents). The model predicts that, under conditions of strong mossy fiber input to the cerebellum, Golgi cells do not only control the strength of parallel fiber activity but also the timing of the individual spikes. Provided that their parallel fiber synapses constitute an important source of excitation, Golgi cells fire rhythmically and synchronized with granule cells over large distances along the parallel fiber axis. See paper for more and details."
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-07-17T17:47:14.52",
+ "ver_number": 14
+ },
+ "50391": {
+ "class_id": 19,
+ "created": "2005-02-22T11:25:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 50391,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ },
+ {
+ "object_id": 50446,
+ "object_name": "Donnelly, David [david.donnelly at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4234,
+ "object_name": "Chow CC, White JA (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "50391",
+ "name": "ModelView"
+ }
+ ],
+ "default": "50391"
+ },
+ "name": "Spontaneous firing caused by stochastic channel gating (Chow, White 1996)",
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON implementation of model of stochastic channel gating, resulting in spontaneous firing. Qualitatively reproduces the phenomena described in \r\nthe reference."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/50391",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Stochastic activity"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Leak"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Donnelly, David"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "squid axon"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Membrane action potential"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181912,
+ "object_name": "50391"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 497
+ },
+ "ver_date": "2014-02-25T01:11:06",
+ "ver_number": 13
+ },
+ "50392": {
+ "class_id": 19,
+ "created": "2005-02-22T15:10:54",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 50392,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 50400,
+ "object_name": "Maex, Reinoud [reinoud at bbf.uia.ac.be]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 50220,
+ "object_name": "Maex R, De Schutter E (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 18747,
+ "object_name": "GENESIS (web link to model)"
+ }
+ ]
+ },
+ "name": "Fast oscillations in inhibitory networks (Maex, De Schutter 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We observed a new phenomenon of resonant synchronization in computer-simulated networks of inhibitory neurons in which the synaptic current has a delayed onset, reflecting finite spike propagation and synaptic transmission times. At the resonant level of network excitation, all neurons fire synchronously and rhythmically with a period approximately four times the mean delay of the onset of the inhibitory synaptic current. ... By varying the axonal delay of the inhibitory connections, networks with a realistic synaptic kinetics can be tuned to frequencies from 40 to >200 Hz. ... We conclude that the delay of the synaptic current is the primary parameter controlling the oscillation frequency of inhibitory networks and propose that delay-induced synchronization is a mechanism for fast brain rhythms that depend on intact inhibitory synaptic transmission."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/50392",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2008-10-09T16:29:46",
+ "ver_number": 12
+ },
+ "50656": {
+ "class_id": 19,
+ "created": "2005-03-09T14:01:01",
+ "gitrepo": false,
+ "id": 50656,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 118207,
+ "object_name": "Maintenance"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 50995,
+ "object_name": "Machens CK, Romo R, Brody CD (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Neural model of two-interval discrimination (Machens et al 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Two-interval discrimination involves comparison of two stimuli that are presented at different times. It has three phases: loading, in which the first stimulus is perceived and stored in working memory; maintenance of working memory; decision making, in which the second stimulus is perceived and compared with the first. In behaving monkeys, each phase is associated with characteristic firing activity of neurons in the prefrontal cortex. This model implements both working memory and decision making with a mutual inhibition network that reproduces all three phases of two-interval discrimination.\r\nMachens, C.K., Romo, R., and Brody, C.D.\r\nFlexible control of mutual inhibition: a neural model of two-interval discrimination.\r\nScience 307:1121-1124, 2005."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/50656",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Nonlinear dynamical syste"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Machens, C.K. and Brody, C.D."
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Prefrontal cortex neuron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2017-10-26T11:23:22.803",
+ "ver_number": 15
+ },
+ "50997": {
+ "class_id": 19,
+ "created": "2005-03-22T20:35:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 50997,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33776,
+ "object_name": "Sikora, Michael [Sikora at umn.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 53868,
+ "object_name": "Sikora MA, Gottesman J, Miller RF (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "50997_1",
+ "name": "Fig 7"
+ },
+ {
+ "id": "50997_2",
+ "name": "Fig 8a"
+ },
+ {
+ "id": "50997_3",
+ "name": "Fig 8b"
+ },
+ {
+ "id": "50997_4",
+ "name": "Fig 8c"
+ },
+ {
+ "id": "50997_5",
+ "name": "Fig 8c_250"
+ },
+ {
+ "id": "50997_6",
+ "name": "Fig 9"
+ }
+ ],
+ "default": "50997_1"
+ },
+ "name": "Ribbon Synapse (Sikora et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ },
+ {
+ "object_id": 7020,
+ "object_name": "Retina bipolar GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A model of the ribbon synapse was developed to replicate both pre- and postsynaptic functions of this glutamatergic juncture. The presynaptic portion of the model is rich in anatomical and physiological detail and includes multiple release sites for each ribbon based on anatomical studies of presynaptic terminals, presynaptic voltage at the terminal, the activation of voltage-gated calcium channels and a calcium-dependent release mechanism whose rate varies as a function of the calcium concentration that is monitored at two different sites which control both an ultrafast, docked pool of vesicles and a release ready pool of tethered vesicles. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/50997",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ribbon Synapse"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "AMPA"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181834,
+ "object_name": "50997_2"
+ },
+ {
+ "object_id": 181835,
+ "object_name": "50997_3"
+ },
+ {
+ "object_id": 181836,
+ "object_name": "50997_1"
+ },
+ {
+ "object_id": 181837,
+ "object_name": "50997_6"
+ },
+ {
+ "object_id": 181839,
+ "object_name": "50997_4"
+ },
+ {
+ "object_id": 181840,
+ "object_name": "50997_5"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 330
+ },
+ "ver_date": "2015-01-02T22:30:47",
+ "ver_number": 23
+ },
+ "51022": {
+ "class_id": 19,
+ "created": "2005-03-28T10:03:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 51022,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 51023,
+ "object_name": "Amir, Ron [ronamir at pob.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 24714,
+ "object_name": "Amir R, Devor M (2003)"
+ },
+ {
+ "object_id": 24715,
+ "object_name": "Amir R, Devor M (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "51022",
+ "name": "ModelView"
+ }
+ ],
+ "default": "51022"
+ },
+ "name": "Dorsal root ganglion (DRG) neuronal model (Amir, Devor 2003)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ },
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model shows that an electrically excitable soma is not necessary for spike through-conduction in the t-shaped geometry of a dorsal root ganglion neuron axon. Electrical excitability of the soma is required, however, for soma spike invasion. See papers for details and more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/51022",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 225
+ },
+ "ver_date": "2015-07-26T08:01:12.267",
+ "ver_number": 17
+ },
+ "51196": {
+ "class_id": 19,
+ "created": "2005-04-07T16:06:25",
+ "gitrepo": false,
+ "id": 51196,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 51148,
+ "object_name": "Saftenku, Elena [esaft at biph.kiev.ua]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 118207,
+ "object_name": "Maintenance"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 51138,
+ "object_name": "Saftenku EE (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "LTP in cerebellar mossy fiber-granule cell synapses (Saftenku 2002)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We simulated synaptic transmission and modified a simple model of long-term potentiation (LTP) and long-term depression (LTD) in order to describe long-term plasticity related changes in cerebellar mossy fiber-granule cell synapses. In our model, protein autophosphorylation, leading to the maintenance of long-term plasticity, is controlled by Ca2+ entry through the NMDA receptor channels. The observed nonlinearity in the development of long-term changes of EPSP in granule cells is explained by the difference in the rate constants of two independent autocatalytic processes.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/51196",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 271
+ },
+ "ver_date": "2009-03-20T15:06:01",
+ "ver_number": 6
+ },
+ "51781": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 116942,
+ "object_name": "neuroConstruct"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2005-04-11T10:31:44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "NEURON"
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 51781,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 51782,
+ "object_name": "Santhakumar, Vijayalakshmi [santhavi at umdnj.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 51780,
+ "object_name": "Santhakumar V, Aradi I, Soltesz I (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 116943,
+ "object_name": "neuroConstruct (web link to model)"
+ }
+ ]
+ },
+ "name": "Dentate gyrus network model (Santhakumar et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Mossy cell loss and mossy fiber sprouting are two characteristic \r\n\r\nconsequences of repeated seizures and head trauma. However, their \r\n\r\nprecise contributions to the hyperexcitable state are not well \r\n\r\nunderstood. Because it is difficult, and frequently impossible, to \r\n\r\nindependently examine using experimental techniques whether it is the\r\n\r\nloss of mossy cells or the sprouting of mossy fibers that leads to \r\n\r\ndentate hyperexcitability, we built a biophysically realistic and \r\n\r\nanatomically representative computational model of the dentate gyrus\r\n\r\nto examine this question. The 527-cell model, containing granule, \r\n\r\nmossy, basket, and hilar cells with axonal projections to the \r\n\r\nperforant-path termination zone, showed that even weak mossy fiber \r\n\r\nsprouting (10-15% of the strong sprouting observed in the pilocarpine\r\n\r\nmodel of epilepsy) resulted in the spread of seizure-like activity to\r\n\r\nthe adjacent model hippocampal laminae after focal stimulation of the\r\n\r\nperforant path. See reference for more and details."
+ },
+ "opensourcebrain": {
+ "value": "dentategyrus2005"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/51781",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 222
+ },
+ "ver_date": "2022-12-16T10:38:39.24",
+ "ver_number": 26
+ },
+ "52034": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 116859,
+ "object_name": "NEURON 7"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2005-04-12T09:23:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 52034,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 53424,
+ "object_name": "Bush, Paul"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4068,
+ "object_name": "Bush PC, Prince DA, Miller KD (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "52034",
+ "name": "ModelView"
+ }
+ ],
+ "default": "52034"
+ },
+ "name": "Cortical network model of posttraumatic epileptogenesis (Bush et al 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227970,
+ "object_name": "Neocortex M1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 227711,
+ "object_name": "Neocortex M1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 230188,
+ "object_name": "Neocortex M1 interneuron basket PV GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This simulation from Bush, Prince, and Miller 1999 shows the epileptiform response (Fig. 6C) to a brief single stimulation in a 500 cell\r\nnetwork of multicompartment models, some of which have active dendrites. The results which I obtained under Redhat Linux is shown in result.gif.\r\n\r\nOriginal 1997 code from Paul Bush modified slightly by Bill Lytton to make it work with\r\ncurrent version of NEURON (5.7.139). Thanks to Paul Bush and Ken Miller for\r\nmaking the code available.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/52034",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181454,
+ "object_name": "52034"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 210
+ },
+ "ver_date": "2023-04-30T15:12:12.273",
+ "ver_number": 36
+ },
+ "53425": {
+ "class_id": 19,
+ "created": "2005-04-29T18:57:16",
+ "gitrepo": false,
+ "id": 53425,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53900,
+ "object_name": "Major, Lora [lora.major at ualberta.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 53553,
+ "object_name": "Major LA, Jones KE (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Motoneuron simulations for counting motor units (Major and Jones 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulations of clinical methods to count the number of motoneurons/motor units in human patients. Models include stimulation of motor axons or voluntary activation and responses are measured as muscle tension or EMG."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53425",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Major, Lora "
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 122
+ },
+ "ver_date": "2019-06-03T16:00:22.77",
+ "ver_number": 7
+ },
+ "53427": {
+ "class_id": 19,
+ "created": "2005-05-02T10:51:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 53427,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 48671,
+ "object_name": "Blackwell KT (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53428,
+ "object_name": "Chemesis"
+ }
+ ]
+ },
+ "name": "Paired turbulence and light effect on calcium increase in Hermissenda (Blackwell 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114290,
+ "object_name": "Hermissenda photoreceptor Type B"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The sea slug Hermissenda learns to associate light and hair cell stimulation, but not when the stimuli are temporally uncorrelated...These issues were addressed using a multi-compartmental computer model of phototransduction, calcium dynamics, and ionic currents of the Hermissenda photoreceptor...simulations show that a potassium leak channel, which closes with an increase in calcium, is required to produce both the untrained LLD and the enhanced LLD due to the decrease in voltage dependent potassium currents."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53427",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "long lasting depol. LLD"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "light induced IP3 gatedNa"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2016-12-19T16:37:23.557",
+ "ver_number": 20
+ },
+ "53435": {
+ "class_id": 19,
+ "created": "2005-05-02T22:01:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 53435,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 87513,
+ "object_name": "Popovic, Marko [tica at ibiss.bg.ac.yu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87496,
+ "object_name": "Popovic M, Djurisic M, Zecevic D (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Compartmental model of a mitral cell (Popovic et al. 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Usage of a morphologically realistic compartmental model of a mitral cell and data obtained from whole-cell patch-clamp and voltage-imaging experiments in order to explore passive parameter space in which reported low EPSP attenuation is observed."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53435",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 201
+ },
+ "ver_date": "2018-10-17T15:42:08.03",
+ "ver_number": 11
+ },
+ "53437": {
+ "class_id": 19,
+ "created": "2005-05-03T14:56:29",
+ "gitrepo": false,
+ "id": 53437,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 121116,
+ "object_name": "Hines ML, Carnevale NT (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Discrete event simulation in the NEURON environment (Hines and Carnevale 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A short introduction to how \"integrate and fire\" cells are implemented in NEURON. Network simulations that use only artificial spiking cells are extremely efficient, with runtimes proportional to the total number of synaptic inputs received and independent of the number of cells or problem time."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53437",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 224
+ },
+ "ver_date": "2005-05-04T10:00:44",
+ "ver_number": 5
+ },
+ "53451": {
+ "class_id": 19,
+ "created": "2005-05-05T15:26:01",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 53451,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 24580,
+ "object_name": "Hines ML, Carnevale NT (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "53451_1",
+ "name": "Fig 1"
+ },
+ {
+ "id": "53451_2",
+ "name": "Fig 3,4"
+ },
+ {
+ "id": "53451_3",
+ "name": "Fig 5"
+ },
+ {
+ "id": "53451_4",
+ "name": "Fig 7"
+ },
+ {
+ "id": "53451_5",
+ "name": "Fig 8"
+ },
+ {
+ "id": "53451_6",
+ "name": "Fig 9"
+ }
+ ],
+ "default": "53451_1"
+ },
+ "name": "Spatial gridding and temporal accuracy in NEURON (Hines and Carnevale 2001)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A heuristic for compartmentalization based on\r\nthe space constant at 100 Hz is proposed.\r\nThe paper also discusses spatio/temporal accuracy\r\nand the use of CVODE."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53451",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.hines@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181416,
+ "object_name": "53451_1"
+ },
+ {
+ "object_id": 181418,
+ "object_name": "53451_3"
+ },
+ {
+ "object_id": 181419,
+ "object_name": "53451_4"
+ },
+ {
+ "object_id": 181420,
+ "object_name": "53451_5"
+ },
+ {
+ "object_id": 181421,
+ "object_name": "53451_6"
+ },
+ {
+ "object_id": 181467,
+ "object_name": "53451_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 485
+ },
+ "ver_date": "2015-01-02T22:35:05",
+ "ver_number": 11
+ },
+ "53457": {
+ "class_id": 19,
+ "created": "2005-05-06T15:31:53",
+ "gitrepo": false,
+ "id": 53457,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53453,
+ "object_name": "Chang, Kuiyu [kuiyu.chang at pmail.ntu.edu.sg]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 53454,
+ "object_name": "Chang KY, Ghosh J (2001)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Method of probabilistic principle surfaces (PPS) (Chang and Ghosh 2001)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Principal curves and surfaces are nonlinear generalizations of principal\r\ncomponents and subspaces, respectively. They can provide insightful summary\r\nof high-dimensional data not typically attainable by classical linear\r\nmethods. See paper for more and details. The matlab code supplied at the authors website calculates probabilistic principle surfaces on benchmark data sets."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53457",
+ "ver_date": "2005-05-06T21:48:03",
+ "ver_number": 8
+ },
+ "53559": {
+ "class_id": 19,
+ "created": "2005-05-18T16:53:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 53559,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ },
+ {
+ "object_id": 53578,
+ "object_name": "Moss, Brenda [bmoss at usd.edu]"
+ },
+ {
+ "object_id": 53579,
+ "object_name": "Byrne, John [john.h.byrne at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 53564,
+ "object_name": "Moss BL, Fuller AD, Sahley CL, Burrell BD (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "S cell network (Moss et al 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 102282,
+ "object_name": "Leech S cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Excerpts from the abstract:\r\nS cells form a chain of electrically coupled neurons that extends the length of the leech CNS and plays a critical role in sensitization during whole-body shortening. ...\r\nSerotonin ... increasedAP latency across the electrical synapse, suggesting that serotonin reduced coupling between S cells. ...\r\nSerotonin modulated \r\ninstantaneous AP frequency when APs were initiated in separate S \r\ncells and in a computational model of S cell activity following \r\nmechanosensory input. Thus, serotonergic modulation of S cell \r\nelectrical synapses may contribute to changes in the pattern of\r\nactivity in the S cell network. See paper for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53559",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I leak"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Leech S interneuron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114272,
+ "object_name": "Hirudinea (leech)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:21:30.787",
+ "ver_number": 26
+ },
+ "53569": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 60136,
+ "object_name": "original"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2005-05-22T22:12:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 53569,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53570,
+ "object_name": "Prescott, Steven [steve.prescott at sickkids.ca]]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 84428,
+ "object_name": "Prescott SA, De Koninck Y (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "53569",
+ "name": "ModelView"
+ }
+ ],
+ "default": "53569"
+ },
+ "name": "Tonic neuron in spinal lamina I: prolongation of subthreshold depol. (Prescott and De Koninck 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 128582,
+ "object_name": "Spinal cord lamina I neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model demonstrates mechanism whereby two kinetically distinct inward currents act synergistically to prolong subthreshold depolarization. The important currents are a persistent Na current (with fast kinetics) and a persistent Ca current (with slower kinetics). Model also includes a slow K current and transient Ca current, in addition to standard HH currents. Model parameters are set to values used in Fig. 8A. Simulation shows prolonged depolarizations in response to two brief stimuli.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53569",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181149,
+ "object_name": "53569"
+ }
+ ]
+ },
+ "ver_date": "2013-12-10T15:38:48",
+ "ver_number": 20
+ },
+ "53572": {
+ "class_id": 19,
+ "created": "2005-05-24T16:02:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 53572,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 53576,
+ "object_name": "Amini B, Bidani A, Zwischenberger JB, Clark JW (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Rat phrenic motor neuron (Amini et al 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We have developed a model for the rat phrenic motor neuron (PMN) that robustly replicates many experimentally observed behaviors of PMNs in response to pharmacological, ionic, and electrical perturbations using a single set of parameters."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53572",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Phrenic motor neuron"
+ },
+ "ver_date": "2009-01-26T16:48:31",
+ "ver_number": 5
+ },
+ "53869": {
+ "class_id": 19,
+ "created": "2005-06-06T13:34:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 53869,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53903,
+ "object_name": "Zhou, Yi [yizhou at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 51087,
+ "object_name": "Zhou Y, Carney LH, Colburn HS (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A model for interaural time difference sensitivity in the medial superior olive (Zhou et al 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88110,
+ "object_name": "Medial Superior Olive (MSO) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model simulates responses of neurons to interaural time difference (ITD) in the medial superior olive (MSO) of the mammalian brainstem. The model has a bipolar cell structure and incorporates two anatomic observations in the MSO: (1) the axon arises from the dendrite that receives ipsilateral inputs and (2) inhibitory synapses are located primarily on the soma in adult animals. Fine adjustment of the best ITD is achieved by the interplay of somatic sodium currents and synaptic inhibitory currents. The model suggests a mechanism for dynamically \"fine-tuning\" the ITD sensitivity of MSO cells by the opponency between depolarizing sodium currents and hyperpolarizing inhibitory currents."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53869",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "auditory brainstem medial superior olive neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yizhou@bu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181475,
+ "object_name": "53869"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 141
+ },
+ "ver_date": "2014-01-18T22:34:11",
+ "ver_number": 21
+ },
+ "53876": {
+ "class_id": 19,
+ "created": "2005-06-07T17:16:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 53876,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 12352,
+ "object_name": "Quadroni R, Kn\u00f6pfel T (1994)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "53876_1",
+ "name": "2 A1 B1"
+ },
+ {
+ "id": "53876_2",
+ "name": "2 A2 B2"
+ },
+ {
+ "id": "53876_3",
+ "name": "2 C"
+ },
+ {
+ "id": "53876_4",
+ "name": "2 D"
+ },
+ {
+ "id": "53876_5",
+ "name": "3"
+ },
+ {
+ "id": "53876_6",
+ "name": "4 A"
+ }
+ ],
+ "default": "53876_1"
+ },
+ "name": "Medial vestibular neuron models (Quadroni and Knopfel 1994)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 139834,
+ "object_name": "Vestibular neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The structure and the parameters of the model cells were chosen to reproduce the responses of type A and type B MVNns as described in electrophysiological recordings. The emergence of oscillatory firing under these two specific experimental conditions is consistent with electrophysiological recordings not used during construction of the model. We, therefore, suggest that these models have a high predictive value."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53876",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181160,
+ "object_name": "53876_1"
+ },
+ {
+ "object_id": 181162,
+ "object_name": "53876_3"
+ },
+ {
+ "object_id": 181163,
+ "object_name": "53876_2"
+ },
+ {
+ "object_id": 181164,
+ "object_name": "53876_5"
+ },
+ {
+ "object_id": 181165,
+ "object_name": "53876_4"
+ },
+ {
+ "object_id": 181166,
+ "object_name": "53876_6"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:39:06",
+ "ver_number": 23
+ },
+ "53893": {
+ "class_id": 19,
+ "created": "2005-06-08T18:42:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 53893,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 23054,
+ "object_name": "Wang XJ, Rinzel J, Rogawski MA (1991)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "T-type Ca current in thalamic neurons (Wang et al 1991)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A model of the transient, low-threshold voltage-dependent (T-type)\r\nCa2+ current is constructed using whole-cell voltage-clamp \r\ndata from enzymatically isolated rat thalamocortical relay neurons. \r\nThe T-type Ca2+ current is described according to the Hodgkin-Huxley \r\nscheme, using the m3h format, with rate constants determined from the experimental data."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53893",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2022-11-04T13:21:03.173",
+ "ver_number": 5
+ },
+ "53894": {
+ "class_id": 19,
+ "created": "2005-06-10T12:33:25",
+ "gitrepo": false,
+ "id": 53894,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53898,
+ "object_name": "Avery, Leon [leon at eatworms.swmed.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 53897,
+ "object_name": "Avery L, Shtonda BB (2003)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ }
+ ]
+ },
+ "name": "C elegans pharynx simulation (Avery and Shtonda 2003)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Experimental obervations, measurements, and theoretical analysis of C. elegans pharynx feeding behavior function are reported in the paper. See the paper and the model files for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53894",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Java"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Hydrodynamic"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "leon@eatworms.swmed.edu"
+ },
+ "ver_date": "2014-07-18T15:18:22",
+ "ver_number": 11
+ },
+ "53965": {
+ "class_id": 19,
+ "created": "2005-06-30T17:45:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "id": 53965,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 53548,
+ "object_name": "Vitko I, Chen Y, Arias JM, Shen Y, Wu XR, Perez-Reyes E (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "T channel currents (Vitko et al 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Computer simulations predict that seven of the SNPs would increase firing of neurons, with three of them inducing oscillations at similar frequencises. 3 representative models from the paper have been submited: a wild-type (WT) recombinant Cav3.2 T-channel, and two of the\r\nmutants described in the Vitko et al., 2005 paper (C456S and R788C). See the paper for more and details.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/53965",
+ "ver_date": "2012-01-13T14:16:11",
+ "ver_number": 23
+ },
+ "54141": {
+ "class_id": 19,
+ "created": "2005-07-19T15:51:06",
+ "gitrepo": false,
+ "id": 54141,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 54151,
+ "object_name": "Willms, Allan [AWillms at uoguelph.ca]"
+ },
+ {
+ "object_id": 54152,
+ "object_name": "Kuo, Howie "
+ },
+ {
+ "object_id": 54153,
+ "object_name": "Ewing, Greg"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 27044,
+ "object_name": "Willms AR, Baro DJ, Harris-Warrick RM, Guckenheimer J (1999)"
+ },
+ {
+ "object_id": 54142,
+ "object_name": "Willms AR (2002)"
+ },
+ {
+ "object_id": 54143,
+ "object_name": "T\u00f3th TI, Crunelli V (1995)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "NEUROFIT: fitting HH models to voltage clamp data (Willms 2002)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Publicly available software for accurate fitting of Hodgkin-Huxley models to voltage-clamp data... The set of parameter values for the model determined by this software yield current traces that are substantially closer to the observed data than those determined from the usual fitting method. This improvement is due to the fact that the software fits all of the parameters simultaneously utilizing all of the data rather than fitting steady-state and time constant parameters disjointly using peak currents and portions of the rising and falling phases... The software also incorporates a linear pre-estimation procedure to help in determining reasonable initial values for the full non-linear algorithm. See references for details and more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/54141",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Tom.Morse@Yale.edu"
+ },
+ "ver_date": "2005-07-20T11:12:11",
+ "ver_number": 7
+ },
+ "54154": {
+ "class_id": 19,
+ "created": "2005-07-21T11:06:32",
+ "gitrepo": false,
+ "id": 54154,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 54155,
+ "object_name": "Toth, T.I [toth at cardiff.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 54157,
+ "object_name": "T\u00f3th TI, Crunelli V (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 54156,
+ "object_name": "Octave"
+ }
+ ]
+ },
+ "name": "Channel parameter estimation from current clamp and neuronal properties (Toth, Crunelli 2001)",
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper, we present a method by which the activation and kinetic properties of INa, IK can be estimated from current-clamp data, more precisely from the time course of the action potential, provided some additional electrophysiological properties of the neurone are a priori known. See reference for details and more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/54154",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2015-07-26T08:05:35.747",
+ "ver_number": 4
+ },
+ "54896": {
+ "class_id": 19,
+ "created": "2005-08-08T13:25:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 252,
+ "object_name": "I Cl,Ca"
+ },
+ {
+ "object_id": 254,
+ "object_name": "I CNG"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 54896,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 54900,
+ "object_name": "Dougherty, Daniel P [dpdoughe at mbi.ohio-state.edu]"
+ },
+ {
+ "object_id": 54901,
+ "object_name": "Wright, Geraldine A [wright.571 at osu.edu]"
+ },
+ {
+ "object_id": 54902,
+ "object_name": "Yew, Alice C [yew at math.ohio-state.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 54899,
+ "object_name": "Dougherty DP, Wright GA, Yew AC (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Olfactory receptor neuron model (Dougherty et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Demonstration of ORN model by Dougherty, Wright and Yew (2005) PNAS 102: 10415-10420. This program, dwy_pnas_demo2, simulates the transduction current response of a single olfactory receptor neuron being stimulated by an odorant plume. The program is interactive in that a user can tweak parameter values and stimulus conditions. Also, users can save a configuration in a mat-file or export all aspects to a directory of text files. These text files can be read by other programs. There is also an import facility for importing text files from a directory that allows the user to specify their own data, pulses and parameters."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/54896",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Daniel P. Dougherty, Geraldine A. Wright, Alice C. Yew"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Cilia"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 221,
+ "object_name": "Olfactory Receptors"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 126
+ },
+ "ver_date": "2018-10-17T15:42:25.013",
+ "ver_number": 13
+ },
+ "54903": {
+ "class_id": 19,
+ "created": "2005-08-09T19:27:36",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 54903,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33780,
+ "object_name": "Antic, Srdjan [antic at neuron.uchc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 54907,
+ "object_name": "Hossain WA, Antic SD, Yang Y, Rasband MN, Morest DK (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "AP initiation and propagation in type II cochlear ganglion cell (Hossain et al 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88112,
+ "object_name": "Cochlear ganglion cell Type II"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model of type II cochlear ganglion cell was based on the\r\nimmunostaining of the mouse auditory pathway. Specific antibodies were\r\nused to map the distribution of voltage-dependent sodium channels along\r\nthe two unmyelinated axon-like processes of the bipolar ganglion cells.\r\nThree distinct hot spots were detected. A high density of sodium\r\nchannels was present over the entire trajectory of sensory endings\r\nbeneath the outer hair cells (the most distal portion of the peripheral\r\naxon). The other two hot spots were localized in the initial segments of\r\nboth of the axons that flank the unmyelinated bipolar ganglion cell bodies.\r\n\r\nA biophysical model indicates that all three hot spots might play\r\nimportant roles in action potential initiation and propagation. For\r\ninstance, the hot spot in the receptor segment is important for\r\ntransforming the receptor potentials into a full blown action potential\r\n(Supplemental Fig. 1). The hot spots in the two paraganglionic axon\r\ninitial segments are there to ensure the successful propagation of\r\naction potentials from the peripheral to the central axon through the\r\ncell body.\r\n\r\nThe Readme.txt file provides step by step instructions on how to\r\nrecreate Figures 6 and 7 of Hossain et al., 2005 paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/54903",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cochlear Ganglion Cell Type II"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "antic@neuron.uchc.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 145
+ },
+ "ver_date": "2018-10-18T15:17:05.36",
+ "ver_number": 20
+ },
+ "55035": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 127354,
+ "object_name": "neuroConstruct"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2005-08-25T03:56:25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "NEURON"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 55035,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 58973,
+ "object_name": "Migliore M, Ferrante M, Ascoli GA (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 116943,
+ "object_name": "neuroConstruct (web link to model)"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "55035",
+ "name": "ModelView"
+ }
+ ],
+ "default": "55035"
+ },
+ "name": "CA1 pyramidal neuron: signal propagation in oblique dendrites (Migliore et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from the paper:\r\nM. Migliore, M. Ferrante, GA Ascoli (2005).\r\nThe model shows how the back- and forward propagation of action potentials in the oblique dendrites of CA1 neurons could be modulated by local properties such as morphology or active conductances."
+ },
+ "opensourcebrain": {
+ "value": "ca1pyramidalcell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/55035",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181613,
+ "object_name": "55035"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 178
+ },
+ "ver_date": "2014-02-06T16:13:58",
+ "ver_number": 11
+ },
+ "55273": {
+ "class_id": 19,
+ "created": "2005-09-12T15:10:34",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 55273,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 55272,
+ "object_name": "Suh BC, Horowitz LF, Hirdes W, Mackie K, Hille B (2004)"
+ },
+ {
+ "object_id": 55275,
+ "object_name": "Shapiro MS (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 55276,
+ "object_name": "Virtual Cell (web link to model)"
+ }
+ ]
+ },
+ "name": "Regulation of KCNQ2/KCNQ3 current by G protein cycling (Suh et al 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Receptor-mediated modulation of KCNQ channels regulates neuronal excitability. This study concerns\r\nthe kinetics and mechanism of M1 muscarinic receptor-mediated regulation of the cloned neuronal M channel, KCNQ2/KCNQ3 (Kv7.2/Kv7.3). ... observations were successfully described by a kinetic model representing biochemical steps of the signaling\r\ncascade using published rate constants where available. The model supports the following sequence of events for\r\nthis Gq-coupled signaling: A classical G-protein cycle, including competition for nucleotide-free G-protein by all\r\nnucleotide forms and an activation step requiring Mg2, followed by G-protein-stimulated phospholipase C and\r\nhydrolysis of PIP2, and finally PIP2 dissociation from binding sites for inositol lipid on the channels so that KCNQ\r\ncurrent was suppressed. See paper for details and more."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/55273",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "ver_date": "2010-11-02T08:03:32",
+ "ver_number": 15
+ },
+ "55748": {
+ "class_id": 19,
+ "created": "2005-10-04T16:08:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 88212,
+ "object_name": "KCNQ1"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122822,
+ "object_name": "Kv1.9 Kv7.1 KCNQ1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 55748,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 55751,
+ "object_name": "Silva, Jonathan [jonsilva at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 88214,
+ "object_name": "Long-QT"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 55676,
+ "object_name": "Silva J, Rudy Y (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Role of KCNQ1 and IKs in cardiac repolarization (Silva, Rudy 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Detailed Markov models of IKs (the slow delayed rectifier K+ current) and its alpha-subunit KCNQ1 were developed. The model is compared to experiment in the paper. The role of IKs in disease and drug treatments is elucidated (the prevention of excessive action potential prolongation and development of arrhythmogenic early afterdepolarizations). See paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/55748",
+ "ver_date": "2018-02-26T11:00:30.433",
+ "ver_number": 14
+ },
+ "55749": {
+ "class_id": 19,
+ "created": "2005-10-05T13:30:18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 55749,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 55750,
+ "object_name": "Hennings, Kristian [krist at hst.auc.dk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 55755,
+ "object_name": "Hennings K, Arendt-Nielsen L, Andersen OK (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Breakdown of accmmodation in nerve: a possible role for INAp (Hennings et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The present modeling study suggests that persistent, low-threshold, rapidly activating\r\nsodium currents have a key role in breakdown of accommodation, and that breakdown of\r\naccommodation can be used as a tool for studying persistent sodium current under normal and\r\npathological conditions. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/55749",
+ "ver_date": "2007-04-13T18:11:53",
+ "ver_number": 8
+ },
+ "55756": {
+ "class_id": 19,
+ "created": "2005-10-05T14:32:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 55756,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 56009,
+ "object_name": "Decker, Keith [keithforestdecker at gmail.com]"
+ },
+ {
+ "object_id": 56010,
+ "object_name": "Livshitz, Leonid [livshitz at wustl.edu]"
+ },
+ {
+ "object_id": 56011,
+ "object_name": "Hund, Tom [thund at pathology.wustl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 55691,
+ "object_name": "Hund TJ, Rudy Y (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "A dynamic model of the canine ventricular myocyte (Hund, Rudy 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ },
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Hund-Rudy dynamic (HRd) model is based on data from the canine epicardial ventricular myocyte. Rate-dependent phenomena associated with ion channel kinetics, action potential properties and Ca2+ handling are simulated by the model. See paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/55756",
+ "ver_date": "2009-05-28T14:21:03",
+ "ver_number": 8
+ },
+ "55859": {
+ "class_id": 19,
+ "created": "2005-10-05T18:07:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 55859,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 5176,
+ "object_name": "Zeng J, Laurita KR, Rosenbaum DS, Rudy Y (1995)"
+ },
+ {
+ "object_id": 5177,
+ "object_name": "Zeng J, Rudy Y (1995)"
+ },
+ {
+ "object_id": 5192,
+ "object_name": "Luo CH, Rudy Y (1994)"
+ },
+ {
+ "object_id": 55689,
+ "object_name": "Viswanathan PC, Shaw RM, Rudy Y (1999)"
+ },
+ {
+ "object_id": 55860,
+ "object_name": "Luo CH, Rudy Y (1991)"
+ },
+ {
+ "object_id": 56013,
+ "object_name": "Luo CH, Rudy Y (1994)"
+ },
+ {
+ "object_id": 56014,
+ "object_name": "Shaw RM, Rudy Y (1997)"
+ },
+ {
+ "object_id": 56015,
+ "object_name": "Viswanathan PC, Rudy Y (1999)"
+ },
+ {
+ "object_id": 56017,
+ "object_name": "Clancy CE, Rudy Y (1999)"
+ },
+ {
+ "object_id": 56018,
+ "object_name": "Viswanathan PC, Rudy Y (2000)"
+ },
+ {
+ "object_id": 56020,
+ "object_name": "Faber GM, Rudy Y (2000)"
+ },
+ {
+ "object_id": 112806,
+ "object_name": "Wang YJ, Sung RJ, Lin MW, Wu SN (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Ventricular cell model (Guinea-pig-type) (Luo, Rudy 1991, +11 other papers!) (C++)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ },
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A mathematical model of the membrane action potential of the mammalian ventricular cell is introduced. The model is based, whenever possible, on recent single-cell and single-channel data and incorporates the possibility of changing extracellular potassium concentration [K]o. ... The results are consistent with recent experimental observations, and the model simulations relate these phenomena to the underlying ionic channel kinetics. See paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/55859",
+ "ver_date": "2015-08-04T10:28:44.327",
+ "ver_number": 17
+ },
+ "56012": {
+ "class_id": 19,
+ "created": "2005-10-08T17:23:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 56012,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 58024,
+ "object_name": "Sperelakis N, Kalloor B, Ramasamy L (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 57924,
+ "object_name": "PSpice"
+ }
+ ]
+ },
+ "name": "Boundary effects influence velocity in transverse propagation of cardiac APs (Sperelakis et al 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "... earlier experiments were carried out with 2-dimensional\r\nsheets of cells: 2 \u00c3\u2014 3, 3 \u00c3\u2014 4, and 5 \u00c3\u2014 5 models (where the first number is the number of parallel\r\nchains and the second is the number of cells in each chain). The purpose of the present study was\r\nto enlarge the model size to 7 \u00c3\u2014 7, thus enabling the transverse velocities to be compared in models\r\nof different sizes (where all circuit parameters are identical in all models). This procedure should\r\nenable the significance of the role of edge (boundary) effects in transverse propagation to be\r\ndetermined. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/56012",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "laksnarayana@yahoo.com"
+ },
+ "ver_date": "2015-07-26T11:11:55.24",
+ "ver_number": 17
+ },
+ "57905": {
+ "class_id": 19,
+ "created": "2005-10-21T04:26:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 57905,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57906,
+ "object_name": "Golomb, David [golomb at bgu.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 57779,
+ "object_name": "Golomb D, Shedmi A, Curtu R, Ermentrout GB (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Persistent synchronized bursting activity in cortical tissues (Golomb et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The program simulates a one-dimensional model of a cortical tissue with excitatory and inhibitory populations.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/57905",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortical inhibitory neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "golomb@bgu.ac.il"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 74
+ },
+ "ver_date": "2012-11-20T12:24:18",
+ "ver_number": 6
+ },
+ "57910": {
+ "biosimulations": {
+ "value": "modeldb-57910"
+ },
+ "class_id": 19,
+ "created": "2005-10-23T09:38:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 88206,
+ "object_name": "I_HERG"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 57910,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ },
+ {
+ "object_id": 58177,
+ "object_name": "Wu, Jiun-Shian [coolneon at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 88214,
+ "object_name": "Long-QT"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 57915,
+ "object_name": "Chiesa N, Rosati B, Arcangeli A, Olivotto M, Wanke E (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "HERG K+ channels spike-frequency adaptation (Chiesa et al 1997)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88207,
+ "object_name": "Neuroblastoma"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Spike frequency adaptation has contributions from the IHERG current (encoded by the human eag-related gene\r\n(HERG); Warmke & Ganetzky, 1994), which develops with\r\nslow kinetics during depolarization and contributes to the\r\nrepolarization of the long action potentials typically present\r\nin the heart. IHERG is one of the delayed rectifier currents\r\n(IK(r)) of the heart, and HERG mutations are associated\r\nwith one of the cardiac arrhythmia LQT syndromes (LQT2).\r\nSee paper for more and details.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/57910",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "IK(erg)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neuroblastoma cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2009-01-26T16:26:03",
+ "ver_number": 10
+ },
+ "58172": {
+ "biosimulations": {
+ "value": "modeldb-58172"
+ },
+ "class_id": 19,
+ "created": "2005-10-27T01:59:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 88206,
+ "object_name": "I_HERG"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122807,
+ "object_name": "HERG KCNH2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 58172,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ },
+ {
+ "object_id": 58177,
+ "object_name": "Wu, Jiun-Shian [coolneon at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 88214,
+ "object_name": "Long-QT"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 58174,
+ "object_name": "Clancy CE, Rudy Y (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Consequences of HERG mutations in the long QT syndrome (Clancy, Rudy 2001)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This study demonstrates which mutations can prolong APD sufficiently to generate early \r\nafterdepolarizations (EADs), which may trigger life-threatening arrhythmias. The severity of the phenotype is shown to \r\ndepend on the specific kinetic changes and how they affect I(Kr) during the time course of the action potential. See paper for more and details. \r\n\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/58172",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "HERG current"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Heart cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2009-07-13T15:55:49",
+ "ver_number": 13
+ },
+ "58195": {
+ "biosimulations": {
+ "value": "modeldb-58195"
+ },
+ "class_id": 19,
+ "created": "2005-10-30T09:40:45",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 58195,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ },
+ {
+ "object_id": 58177,
+ "object_name": "Wu, Jiun-Shian [coolneon at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 58196,
+ "object_name": "Horrigan FT, Cui J, Aldrich RW (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Allosteric gating of K channels (Horrigan et al 1999)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Calcium sensitive large-conductance K channel conductance is controlled by both cytoplasmic calcium and membrane potential.\r\nExperimental data obtained by the inside out patch method can be understood in terms of a gating scheme where a central transition between a closed and an open conformation is allosterically regulated by the state of four independent and identical voltage sensors. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/58195",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Han-Dong Chang, and Jiun-Shian Wu"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2015-07-26T11:13:00.303",
+ "ver_number": 6
+ },
+ "58199": {
+ "biosimulations": {
+ "value": "modeldb-58199"
+ },
+ "class_id": 19,
+ "created": "2005-11-01T02:09:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 58199,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ },
+ {
+ "object_id": 58177,
+ "object_name": "Wu, Jiun-Shian [coolneon at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 150554,
+ "object_name": "Calcium waves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 58200,
+ "object_name": "Dupont G, Berridge MJ, Goldbeter A (1991)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Ca(2+) oscillations based on Ca-induced Ca-release (Dupont et al 1991)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We consider a simple, minimal model for signal-induced Ca2+ oscillations based on Ca(2+)-induced Ca2+ release. The model takes into account the existence of two pools of intracellular Ca2+, namely, one sensitive to inositol 1,4,5 trisphosphate (InsP3) whose synthesis is elicited by the stimulus, and one insensitive to InsP3. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/58199",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "calcium oscillations"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "nonexctable cells, e.g., glial cells"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "intracellular calcium"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2015-07-26T11:16:58.487",
+ "ver_number": 8
+ },
+ "58581": {
+ "biosimulations": {
+ "value": "modeldb-58581"
+ },
+ "class_id": 19,
+ "created": "2005-11-04T14:57:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88212,
+ "object_name": "KCNQ1"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122822,
+ "object_name": "Kv1.9 Kv7.1 KCNQ1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 58581,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ },
+ {
+ "object_id": 58177,
+ "object_name": "Wu, Jiun-Shian [coolneon at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 88214,
+ "object_name": "Long-QT"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 55676,
+ "object_name": "Silva J, Rudy Y (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Role of KCNQ1 and IKs in cardiac repolarization (Silva, Rudy 2005) (XPP)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Detailed Markov model of IKs (the slow delayed rectifier K+ current) is supplied here in XPP. The model is compared to experiment in the paper. The role of IKs in disease and drug treatments is elucidated (the prevention of excessive action potential prolongation and development of arrhythmogenic early afterdepolarizations). See also modeldb accession number 55748 code and reference for more and details. This XPP version of the model reproduces Figure 3C in the paper by default.\r\nThese model files were submitted by: Dr. Sheng-Nan Wu, Han-Dong Chang, Jiun-Shian Wu\r\nDepartment of Physiology\r\nNational Cheng Kung University Medical College\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/58581",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chang, Han-Dong and Wu, Jiun-Shian"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "heart cells"
+ },
+ "ver_date": "2018-02-26T11:01:05.383",
+ "ver_number": 14
+ },
+ "58582": {
+ "class_id": 19,
+ "created": "2005-11-06T06:58:37",
+ "gitrepo": false,
+ "id": 58582,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57906,
+ "object_name": "Golomb, David [golomb at bgu.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 58583,
+ "object_name": "Golomb D, Ahissar E, Kleinfeld D (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Coding of stimulus frequency by latency in thalamic networks (Golomb et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper presents models of the rat vibrissa processing system including the\r\nposterior medial (POm) thalamus, ventroposterior medial (VPm) thalamus, and GABAB-\r\nmediated feedback inhibition from the reticular thalamic (Rt) nucleus.\r\nA clear match between the experimentally measured spike-rates and the\r\nnumerically calculated rates for the full model occurs when VPm thalamus receives stronger\r\nbrainstem input and weaker GABAB-mediated inhibition than POm thalamus."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/58582",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Rate models"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "golomb@bgu.ac.il"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2008-10-09T10:52:11",
+ "ver_number": 9
+ },
+ "58957": {
+ "class_id": 19,
+ "created": "2005-11-11T12:53:13",
+ "gitrepo": false,
+ "id": 58957,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 58958,
+ "object_name": "Bui, Tuan V [tuan at biomed.queensu.ca]"
+ },
+ {
+ "object_id": 58959,
+ "object_name": "Fyffe, Robert EW [robert.fyffe at wright.edu]"
+ },
+ {
+ "object_id": 58960,
+ "object_name": "Dewey, Dianne E [dianne.dewey at wright.edu]"
+ },
+ {
+ "object_id": 58961,
+ "object_name": "Rose, P Ken [ken at biomed.queensu.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 56313,
+ "object_name": "Bui TV, Dewey DE, Fyffe RE, Rose PK (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 58962,
+ "object_name": "SABER"
+ }
+ ]
+ },
+ "name": "Proximal inhibition of Renshaw cells (Bui et al 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Inhibitory synaptic inputs to Renshaw cells are concentrated on the\r\nsoma and the juxtasomatic dendrites. In the present study, we \r\ninvestigated whether this proximal bias leads to more effective \r\ninhibition under different neuronal operating conditions. Using \r\ncompartmental models based on detailed anatomical measurements of \r\nintracellularly stained Renshaw cells, we compared the inhibition \r\nproduced by GABAA synapses when\r\ndistributed with a proximal bias to the inhibition produced when the \r\nsame synapses were distributed uniformly. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/58957",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ },
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "ver_date": "2005-11-11T16:04:58",
+ "ver_number": 13
+ },
+ "59479": {
+ "class_id": 19,
+ "created": "2005-11-28T18:52:58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 59479,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 48507,
+ "object_name": "Fernandez FR [ffernand at ucalgary.ca]"
+ },
+ {
+ "object_id": 48508,
+ "object_name": "Mehaffey WH "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 59478,
+ "object_name": "Molineux ML, Fernandez FR, Mehaffey WH, Turner RW (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "IA and IT interact to set first spike latency (Molineux et al 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Using patch clamp and modeling, we illustrate that spike latency characteristics are the product of an interplay between I(A) and low-threshold calcium current (I(T)) that requires a steady-state difference in the inactivation parameters of the currents. Furthermore, we show that the unique first-spike latency characteristics of stellate cells have important implications for the integration of coincident IPSPs and EPSPs, such that inhibition can shift first-spike latency to differentially modulate the probability of firing."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/59479",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cerebellar stellate cell"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 86
+ },
+ "ver_date": "2005-11-29T16:23:34",
+ "ver_number": 6
+ },
+ "59480": {
+ "class_id": 19,
+ "created": "2005-11-28T18:54:41",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 59480,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 48507,
+ "object_name": "Fernandez FR [ffernand at ucalgary.ca]"
+ },
+ {
+ "object_id": 48508,
+ "object_name": "Mehaffey WH "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 59477,
+ "object_name": "Fernandez FR, Mehaffey WH, Turner RW (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Dendritic Na inactivation drives a decrease in ISI (Fernandez et al 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88116,
+ "object_name": "ELL pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We use a combination of dynamical analysis and electrophysiological recordings to demonstrate that spike broadening in dendrites is primarily caused by a cumulative inactivation of dendritic Na(+) current. We further show that a reduction in dendritic Na(+) current increases excitability by decreasing the interspike interval (ISI) and promoting burst firing."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/59480",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "ELL pyramidal neurons"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 82
+ },
+ "ver_date": "2007-04-13T16:01:13",
+ "ver_number": 14
+ },
+ "59581": {
+ "class_id": 19,
+ "created": "2005-12-03T11:28:06",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 59581,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33787,
+ "object_name": "Graham, Bruce [B.Graham at cs.stir.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 59590,
+ "object_name": "Graham BP, Lauchlan K, Mclean DR (2006)"
+ },
+ {
+ "object_id": 83586,
+ "object_name": "Graham BP, van Ooyen A (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Continuum model of tubulin-driven neurite elongation (Graham et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This model investigates the elongation over time of a single developing neurite (axon or dendrite). Our neurite growth model describes the elongation of a single,unbranched neurite in terms of the rate of extension of the microtubule cytoskeleton. The cytoskeleton is not explicitly modelled, but its construction is assumed to depend on the\r\navailable free tubulin at the growing neurite tip."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/59581",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Development"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Generic"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Neurite"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 81
+ },
+ "ver_date": "2018-10-17T15:42:47.86",
+ "ver_number": 8
+ },
+ "59582": {
+ "class_id": 19,
+ "created": "2005-12-03T11:38:33",
+ "gitrepo": false,
+ "id": 59582,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33787,
+ "object_name": "Graham, Bruce [B.Graham at cs.stir.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 59589,
+ "object_name": "Graham BP, van Ooyen A (2004)"
+ },
+ {
+ "object_id": 83586,
+ "object_name": "Graham BP, van Ooyen A (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ }
+ ]
+ },
+ "name": "Compartmental models of growing neurites (Graham and van Ooyen 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulator for models of neurite outgrowth. The principle model is a biophysical model of neurite outgrowth described in Graham and van Ooyen (2004). In the model, branching depends on the concentration of a branch-determining substance in each terminal segment. The substance is produced in the cell body and is transported by active transport and diffusion to the terminals. The model reveals that transport-limited effects may give rise to the same modulation of branching as indicated by the stochastic BESTL model. Different limitations arise if transport is dominated by active transport or by diffusion."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/59582",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Development"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Neurite"
+ },
+ "ver_date": "2015-07-26T11:21:20.857",
+ "ver_number": 8
+ },
+ "62266": {
+ "class_id": 19,
+ "created": "2005-12-28T17:11:38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 62266,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 62267,
+ "object_name": "Safronov, Boris [safronov at ibmc.up.pt]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4019,
+ "object_name": "Safronov BV, Wolff M, Vogel W (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "62266",
+ "name": "ModelView"
+ }
+ ],
+ "default": "62266"
+ },
+ "name": "Excitability of the soma in central nervous system neurons (Safronov et al 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The ability of the soma of a spinal dorsal horn neuron, a spinal ventral horn neuron, and a hippocampal pyramidal neuron to generate action potentials was studied using experiments and computer simulations. By comparing recordings ... of a dorsal horn neuron with simulated responses, it was shown that computer models can be adequate for the study of somatic excitability. The modeled somata of both spinal neurons were unable to generate action potentials, showing only passive and local responses to current injections. ... In contrast to spinal neurons, the modeled soma of the hippocampal pyramidal neuron generated spikes with an overshoot of +9 mV. It is concluded that the somata of spinal neurons cannot generate action potentials and seem to resist their propagation from the axon to dendrites. ... See paper for more and details.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62266",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181635,
+ "object_name": "62266"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 241
+ },
+ "ver_date": "2014-02-07T11:51:17",
+ "ver_number": 10
+ },
+ "62268": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 118518,
+ "object_name": "backup of web link model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2006-01-03T14:46:21",
+ "gitrepo": false,
+ "id": 62268,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 62269,
+ "object_name": "Miller, Paul [pmiller at brandeis.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 62270,
+ "object_name": "Miller P, Wang XJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Inhibitory control by an integral feedback signal in prefrontal cortex (Miller and Wang 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The prefrontal cortex (PFC) is known to be critical for inhibitory\r\ncontrol of behavior, but the underlying mechanisms are unclear.\r\nHere, we propose that inhibitory control can be instantiated by an\r\nintegral signal derived from working memory, another key function of the PFC. Specifically, we assume that an integrator converts\r\nexcitatory input into a graded mnemonic activity that provides an\r\ninhibitory signal (integral feedback control) to upstream afferent\r\nneurons. We demonstrate this scenario in a neuronal-network\r\nmodel for a temporal discrimination task... See paper for details\r\nand more.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62268",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2013-01-15T10:35:45",
+ "ver_number": 17
+ },
+ "62272": {
+ "biosimulations": {
+ "value": "modeldb-62272"
+ },
+ "class_id": 19,
+ "created": "2006-01-04T10:59:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122823,
+ "object_name": "Kir6.2 KCNJ11"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 62272,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 62276,
+ "object_name": "Wu SN, Chang HD (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "A model for pituitary GH(3) lactotroph (Wu and Chang 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The ATP-sensitive K(+) (K(ATP)) channels are composed of sulfonylurea receptor and inwardly rectifying K(+) channel (Kir6.2) subunit. These channels are regulated by intracellular ADP/ATP ratio and play a role in cellular metabolism. ... The objective of this study was to determine whether Diethyl pyrocarbonate (DEPC) modifies K(ATP)-channel activity in pituitary GH(3) cells. ... Simulation studies also demonstrated that the increased conductance of K(ATP)-channels used to mimic DEPC actions reduced the frequency of spontaneous action potentials and fluctuation of intracellular Ca(2+). The results indicate that chemical modification with DEPC enhances K(ATP)-channel activity and influences functional activities of pituitary GH(3) cells. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62272",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "IK(ATP)"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sheng-Nan Wu, Han-Dong Chang"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Pituitary cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T11:25:08.303",
+ "ver_number": 16
+ },
+ "62284": {
+ "class_id": 19,
+ "created": "2006-01-05T11:28:07",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 62284,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 62267,
+ "object_name": "Safronov, Boris [safronov at ibmc.up.pt]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 62283,
+ "object_name": "Melnick IV, Santos SF, Safronov BV (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "62284",
+ "name": "ModelView"
+ }
+ ],
+ "default": "62284"
+ },
+ "name": "Spike frequency adaptation in spinal sensory neurones (Melnick et al 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Using tight-seal recordings from rat spinal cord slices, intracellular\r\nlabelling and computer simulation, we analysed the mechanisms of spike\r\nfrequency adaptation in substantia gelatinosa (SG)\r\nneurones. Adapting-firing neurones (AFNs) generated short bursts of\r\nspikes during sustained depolarization and were mostly found in\r\nlateral SG. ... Ca2 + -dependent conductances do not contribute to\r\nadapting firing. Transient KA current was small and completely\r\ninactivated at resting potential suggesting that adapting firing was\r\nmainly generated by voltage-gated Na+ and delayed-rectifier K+ (KDR )\r\ncurrents. ... Computer simulation has further revealed that\r\ndown-regulation of Na+ conductance represents an effective mechanism\r\nfor the induction of firing adaptation. It is suggested that the\r\ncell-specific regulation of Na+ channel expression can be an important\r\nfactor underlying the diversity of firing patterns in SG neurones.\r\nSee paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62284",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Spinal sensory neuron"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 486
+ },
+ "ver_date": "2017-05-22T12:21:00.493",
+ "ver_number": 13
+ },
+ "62285": {
+ "class_id": 19,
+ "created": "2006-01-05T14:20:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 62285,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 62267,
+ "object_name": "Safronov, Boris [safronov at ibmc.up.pt]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 46382,
+ "object_name": "Melnick IV, Santos SF, Szokol K, Sz\u00fbcs P, Safronov BV (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "62285",
+ "name": "ModelView"
+ }
+ ],
+ "default": "62285"
+ },
+ "name": "Tonic firing in substantia gelatinosa neurons (Melnick et al 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Ionic conductances underlying excitability in tonically firing neurons\r\n(TFNs) from substantia gelatinosa (SG) were studied by the patch-clamp\r\nmethod in rat spinal cord slices. ... Suppression of Ca2+ and KCA currents ... did not\r\nabolish the basic pattern of tonic firing, indicating that it was\r\ngenerated by voltage-gated Na+ and K+ currents. ...\r\n on the basis of present data, we created a model of TFN\r\nand showed that Na+ and KDR currents are sufficient to generate a\r\nbasic pattern of tonic firing. It is concluded that the balanced\r\ncontribution of all ionic conductances described here is important for\r\ngeneration and modulation of tonic firing in SG neurons. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62285",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181603,
+ "object_name": "62285"
+ }
+ ]
+ },
+ "ver_date": "2017-05-22T12:29:43.85",
+ "ver_number": 16
+ },
+ "62286": {
+ "class_id": 19,
+ "created": "2006-01-05T21:04:33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 62286,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 60186,
+ "object_name": "Greenstein JL, Hinch R, Winslow RL (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Excitation-contraction coupling in an integrative heart cell model (Greenstein et al 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ },
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In this study, we generalize a recently developed analytical\r\napproach for deriving simplified mechanistic models of CICR\r\n(Ca(2+)-induced Ca(2+) release) to formulate an integrative model of\r\nthe canine cardiac myocyte which is computationally efficient. The\r\nresulting model faithfully reproduces experimentally measured\r\nproperties of EC (excitation-contraction) coupling and whole cell\r\nphenomena. The model is used to study the role of local redundancy in\r\nL-type Ca(2+) channel gating and the role of dyad configuration on EC\r\ncoupling. Simulations suggest that the characteristic steep rise in EC\r\ncoupling gain observed at hyperpolarized potentials is a result of\r\nincreased functional coupling between LCCs (L-type Ca(2+) channels)\r\nand RyRs (ryanodine-sensitive Ca(2+) release channels). We also\r\ndemonstrate mechanisms by which alterations in the early\r\nrepolarization phase of the action potential, resulting from reduction\r\nof the transient outward potassium current, alters properties of EC\r\ncoupling.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62286",
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "Ryanodine"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-21T18:20:25.67",
+ "ver_number": 16
+ },
+ "62287": {
+ "biosimulations": {
+ "value": "modeldb-62287"
+ },
+ "class_id": 19,
+ "created": "2006-01-07T05:29:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122803,
+ "object_name": "Kv4.3 KCND3"
+ },
+ {
+ "object_id": 122804,
+ "object_name": "Kv1.4 KCNA4"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 62287,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58177,
+ "object_name": "Wu, Jiun-Shian [coolneon at gmail.com]"
+ },
+ {
+ "object_id": 62652,
+ "object_name": "Sung, Ruey J "
+ },
+ {
+ "object_id": 62653,
+ "object_name": "Wang, Ya-Jean "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 60284,
+ "object_name": "Greenstein JL, Wu R, Po S, Tomaselli GF, Winslow RL (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Kv4.3, Kv1.4 encoded K(+) channel in heart cells (Greenstein et al 2000) (XPP)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A model of canine I:(to1) (the Ca(2+)-independent transient outward current) is formulated as the combination of Kv4.3 and Kv1.4 \r\ncurrents and is incorporated into an existing canine ventricular myocyte model. Simulations demonstrate strong \r\ncoupling between L-type Ca(2+) current and I:(Kv4.3) and predict a bimodal relationship between I:(Kv4.3) \r\ndensity and APD whereby perturbations in I:(Kv4.3) density may produce either prolongation or shortening of APD, \r\ndepending on baseline I:(to1) current level.\r\nThe model files were submitted by:\r\nDr. Sheng-Nan Wu, Dr. Ruey J. Sung, Ya-Jean Wang and Jiun-Shian Wu\r\ne-mail: snwu@mail.ncku.edu.tw\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62287",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dr. Ruey J. Sung, Ya-Jean Wang and Jiun-Shian Wu"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "heart cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2009-07-13T10:53:49",
+ "ver_number": 6
+ },
+ "62654": {
+ "class_id": 19,
+ "created": "2006-01-09T15:11:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 62654,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 62655,
+ "object_name": "Bassingthwaighte, James"
+ },
+ {
+ "object_id": 62656,
+ "object_name": "Li, Zheng "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 60284,
+ "object_name": "Greenstein JL, Wu R, Po S, Tomaselli GF, Winslow RL (2000)"
+ },
+ {
+ "object_id": 62288,
+ "object_name": "Winslow RL, Rice J, Jafri S, Marb\u00e1n E, O'Rourke B (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ }
+ ]
+ },
+ "name": "Kv4.3, Kv1.4 encoded K channel in heart cells & tachy. (Winslow et al 1999, Greenstein et al 2000)",
+ "notes": {
+ "attr_id": 24,
+ "value": "(1999) We present a model of the canine midmyocardial ventricular action potential and Ca2+ transient. The model is used to estimate the degree of functional upregulation and downregulation of Na/Ca exchanger protein and sarcoplasmic reticulum Ca ATPase in heart failure using data obtained from 2 different experimental protocols.\r\n(2000): A model of canine I:(to1) (the Ca(2+)-independent transient outward current) is formulated as the combination of Kv4.3 and Kv1.4 \r\ncurrents and is incorporated into an existing canine ventricular myocyte model. Simulations demonstrate strong \r\ncoupling between L-type Ca(2+) current and I:(Kv4.3) and predict a bimodal relationship between I:(Kv4.3) \r\ndensity and APD whereby perturbations in I:(Kv4.3) density may produce either prolongation or shortening of APD, \r\ndepending on baseline I:(to1) current level.\r\nSee each paper for more and details.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62654",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Kv4.3, Kv1.4"
+ },
+ "ver_date": "2006-01-09T18:29:49",
+ "ver_number": 16
+ },
+ "62661": {
+ "biosimulations": {
+ "value": "modeldb-62661"
+ },
+ "class_id": 19,
+ "created": "2006-01-11T22:42:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 62661,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ },
+ {
+ "object_id": 58177,
+ "object_name": "Wu, Jiun-Shian [coolneon at gmail.com]"
+ },
+ {
+ "object_id": 62652,
+ "object_name": "Sung, Ruey J "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 88213,
+ "object_name": "Brugada"
+ },
+ {
+ "object_id": 88214,
+ "object_name": "Long-QT"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 62664,
+ "object_name": "Clancy CE, Rudy Y (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Markovian model for cardiac sodium channel (Clancy, Rudy 2002)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Complex physiological interactions determine the functional consequences of gene abnormalities and make mechanistic interpretation of phenotypes extremely difficult. A recent example is a single mutation in the C terminus of the cardiac Na(+) channel, 1795insD. The mutation causes two distinct clinical syndromes, long QT (LQT) and Brugada, leading to life-threatening cardiac arrhythmias. Coexistence of these syndromes is seemingly paradoxical; LQT is associated with enhanced Na(+) channel function, and Brugada with reduced function. Using a computational approach, we demonstrate that the 1795insD mutation exerts variable effects depending on the myocardial substrate. We develop Markov models of the wild-type and 1795insD cardiac Na(+) channels. See reference for more and details. The model files were submitted by: Dr. Jiun-Shian Wu, Dr. Sheng-Nan Wu, Dr. Ruey J. Sung, Han-Dong Chang."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62661",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Jiun-Shian Wu, Sheng-Nan Wu, Ruey J. Sung, Han-Dong Chang"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Heart cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu"
+ },
+ "ver_date": "2018-02-26T11:01:27.257",
+ "ver_number": 11
+ },
+ "62673": {
+ "class_id": 19,
+ "created": "2006-01-16T10:43:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 62673,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 62674,
+ "object_name": "Baranauskas, Gytis [baranauskas at elet.polimi.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 62662,
+ "object_name": "Baranauskas G, Martina M (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "62673",
+ "name": "ModelView"
+ }
+ ],
+ "default": "62673"
+ },
+ "name": "Sodium currents activate without a delay (Baranauskas and Martina 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Hodgkin and Huxley established that sodium currents in the squid giant\r\naxons activate after a delay, which is explained by the model of a\r\nchannel with three identical independent gates that all have to open\r\nbefore the channel can pass current (the HH model). It is assumed that\r\nthis model can adequately describe the sodium current activation time\r\ncourse in all mammalian central neurons, although there is no\r\nexperimental evidence to support such a conjecture. We performed high\r\ntemporal resolution studies of sodium currents gating in three types\r\nof central neurons. ... These results can be explained by a model with\r\ntwo closed states and one open state. ... This\r\nmodel captures all major properties of the sodium current\r\nactivation. In addition, the proposed model reproduces the observed\r\naction potential shape more accurately than the traditional HH model.\r\nSee paper for more and details.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62673",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181828,
+ "object_name": "62673"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 609
+ },
+ "ver_date": "2014-02-25T01:09:02",
+ "ver_number": 14
+ },
+ "62676": {
+ "biosimulations": {
+ "value": "modeldb-62676"
+ },
+ "class_id": 19,
+ "created": "2006-01-20T04:36:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 62676,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ },
+ {
+ "object_id": 58177,
+ "object_name": "Wu, Jiun-Shian [coolneon at gmail.com]"
+ },
+ {
+ "object_id": 62652,
+ "object_name": "Sung, Ruey J "
+ },
+ {
+ "object_id": 62678,
+ "object_name": "Lai, Hsing-Jung "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 141450,
+ "object_name": "Cardiac pacemaking"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 62677,
+ "object_name": "Matsuoka S, Sarai N, Kuratomi S, Ono K, Noma A (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Markovian model for single-channel recordings of Ik_1 in ventricular cells (Matsuoka et al 2003)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The interaction between many currents in a cardiac ventricular model are examined in this paper. One of the main contributions come from a current called IK_1. An XPP version of this model was supplied by\r\nHsieng-Jung Lai, Jiun-Shian Wu, Sheng-Nan Wu, Ruey J. Sung, Han-Dong\r\nChang. Please see paper and model for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/62676",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2018-02-26T11:01:57.51",
+ "ver_number": 16
+ },
+ "64167": {
+ "class_id": 19,
+ "created": "2006-02-17T10:34:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 64167,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33779,
+ "object_name": "Spruston, Nelson [Spruston at Northwestern.edu]"
+ },
+ {
+ "object_id": 64168,
+ "object_name": "Golding, Nace L [golding at mail.utexas.edu]"
+ },
+ {
+ "object_id": 64169,
+ "object_name": "Kath, William L [kath at northwestern.edu]"
+ },
+ {
+ "object_id": 64172,
+ "object_name": "Mickus, Timothy "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3886,
+ "object_name": "Golding NL, Kath WL, Spruston N (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Dichotomy of action-potential backpropagation in CA1 pyramidal neuron dendrites (Golding et al 2001)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "From reference below and \r\nCorrigendum: J Neurophysiol 87:1a, 2002 (better versions of figures 2, 3, 5 and 7 because of poor print quality in the original article; as of 2/2006, these figures are perfectly fine in the PDF of the original article that is currently available from the publisher's WWW site).\r\nExamines the anatomical and biophysical factors that account for the fact that retrograde invasion of spikes into the apical dendritic tree past 300 um succeeds in some CA1 pyramidal neurons but fails in others."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64167",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Golding, Nace L., Kath, William L."
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "ver_date": "2012-09-05T16:57:31",
+ "ver_number": 12
+ },
+ "64170": {
+ "class_id": 19,
+ "created": "2006-02-19T20:09:38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 64170,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33779,
+ "object_name": "Spruston, Nelson [Spruston at Northwestern.edu]"
+ },
+ {
+ "object_id": 64168,
+ "object_name": "Golding, Nace L [golding at mail.utexas.edu]"
+ },
+ {
+ "object_id": 64169,
+ "object_name": "Kath, William L [kath at northwestern.edu]"
+ },
+ {
+ "object_id": 64172,
+ "object_name": "Mickus, Timothy "
+ },
+ {
+ "object_id": 64173,
+ "object_name": "Katz, Yael [y-katz at northwestern.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64166,
+ "object_name": "Golding NL, Mickus TJ, Katz Y, Kath WL, Spruston N (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Voltage attenuation in CA1 pyramidal neuron dendrites (Golding et al 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Voltage attenuation in the apical dendritic field of CA1 pyramidal neurons is particularly strong for epsps spreading toward the soma. High cytoplasmic resistivity and high membrane (leak) conductance appear to be the major determinants of voltage attenuation over most of the apical field, but H current may be responsible for as much as half of the attenuation of distal apical epsps."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64170",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "see my email"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Mickus, Tim\r\nKatz, Yael"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2012-09-05T16:45:42",
+ "ver_number": 11
+ },
+ "64171": {
+ "biosimulations": {
+ "value": "modeldb-64171"
+ },
+ "class_id": 19,
+ "created": "2006-02-19T21:44:35",
+ "gitrepo": false,
+ "id": 64171,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 62652,
+ "object_name": "Sung, Ruey J "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 55860,
+ "object_name": "Luo CH, Rudy Y (1991)"
+ },
+ {
+ "object_id": 64176,
+ "object_name": "Wu SN (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Cardiac action potential based on Luo-Rudy phase 1 model (Luo and Rudy 1991), (Wu 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ },
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A mathematical model of the membrane action potential of the mammalian \r\nventricular cell is introduced. The model is based, whenever possible, \r\non recent single-cell and single-channel data and incorporates the \r\npossibility of changing extracellular potassium concentration [K]o. The \r\nfast sodium current, INa, is characterized by fast upstroke velocity (Vmax \r\n= 400 V/sec) and slow recovery from inactivation. The time-independent \r\npotassium current, IK1, includes a negative-slope phase and displays \r\nsignificant crossover phenomenon as [K]o is varied. The time-dependent \r\npotassium current, IK, shows only a minimal degree of crossover. A novel \r\npotassium current that activates at plateau potentials is included in \r\nthe model. The simulated action potential duplicates the experimentally \r\nobserved effects of changes in [K]o on action potential duration and rest \r\npotential. See papers for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64171",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Drs. Sheng-Nan Wu and Ruey J Sung"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Heart cells"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu"
+ },
+ "ver_date": "2007-04-13T16:44:34",
+ "ver_number": 8
+ },
+ "64195": {
+ "class_id": 19,
+ "created": "2006-03-07T14:52:38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 64195,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64249,
+ "object_name": "Hallermann, Stefan [hallermann at medizin.uni-leipzig.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64233,
+ "object_name": "Kole MH, Hallermann S, Stuart GJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "64195_1",
+ "name": "fig6B simulation"
+ },
+ {
+ "id": "64195_2",
+ "name": "Short run simulation"
+ }
+ ],
+ "default": "64195_1"
+ },
+ "name": "Stochastic Ih and Na-channels in pyramidal neuron dendrites (Kole et al 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The hyperpolarization-activated cation current (Ih) plays an important role in regulating neuronal excitability, yet its native single-channel properties in the brain are essentially unknown. Here we use variance-mean analysis to study the properties of single Ih channels in the apical dendrites of cortical layer 5 pyramidal neurons in vitro. ... In contrast to the uniformly distributed single-channel conductance, Ih channel number increases exponentially with distance, reaching densities as high as approximately 550 channels/microm2 at distal dendritic sites. These high channel densities generate significant membrane voltage noise. By incorporating a stochastic model of Ih single-channel gating into a morphologically realistic model of a layer 5 neuron, we show that this channel noise is higher in distal dendritic compartments and increased threefold with a 10-fold increased single-channel conductance (6.8 pS) but constant Ih current density. ... These data suggest that, in the face of high current densities, the small single-channel conductance of Ih is critical for maintaining the fidelity of action potential output. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64195",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I h"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hallermann, Stefan"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181668,
+ "object_name": "64195_2"
+ },
+ {
+ "object_id": 181669,
+ "object_name": "64195_1"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:06:54",
+ "ver_number": 20
+ },
+ "64212": {
+ "class_id": 19,
+ "created": "2006-03-14T02:23:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 64212,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64213,
+ "object_name": "Shimazaki, Ranken "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64236,
+ "object_name": "Shimazaki R, Boccaccio A, Mazzatenta A, Pinato G, Migliore M, Menini A (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "64212",
+ "name": "ModelView"
+ }
+ ],
+ "default": "64212"
+ },
+ "name": "Vomeronasal sensory neuron (Shimazaki et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON model files from the papers:\r\nShimazaki et al, Chem. Senses, epub ahead of print (2006)\r\nElectrophysiological properties and modeling of murine vomeronasal \r\nsensory neurons in acute slice preparations.\r\n\r\nThe model reproduces quantitatively the experimentally observed \r\nfiring rates of these neurons under a wide range of input currents."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64212",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Shimazaki, Ranken"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Vomeronasal sensory neuron"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181802,
+ "object_name": "64212"
+ }
+ ]
+ },
+ "ver_date": "2014-02-06T16:25:11",
+ "ver_number": 10
+ },
+ "64216": {
+ "class_id": 19,
+ "created": "2006-03-15T13:55:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 64216,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64217,
+ "object_name": "Kourennyi, Dmitri E [dek at case.edu]"
+ },
+ {
+ "object_id": 64218,
+ "object_name": "Liu, Xiaodong [xliu22 at jhmi.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 41597,
+ "object_name": "Kourennyi DE, Liu XD, Hart J, Mahmud F, Baldridge WH, Barnes S (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "64216",
+ "name": "Init & Run"
+ }
+ ],
+ "default": "64216"
+ },
+ "name": "Reciprocal regulation of rod and cone synapse by NO (Kourennyi et al 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 226,
+ "object_name": "NO"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We constructed models of rod and cone photoreceptors\r\nusing NEURON software to predict how changes in Ca channels\r\nwould affect the light response in these cells and in\r\npostsynaptic horizontal cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64216",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181801,
+ "object_name": "64216"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 320
+ },
+ "ver_date": "2018-10-17T16:41:41.913",
+ "ver_number": 13
+ },
+ "64228": {
+ "class_id": 19,
+ "created": "2006-03-16T19:20:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 64228,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64217,
+ "object_name": "Kourennyi, Dmitri E [dek at case.edu]"
+ },
+ {
+ "object_id": 64218,
+ "object_name": "Liu, Xiaodong [xliu22 at jhmi.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64215,
+ "object_name": "Liu XD, Kourennyi DE (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "64228_1",
+ "name": "Fig5_IVCompare"
+ },
+ {
+ "id": "64228_2",
+ "name": "fig 8B. AP_BR"
+ },
+ {
+ "id": "64228_3",
+ "name": "fig 8D. AP_DIM"
+ },
+ {
+ "id": "64228_4",
+ "name": "Kx_BR"
+ },
+ {
+ "id": "64228_5",
+ "name": "Kx_DIM"
+ },
+ {
+ "id": "64228_6",
+ "name": "Fig9_AP_Patterns"
+ }
+ ],
+ "default": "64228_1"
+ },
+ "name": "Simulated light response in rod photoreceptors (Liu and Kourennyi 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed a complete computer model of the rod, which accurately reproduced the main features of the light response and allowed us to demonstrate that it was suppression of Kx channels that was essential for slowing SLR and increasing excitability of rods. The results reported in this work further establish the importance of Kx channels in rod photoreceptor function."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64228",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181815,
+ "object_name": "64228_1"
+ },
+ {
+ "object_id": 181816,
+ "object_name": "64228_2"
+ },
+ {
+ "object_id": 181817,
+ "object_name": "64228_3"
+ },
+ {
+ "object_id": 181818,
+ "object_name": "64228_4"
+ },
+ {
+ "object_id": 181819,
+ "object_name": "64228_5"
+ },
+ {
+ "object_id": 181820,
+ "object_name": "64228_6"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 340
+ },
+ "ver_date": "2015-01-02T22:30:43",
+ "ver_number": 9
+ },
+ "64229": {
+ "class_id": 19,
+ "created": "2006-03-18T20:42:02",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 64229,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64230,
+ "object_name": "Migliore M, Cannia C, Lytton WW, Markram H, Hines ML (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Parallel network simulations with NEURON (Migliore et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The NEURON simulation environment has been extended to support parallel network simulations.\r\nThe performance of three published network models with very different spike patterns exhibits superlinear speedup on Beowulf clusters.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64229",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.hines@yale.edu"
+ },
+ "ver_date": "2022-05-27T18:19:13.74",
+ "ver_number": 15
+ },
+ "64242": {
+ "class_id": 19,
+ "created": "2006-03-27T17:11:46",
+ "gitrepo": false,
+ "id": 64242,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64246,
+ "object_name": "Cannon, Robert C [Robert.C.Cannon at gmail.com]"
+ },
+ {
+ "object_id": 64247,
+ "object_name": "Koene, Randal A [randalk at bu.edu]"
+ },
+ {
+ "object_id": 64248,
+ "object_name": "Hasselmo, Michael E [hasselmo at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64244,
+ "object_name": "Cannon RC, Hasselmo ME, Koene RA (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 64245,
+ "object_name": "Catacomb (web link to model)"
+ }
+ ]
+ },
+ "name": "Biologically-plausible models for spatial navigation (Cannon et al 2003)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Hypotheses about how parahippocampal and hippocampal structures may be involved in spatial navigation tasks are implemented in a model of a virtual rat navigating through a virtual environment in search of a food reward. The model incorporates theta oscillations to separate encoding from retrieval and yields testable predictions about the phase relations of spiking activity to theta oscillations in different parts of the hippocampal formation at various stages of the behavioral task. See paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64242",
+ "ver_date": "2017-06-02T17:00:49.513",
+ "ver_number": 16
+ },
+ "64255": {
+ "class_id": 19,
+ "created": "2006-03-30T03:30:41",
+ "gitrepo": false,
+ "id": 64255,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64256,
+ "object_name": "Leblois, Arthur [leblois at clipper.ens.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64251,
+ "object_name": "Leblois A, Boraud T, Meissner W, Bergman H, Hansel D (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A dynamical model of the basal ganglia (Leblois et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We propose a new model for the function and dysfunction of the basal ganglia (BG). \r\nThe basal ganglia are a set of cerebral structures involved in motor control which \r\ndysfunction causes high-incidence pathologies such as Parkinson's disease (PD). \r\nTheir precise motor functions remain unknown. \r\nThe classical model of the BG that allowed for the discovery of new treatments \r\nfor PD seems today outdated in several respects. \r\nBased on experimental observations, our model proposes a simple dynamical framework \r\nfor the understanding of how BG may select motor programs to be executed. Moreover, \r\nwe explain how this ability is lost and how tremor-related oscillations in neuronal \r\nactivity may emerge in PD. \r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64255",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Leblois, arthur "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "leblois@clipper.ens.fr"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 58
+ },
+ "ver_date": "2008-10-07T09:19:15",
+ "ver_number": 8
+ },
+ "64259": {
+ "class_id": 19,
+ "created": "2006-04-01T03:16:05",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 64259,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64260,
+ "object_name": "Rudolph M, Destexhe A (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "64259",
+ "name": "ModelView"
+ }
+ ],
+ "default": "64259"
+ },
+ "name": "Steady-state Vm distribution of neurons subject to synaptic noise (Rudolph, Destexhe 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This package simulates synaptic background activity similar to in vivo measurements using a model of fluctuating synaptic conductances, and compares the simulations with analytic estimates. The steady-state membrane potential (Vm) distribution is calculated numerically and compared with the \"extended\" analytic expression provided in the reference (see this paper for details)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64259",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Synaptic noise"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortical pyramidal neuron (generic)"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "AMPA and GabaA"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "passive 1cpt model"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2022-12-16T10:40:00.913",
+ "ver_number": 9
+ },
+ "64261": {
+ "class_id": 19,
+ "created": "2006-04-12T09:39:20",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 64261,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33739,
+ "object_name": "Davison, Andrew [Andrew.Davison at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64294,
+ "object_name": "Davison AP, Fr\u00e9gnac Y (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "64261",
+ "name": "ModelView"
+ }
+ ],
+ "default": "64261"
+ },
+ "name": "Learning spatial transformations through STDP (Davison, Fr\u00e9gnac 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A common problem in tasks involving the integration of spatial information from multiple senses, or in sensorimotor coordination, is that different modalities represent space in different frames of reference. Coordinate transformations between different reference frames are therefore required. One way to achieve this relies on the encoding of spatial information using population codes. The set of network responses to stimuli in different locations (tuning curves) constitute a basis set of functions which can be combined\r\nlinearly through weighted synaptic connections in order to approximate non-linear transformations of the input variables. The question then arises how the appropriate synaptic connectivity is obtained. \r\n\r\nThis model shows that a network of spiking neurons can learn the coordinate transformation from one frame of reference to another, with connectivity that develops continuously in an unsupervised manner, based only on the correlations available in the environment, and with a biologically-realistic plasticity mechanism (spike timing-dependent plasticity)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64261",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181877,
+ "object_name": "64261"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 272
+ },
+ "ver_date": "2014-02-15T23:23:23",
+ "ver_number": 14
+ },
+ "64266": {
+ "class_id": 19,
+ "created": "2006-04-26T12:05:47",
+ "gitrepo": false,
+ "id": 64266,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64267,
+ "object_name": "Butts, Dan [daniel_butts at hms.harvard.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64204,
+ "object_name": "Lu HC, Butts DA, Kaeser PS, She WC, Janz R, Crair MC (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Simple model of barrel-specific segregation in cortex (Lu et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Mice with a loss-of-function mutation of calcium/calmodulin-activated adenylyl cyclase I (AC1) - barrelless mice - have strikingly abherrent cortical development: the thalamic afferents into the barrel cortex do not segregate into whisker-specific barrels. Our paper investigates the link between this mutation and the \"barrelless\" phenotype, and demonstrates that the loss-of-function mutation leads to deficits in presynaptic mechanisms at the thalamocortical synapse.\r\n\r\nHow might presynaptic deficits disrupt whisker-specific segregation in the barrel cortex? We used a model to demonstrate one possibility: decrease in the release probability at the thalamocortical synapse (which is observed in the barrelless mutant) can influence the balance between LTP and LTD (in favor of LTD), which can disrupt whisker segregaton. Though how this occurs is easily explained with a conceptual model (described succinctly in the associated paper), we also produced a computational simulation of this phenomenon."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64266",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Generic layer 4 cortical neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dbutts@deas.harvard.edu"
+ },
+ "ver_date": "2006-04-26T13:37:52",
+ "ver_number": 8
+ },
+ "64285": {
+ "class_id": 19,
+ "created": "2006-05-17T21:56:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 64285,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 56008,
+ "object_name": "Kuznetsov AS, Kopell NJ, Wilson CJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Dopaminergic cell bursting model (Kuznetsov et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Dopaminergic neurons of the midbrain fire spontaneously at rates\r\n<10/s and ordinarily will not exceed this range even when driven with\r\nsomatic current injection. During spontaneous\r\nbursting of dopaminergic neurons in vivo, bursts related to reward\r\nexpectation in behaving animals, and bursts generated by dendritic\r\napplication of N-methyl-D-aspartate (NMDA) agonists, transient firing\r\nattains rates well above this range. We suggest a way such highfrequency\r\nfiring may occur in response to dendritic NMDA receptor\r\nactivation. We have extended the coupled oscillator model of the\r\ndopaminergic neuron, which represents the soma and dendrites as\r\nelectrically coupled compartments with different natural spiking frequencies,\r\nby addition of dendritic AMPA (voltage-independent) or\r\nNMDA (voltage-dependent) synaptic conductance. Both soma and\r\ndendrites contain a simplified version of the calcium-potassium mechanism\r\nknown to be the mechanism for slow spontaneous oscillation\r\nand background firing in dopaminergic cells. We show that because of its voltage dependence,\r\nNMDA receptor activation acts to amplify the effect on the\r\nsoma of the high-frequency oscillation of the dendrites, which is\r\nnormally too weak to exert a large influence on the overall oscillation\r\nfrequency of the neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64285",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tmm46@email.med.yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2006-05-17T21:58:55",
+ "ver_number": 2
+ },
+ "64296": {
+ "class_id": 19,
+ "created": "2006-05-31T14:27:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 64296,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64298,
+ "object_name": "Rubin, Daniel B "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64297,
+ "object_name": "Rubin DB, Cleland TA (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "64296_1",
+ "name": "Figure 2A Top Trace"
+ },
+ {
+ "id": "64296_2",
+ "name": "Figure 2A Middle Trace"
+ },
+ {
+ "id": "64296_3",
+ "name": "Figure 2A Bottom Trace"
+ },
+ {
+ "id": "64296_4",
+ "name": "Figure 2B Top Trace"
+ },
+ {
+ "id": "64296_5",
+ "name": "Figure 2B Second Trace"
+ },
+ {
+ "id": "64296_6",
+ "name": "Figure 2B Third Trace"
+ },
+ {
+ "id": "64296_7",
+ "name": "Figure 2B Bottom Trace"
+ },
+ {
+ "id": "64296_8",
+ "name": "Figure 3A"
+ },
+ {
+ "id": "64296_9",
+ "name": "Figure 3B"
+ },
+ {
+ "id": "64296_10",
+ "name": "Figure 3C Top"
+ },
+ {
+ "id": "64296_11",
+ "name": "Figure 3C Bottom"
+ },
+ {
+ "id": "64296_12",
+ "name": "Figure 4A"
+ },
+ {
+ "id": "64296_13",
+ "name": "Figure 5B"
+ },
+ {
+ "id": "64296_14",
+ "name": "Figure 6A"
+ },
+ {
+ "id": "64296_15",
+ "name": "Figure 6B"
+ },
+ {
+ "id": "64296_16",
+ "name": "Figure 6C"
+ },
+ {
+ "id": "64296_17",
+ "name": "Figure 6D"
+ },
+ {
+ "id": "64296_18",
+ "name": "Figure 6E"
+ },
+ {
+ "id": "64296_19",
+ "name": "Figure 7A"
+ },
+ {
+ "id": "64296_20",
+ "name": "Figure 7B"
+ },
+ {
+ "id": "64296_21",
+ "name": "Figure 8A"
+ },
+ {
+ "id": "64296_22",
+ "name": "Figure 8B"
+ },
+ {
+ "id": "64296_23",
+ "name": "Figure 8C"
+ }
+ ],
+ "default": "64296_1"
+ },
+ "name": "Dynamical model of olfactory bulb mitral cell (Rubin, Cleland 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This four-compartment mitral cell exhibits endogenous subthreshold oscillations, phase resetting, and evoked spike phasing properties as described in electrophysiological studies of mitral cells. It is derived from the prior work of Davison et al (2000) and Bhalla and Bower (1993). See readme.txt for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/64296",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Cleland, Thomas A\r\nRubin, Daniel B"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181309,
+ "object_name": "64296_13"
+ },
+ {
+ "object_id": 181310,
+ "object_name": "64296_12"
+ },
+ {
+ "object_id": 181311,
+ "object_name": "64296_11"
+ },
+ {
+ "object_id": 181312,
+ "object_name": "64296_10"
+ },
+ {
+ "object_id": 181313,
+ "object_name": "64296_17"
+ },
+ {
+ "object_id": 181314,
+ "object_name": "64296_16"
+ },
+ {
+ "object_id": 181315,
+ "object_name": "64296_15"
+ },
+ {
+ "object_id": 181316,
+ "object_name": "64296_14"
+ },
+ {
+ "object_id": 181317,
+ "object_name": "64296_19"
+ },
+ {
+ "object_id": 181318,
+ "object_name": "64296_18"
+ },
+ {
+ "object_id": 181556,
+ "object_name": "64296_22"
+ },
+ {
+ "object_id": 181557,
+ "object_name": "64296_23"
+ },
+ {
+ "object_id": 181558,
+ "object_name": "64296_20"
+ },
+ {
+ "object_id": 181559,
+ "object_name": "64296_21"
+ },
+ {
+ "object_id": 181688,
+ "object_name": "64296_9"
+ },
+ {
+ "object_id": 181689,
+ "object_name": "64296_8"
+ },
+ {
+ "object_id": 181690,
+ "object_name": "64296_7"
+ },
+ {
+ "object_id": 181691,
+ "object_name": "64296_6"
+ },
+ {
+ "object_id": 181692,
+ "object_name": "64296_5"
+ },
+ {
+ "object_id": 181693,
+ "object_name": "64296_4"
+ },
+ {
+ "object_id": 181694,
+ "object_name": "64296_3"
+ },
+ {
+ "object_id": 181695,
+ "object_name": "64296_2"
+ },
+ {
+ "object_id": 181696,
+ "object_name": "64296_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 227
+ },
+ "ver_date": "2022-05-27T18:21:02.397",
+ "ver_number": 11
+ },
+ "65412": {
+ "class_id": 19,
+ "created": "2006-06-21T07:04:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 65412,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 65413,
+ "object_name": "Cataldo E, Byrne JH, Baxter DA (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Computational Model of a Central Pattern Generator (Cataldo et al 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 65418,
+ "object_name": "Aplysia feeding CPG neurons"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The buccal ganglia of Aplysia contain a central pattern generator (CPG) that mediates rhythmic movements of the foregut during feeding. This CPG is a multifunctional circuit and generates at least two types of buccal motor patterns (BMPs), one that mediates ingestion (iBMP) and another that mediates rejection (rBMP). The present study used a computational approach to examine the ways in which an ensemble of identified cells and synaptic connections function as a CPG. Hodgkin-Huxley-type models were developed that mimicked the biophysical properties of these cells and synaptic connections. The results suggest that the currently identified ensemble of cells is inadequate to produce rhythmic neural activity and that several key elements of the CPG remain to be identified."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/65412",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Aplysia feeding CPG neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Enrico.Cataldo@uth.tmc.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249921,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:07:57.11",
+ "ver_number": 8
+ },
+ "66268": {
+ "biosimulations": {
+ "value": "modeldb-66268"
+ },
+ "class_id": 19,
+ "created": "2006-06-28T14:40:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 66268,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57906,
+ "object_name": "Golomb, David [golomb at bgu.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 66269,
+ "object_name": "Golomb D, Yue C, Yaari Y (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal cell: I_NaP and I_M contributions to somatic bursting (Golomb et al 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To study the mechanisms of bursting, we have constructed a\r\nconductance-based, one-compartment model of CA1 pyramidal neurons. In this neuron model,\r\nreduced [Ca2+]o is simulated by negatively shifting the activation curve of the persistent Na+ current\r\n(INaP), as indicated by recent experimental results. The neuron model accounts, with different\r\nparameter sets, for the diversity of firing patterns observed experimentally in both zero and normal\r\n[Ca2+]o. Increasing INaP in the neuron model induces bursting and increases the number of spikes\r\nwithin a burst, but is neither necessary nor sufficient for bursting. We show, using fast-slow analysis\r\nand bifurcation theory, that the M-type K+ current (IM) allows bursting by shifting neuronal behavior\r\nbetween a silent and a tonically-active state, provided the kinetics of the spike generating currents are\r\nsufficiently, though not extremely, fast. We suggest that bursting in CA1 pyramidal cells can be\r\nexplained by a single compartment *square bursting* mechanism with one slow variable, the\r\nactivation of IM. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/66268",
+ "ver_date": "2012-01-18T16:33:05",
+ "ver_number": 9
+ },
+ "71312": {
+ "class_id": 19,
+ "created": "2006-07-18T10:22:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 71312,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 71314,
+ "object_name": "Li, Xiaoshen [xsli2 at yahoo.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 71313,
+ "object_name": "Li X, Ascoli GA (2006)"
+ },
+ {
+ "object_id": 113958,
+ "object_name": "Li X, Ascoli GA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron synaptic integration (Li and Ascoli 2006, 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model shows how different input patterns (irregular & asynchronous,\r\nirregular & synchronous, regular & asynchronous, regular & synchronous)\r\naffect the neuron's output rate when 1000 synapses are distributed in\r\nthe proximal apical dendritic tree of a hippocampus CA1 pyramidal neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/71312",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2008-05-28T15:10:15",
+ "ver_number": 12
+ },
+ "71317": {
+ "class_id": 19,
+ "created": "2006-07-18T13:39:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 71317,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 71315,
+ "object_name": "Dai, Yue [ydai at scrc.umanitoba.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29798,
+ "object_name": "Dai Y, Jones KE, Fedirchuk B, McCrea DA, Jordan LM (2002)"
+ },
+ {
+ "object_id": 64323,
+ "object_name": "Gardiner P, Dai Y, Heckman CJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Activity dependent changes in motoneurones (Dai Y et al 2002, Gardiner et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These two papers review various experimental papers and examine the effects of activity on motoneurons in a similar 5 compartment model with 10 active conductances. Included are slow (S) and fast (F) type and fast fatigue resistant (FR) and fast fatigable (FF) models corresponding to the types of motoneurons. See papers for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/71317",
+ "ver_date": "2006-07-19T10:06:40",
+ "ver_number": 9
+ },
+ "74298": {
+ "class_id": 19,
+ "created": "2006-07-25T08:51:58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2397,
+ "object_name": "I Mixed"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122815,
+ "object_name": "KCa2.1 KCNN1"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ },
+ {
+ "object_id": 122817,
+ "object_name": "Kv3.1 KCNC1"
+ },
+ {
+ "object_id": 122818,
+ "object_name": "HCN Cnga1"
+ },
+ {
+ "object_id": 122820,
+ "object_name": "Cav2.2 CACNA1B"
+ },
+ {
+ "object_id": 122821,
+ "object_name": "KCa2.2 KCNN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 74298,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 74299,
+ "object_name": "Gillies, Andrew [andrew at anc.ed.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64336,
+ "object_name": "Gillies A, Willshaw D (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "74298",
+ "name": "ModelView"
+ }
+ ],
+ "default": "74298"
+ },
+ "name": "Rat subthalamic projection neuron (Gillies and Willshaw 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A computational model of the rat subthalamic nucleus projection neuron is constructed using electrophysiological and morphological data and a restricted set of channel specifications. The model cell exhibits a wide range of electrophysiological behaviors characteristic of rat subthalamic neurons. It reveals that a key set of three channels play a primary role in distinguishing behaviors: a high-voltage-activated calcium channel (Cav 1.2.-1.3), a low-voltage-activated calcium channel (Cav 3.-), and a small current calcium-activated potassium channel (KCa 2.1-2.3). See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/74298",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181854,
+ "object_name": "74298"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 319
+ },
+ "ver_date": "2014-02-25T01:15:23",
+ "ver_number": 12
+ },
+ "76879": {
+ "biosimulations": {
+ "value": "modeldb-76879"
+ },
+ "class_id": 19,
+ "created": "2006-07-28T13:53:34",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 76879,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 76884,
+ "object_name": "Ermentrout, Bard [bard_at_pitt.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 5830,
+ "object_name": "Wilson HR, Cowan JD (1972)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "76879_1",
+ "name": "No drive (slow)"
+ },
+ {
+ "id": "76879_2",
+ "name": "Driven (slow)"
+ },
+ {
+ "id": "76879_3",
+ "name": "As set (slow)"
+ },
+ {
+ "id": "76879_4",
+ "name": "No drive (fast)"
+ },
+ {
+ "id": "76879_5",
+ "name": "Driven (fast)"
+ },
+ {
+ "id": "76879_6",
+ "name": "As set (fast)"
+ }
+ ],
+ "default": "76879_1"
+ },
+ "name": "Excitatory and inhibitory interactions in populations of model neurons (Wilson and Cowan 1972)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Coupled nonlinear differential equations are derived for the dynamics\r\nof spatially localized populations containing both excitatory and inhibitory model\r\nneurons. Phase plane methods and numerical solutions are then used to investigate\r\npopulation responses to various types of stimuli. The results obtained show simple\r\nand multiple hysteresis phenomena and limit cycle activity. The latter is particularly\r\ninteresting since the frequency of the limit cycle oscillation is found to be a monotonic\r\nfunction of stimulus intensity. Finally, it is proved that the existence of limit cycle\r\ndynamics in response to one class of stimuli implies the existence of multiple stable\r\nstates and hysteresis in response to a different class of stimuli. The relation between\r\nthese findings and a number of experiments is discussed."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/76879",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181403,
+ "object_name": "76879_6"
+ },
+ {
+ "object_id": 181405,
+ "object_name": "76879_4"
+ },
+ {
+ "object_id": 181408,
+ "object_name": "76879_1"
+ },
+ {
+ "object_id": 181897,
+ "object_name": "76879_5"
+ },
+ {
+ "object_id": 181903,
+ "object_name": "76879_3"
+ },
+ {
+ "object_id": 181905,
+ "object_name": "76879_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 242
+ },
+ "ver_date": "2015-01-02T22:00:10",
+ "ver_number": 9
+ },
+ "76883": {
+ "class_id": 19,
+ "created": "2006-07-28T15:52:04",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 76883,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 77203,
+ "object_name": "Bednar, James [jbednar at alumni.utexas.net]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 76880,
+ "object_name": "Bednar JA, Kelkar A, Miikkulainen R (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 76882,
+ "object_name": "Topographica (web link to model)"
+ }
+ ]
+ },
+ "name": "Scaling self-organizing maps to model large cortical networks (Bednar et al 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Self-organizing computational models\r\nwith specific intracortical connections can\r\nexplain many functional features of visual\r\ncortex, such as topographic orientation and\r\nocular dominance maps. ... This article\r\nintroduces two techniques that make large simulations\r\npractical. \r\n\r\nFirst, we show how parameter\r\nscaling equations can be derived for\r\nlaterally connected self-organizing models.\r\nThese equations result in quantitatively equivalent\r\nmaps over a wide range of simulation\r\nsizes, making it possible to debug small simulations\r\nand then scale them up only when\r\nneeded. ...\r\nSecond, we use parameter\r\nscaling to implement a new growing map\r\nmethod called GLISSOM, which dramatically\r\nreduces the memory and computational\r\nrequirements of large self-organizing networks.\r\n\r\nSee paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/76883",
+ "ver_date": "2018-10-17T16:46:25.2",
+ "ver_number": 11
+ },
+ "79145": {
+ "class_id": 19,
+ "created": "2006-08-01T16:37:26",
+ "gitrepo": false,
+ "id": 79145,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 79304,
+ "object_name": "Kazanovich, Yakov [yakov_k at impb.psn.ru]"
+ },
+ {
+ "object_id": 79305,
+ "object_name": "Borisyuk, Roman [rborisyuk at plymouth.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 67388,
+ "object_name": "Kazanovich Y, Borisyuk R (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "An oscillatory neural model of multiple object tracking (Kazanovich and Borisyuk 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "An oscillatory neural network model of multiple object tracking is described. The model works with a set of identical visual objects moving around the screen. At the initial stage, the model selects into the focus of attention a subset of objects initially marked as targets. Other objects are used as distractors. The model aims to preserve the initial separation between targets and distractors while objects are moving. This is achieved by a proper interplay of synchronizing and desynchronizing interactions in a multilayer network, where each layer is responsible for tracking a single target. The results of the model simulation are presented and compared with experimental data. In agreement with experimental evidence, simulations with a larger number of targets have shown higher error rates. Also, the functioning of the model in the case of temporarily overlapping objects is presented."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/79145",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2007-11-02T17:14:01",
+ "ver_number": 3
+ },
+ "79237": {
+ "class_id": 19,
+ "created": "2006-08-02T08:58:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2397,
+ "object_name": "I Mixed"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 79237,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 58176,
+ "object_name": "Chang, Han-Dong"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 88214,
+ "object_name": "Long-QT"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 79470,
+ "object_name": "Sung RJ, Wu SN, Wu JS, Chang HD, Luo CH (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Simulation study of Andersen-Tawil syndrome (Sung et al 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Patients with Andersen-Tawil syndrome (ATS) mostly have mutations on the KCNJ2 gene producing loss of function or \r\ndominant-negative suppression of the inward rectifier K(+) channel Kir2.1. However, clinical manifestations of ATS \r\nincluding dysmorphic features, periodic paralysis (hypo-, hyper-, or normokalemic), long QT, and ventricular arrhythmias \r\n(VA) are considerably variable. Using a modified dynamic Luo-Rudy simulation model of cardiac ventricular myocyte, we \r\nelucidate the mechanisms of VA in ATS. We adopted a kinetic model of KCNJ2 in which channel block by Mg(+2) and \r\nspermine was incorporated. In this study, we attempt to examine the effects of KCNJ2 mutations on the ventricular action \r\npotential (AP), single-channel Markovian models were reformulated and incorporated into the dynamic Luo-Rudy model \r\nfor rapidly and slowly delayed rectifying K(+) currents and KCNJ2 channel. During pacing at 1.0 Hz with [K(+)]o at 5.4 \r\nmM, a stepwise 10% reduction of Kir2.1 channel conductance progressively prolonged the terminal repolarization phase \r\nof AP along with gradual depolarization of the resting membrane potential (RMP). At 90% reduction, early after-\r\ndepolarizations (EADs) became inducible and RMP was depolarized to -55.0 mV (control: -90.1 mV) followed by \r\nemergence of spontaneous action potentials (SAP). Both EADs and SAP were facilitated by a decrease in [K(+)]o and \r\nsuppressed by increase in [K(+)]o. beta-adrenergic stimulation enhanced delayed after-depolarizations (DADs) and could \r\nalso facilitate EADs as well as SAP in the setting of low [K(+)]o and reduced Kir2.1 channel conductance. In conclusion, \r\nthe spectrum of VA in ATS includes (1) triggered activity mediated by EADs and/or DADs, and (2) abnormal automaticity \r\nmanifested as SAP. These VA can be aggravated by a decrease in [K(+)]o and beta-adrenergic stimulation, and may \r\npotentially induce torsades de pointes and cause sudden death. In patients with ATS, the hypokalemic form of periodic \r\nparalysis should have the highest propensity to VA especially during physical activities."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/79237",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Han-Dong Chang"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "heart cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2009-05-28T14:30:11",
+ "ver_number": 10
+ },
+ "79238": {
+ "class_id": 19,
+ "created": "2006-08-02T09:43:28",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 79238,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 79302,
+ "object_name": "Chen, Chien-Liang"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 22188,
+ "object_name": "Adrian RH, Chandler WK, Hodgkin AL (1970)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Action potential of striated muscle fiber (Adrian et al 1970)",
+ "notes": {
+ "attr_id": 24,
+ "value": "1. Membrane currents during step depolarizations were determined by \r\na method in which three electrodes were inserted near the end of a \r\nfibre in the frog's sartorius muscle. The theoretical basis and \r\nlimitations of the method are discussed.\r\n2. Measurements of the membrane capacity (CM) and resting resistance \r\n(RM) derived from the current during a step change in membrane \r\npotential are consistent with values found by other methods.\r\n3. In fibres made mechanically inactive with hypertonic solutions \r\n(Ringer solution plus 350 mM sucrose) step depolarizations produced \r\nionic currents which resembled those of nerve in showing (a) an early \r\ntransient inward current, abolished by tetrodotoxin, which reversed \r\nwhen the depolarization was carried beyond an internal potential of \r\nabout +20 mV, (b) a delayed outward current, with a linear instantaneous \r\ncurrent\u00a1Xvoltage relation, and a mean equilibrium potential with a normal \r\npotassium concentration (2\u00a1P5 mM) of -85 mV.\r\n4. The reversal potential for the early current appears to be consistent\r\nwith the sodium equilibrium potential expected in hypertonic solutions.\r\n5. The variation of the equilibrium potential for the delayed current \r\n(V\u00a1\u00acK) with external potassium concentration suggests that the channel \r\nfor delayed current has a ratio of potassium to sodium permeability of \r\n30:1; this is less than the resting membrane where the ratio appears \r\nto be 100:1. V\u00a1\u00acK corresponds well with the membrane potential at the \r\nbeginning of the negative after-potential observed under similar conditions.\r\n6. The variation of V\u00a1\u00acK with the amount of current which has passed \r\nthrough the delayed channel suggests that potassium ions accumulate in a \r\nspace of between 1/3 and 1/6 of the fibre volume. If potassium accumulates in \r\nthe transverse tubular system (T system) much greater variation in V\u00a1\u00acK \r\nwould be expected.\r\n7. The delayed current is not maintained but is inactivated like the early \r\ncurrent. The inactivation is approximately exponential with a time constant \r\nof 0\u00a1P5 to 1 sec at 20\u00a2X C. The steady-state inactivation of the potassium \r\ncurrent is similar to that for the sodium current, but its voltage \r\ndependence is less steep and the potential for half inactivation is 20 mV \r\nrate more positive.\r\n8. Reconstructions of ionic currents were made in terms of the parameters\r\n(m, n, h) of the Hodgkin\u00a1XHuxley model for the squid axon, using constants \r\nwhich showed a similar dependence on voltage.\r\n9. Propagated action potentials and conduction velocities were computed for \r\nvarious conditions on the assumption that the T system behaves as if it were \r\na series resistance and capacity in parallel with surface capacity and the \r\nchannels for sodium, potassium and leak current. There was reasonable \r\nagreement with observed values, the main difference being that the \r\ncalculated velocities and rates of rise were somewhat less than those \r\nobserved experimentally."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/79238",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chien-Liang Chen"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "skeletal muscle cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2015-09-02T13:27:02.21",
+ "ver_number": 8
+ },
+ "79461": {
+ "class_id": 19,
+ "created": "2006-08-02T22:12:32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 79461,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 62678,
+ "object_name": "Lai, Hsing-Jung "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3870,
+ "object_name": "Courtemanche M, Ramirez RJ, Nattel S (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Cardiac Atrial Cell (Courtemanche et al 1998) (C++)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The mechanisms underlying many important properties of the human atrial action potential (AP) \r\nare poorly understood. Using specific formulations of the K+, Na+, and Ca2+ currents based on \r\ndata recorded from human atrial myocytes, along with representations of pump, exchange, and \r\nbackground currents, we developed a mathematical model of the AP. The model AP resembles APs \r\nrecorded from human atrial samples and responds to rate changes, L-type Ca2+ current blockade, \r\nNa+/Ca2+ exchanger inhibition, and variations in transient outward current amplitude in a \r\nfashion similar to experimental recordings. Rate-dependent adaptation of AP duration, an \r\nimportant determinant of susceptibility to atrial fibrillation, was attributable to \r\nincomplete L-type Ca2+ current recovery from inactivation and incomplete delayed rectifier \r\ncurrent deactivation at rapid rates. Experimental observations of variable AP morphology \r\ncould be accounted for by changes in transient outward current density, as suggested \r\nexperimentally. We conclude that this mathematical model of the human atrial AP reproduces \r\na variety of observed AP behaviors and provides insights into the mechanisms of clinically \r\nimportant AP properties.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/79461",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hsing-Jung Lai"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "heart cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2017-06-15T11:04:12.013",
+ "ver_number": 8
+ },
+ "79465": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 79467,
+ "object_name": "locally available GENESIS"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2006-08-03T11:41:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "web-link to externallly available GENESIS"
+ },
+ "gitrepo": false,
+ "id": 79465,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ },
+ {
+ "object_id": 79466,
+ "object_name": "Kotaleski, Jeanette [jeanette at csc.kth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 79463,
+ "object_name": "Kotaleski JH, Plenz D, Blackwell KT (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "FS Striatal interneuron: K currents solve signal-to-noise problems (Kotaleski et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "... We show that a transient\r\npotassium (KA) current allows the Fast Spiking (FS) interneuron to strike a balance\r\nbetween sensitivity to correlated input and robustness to noise,\r\nthereby increasing its signal-to-noise ratio (SNR). First, a compartmental\r\nFS neuron model was created to match experimental data from\r\nstriatal FS interneurons in cortex\u2013striatum\u2013substantia nigra organotypic\r\ncultures. Densities of sodium, delayed rectifier, and KA channels\r\nwere optimized to replicate responses to somatic current injection.\r\nSpontaneous AMPA and GABA synaptic currents were\r\nadjusted to the experimentally measured amplitude, rise time, and\r\ninterevent interval histograms. Second, two additional adjustments\r\nwere required to emulate the remaining experimental observations.\r\nGABA channels were localized closer to the soma than AMPA\r\nchannels to match the synaptic population reversal potential. Correlation\r\namong inputs was required to produce the observed firing rate\r\nduring up-states. In this final model, KA channels were essential for\r\nsuppressing down-state spikes while allowing reliable spike generation\r\nduring up-states. ... Our results suggest that KA\r\nchannels allow FS interneurons to operate without a decrease in SNR\r\nduring conditions of increased dopamine, as occurs in response to\r\nreward or anticipated reward. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/79465",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2016-12-19T17:41:12.66",
+ "ver_number": 13
+ },
+ "79471": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 79474,
+ "object_name": "local"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2006-08-03T14:53:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "id": 79471,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 75415,
+ "object_name": "Blackwell KT (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53428,
+ "object_name": "Chemesis"
+ }
+ ]
+ },
+ "name": "Differences between type A and B photoreceptors (Blackwell 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114289,
+ "object_name": "Hermissenda photoreceptor Type A"
+ },
+ {
+ "object_id": 114290,
+ "object_name": "Hermissenda photoreceptor Type B"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In Hermissenda crassicornis, the memory of light associated with turbulence\r\nis stored as changes in intrinsic and synaptic currents in both\r\ntype A and type B photoreceptors. These photoreceptor types exhibit\r\nqualitatively different responses to light and current injection, and\r\nthese differences shape the spatiotemporal firing patterns that control\r\nbehavior. Thus the objective of the study was to identify the mechanisms\r\nunderlying these differences. The approach was to develop a\r\ntype B model that reproduced characteristics of type B photoreceptors\r\nrecorded in vitro, and then to create a type A model by modifying a\r\nselect number of ionic currents. Comparison of type A models with\r\ncharacteristics of type A photoreceptors recorded in vitro revealed that\r\ntype A and type B photoreceptors have five main differences, three\r\nthat have been characterized experimentally and two that constitute\r\nhypotheses to be tested with experiments in the future. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/79471",
+ "ver_date": "2016-12-19T17:07:10.087",
+ "ver_number": 10
+ },
+ "79488": {
+ "class_id": 19,
+ "created": "2006-08-08T19:27:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 252,
+ "object_name": "I Cl,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 79488,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 79489,
+ "object_name": "Frank, Michael [mfrank at u.arizona.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 70614,
+ "object_name": "Frank MJ (2005)"
+ },
+ {
+ "object_id": 70615,
+ "object_name": "Frank MJ, Seeberger LC, O'reilly RC (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53430,
+ "object_name": "Emergent/PDP++"
+ }
+ ]
+ },
+ "name": "Dynamic dopamine modulation in the basal ganglia: Learning in Parkinson (Frank et al 2004,2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "See README file for all info on how to run models under different tasks and simulated Parkinson's and medication conditions."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/79488",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Frank, Michael J"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2015-03-09T11:50:06.003",
+ "ver_number": 19
+ },
+ "80769": {
+ "class_id": 19,
+ "created": "2006-08-10T08:10:15",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122803,
+ "object_name": "Kv4.3 KCND3"
+ },
+ {
+ "object_id": 122808,
+ "object_name": "Kv3.3 KCNC3"
+ },
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 80769,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 82363,
+ "object_name": "Akemann, Walther [akemann at brain.riken.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 75417,
+ "object_name": "Akemann W, Kn\u00f6pfel T (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "80769_1",
+ "name": "Off On Off original protocol"
+ },
+ {
+ "id": "80769_2",
+ "name": "Short demo run simulation"
+ }
+ ],
+ "default": "80769_1"
+ },
+ "name": "Cerebellar purkinje cell: interacting Kv3 and Na currents influence firing (Akemann, Knopfel 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Purkinje neurons spontaneously generate action potentials in the absence of synaptic drive and thereby exert a tonic, yet plastic, input to their target cells in the deep cerebellar nuclei. Purkinje neurons express two ionic currents with biophysical properties that are specialized for high-frequency firing: resurgent sodium currents and potassium currents mediated by Kv3.3. Numerical simulations indicated that Kv3.3 increases the spontaneous firing rate via cooperation with resurgent sodium currents. We conclude that the rate of spontaneous action potential firing of Purkinje neurons is controlled by the interaction of Kv3.3 potassium currents and resurgent sodium currents. See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/80769",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 198
+ },
+ "ver_date": "2017-03-18T10:07:35.34",
+ "ver_number": 15
+ },
+ "82364": {
+ "class_id": 19,
+ "created": "2006-08-28T18:10:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 82364,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 67382,
+ "object_name": "van Welie I, Remme MW, van Hooft JA, Wadman WJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "82364_1",
+ "name": "regular - 20 Hz"
+ },
+ {
+ "id": "82364_2",
+ "name": "regular - 50 Hz"
+ },
+ {
+ "id": "82364_3",
+ "name": "burster - 20 Hz"
+ },
+ {
+ "id": "82364_4",
+ "name": "burster - 50 Hz"
+ }
+ ],
+ "default": "82364_1"
+ },
+ "name": "Ih levels roles in bursting and regular-spiking subiculum pyramidal neurons (van Welie et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Pyramidal neurons in the subiculum typically display either bursting\r\nor regular-spiking behavior. ... Here we report that bursting neurons\r\nposses a hyperpolarization-activated cation current (Ih) that is\r\ntwo-fold larger (conductance: 5.3 \u00c2\u00b1 0.5 nS) than in regularspiking\r\nneurons (2.2 \u00c2\u00b1 0.6 nS), while Ih exhibits similar voltage-dependent\r\nand kinetic properties in both classes of neurons. Bursting and\r\nregular-spiking neurons display similar morphology. The difference in\r\nIh between the two classes is not responsible for the distinct firing\r\npatterns, since neither pharmacological blockade of Ih nor enhancement\r\nof Ih using a dynamic clamp affects the qualitative firing\r\npatterns. Instead, the difference in Ih between bursting and\r\nregular-spiking neurons determines the temporal integration of evoked\r\nsynaptic input from the CA1 area. In response to 50 Hz stimulation,\r\nbursting neurons, with a large Ih, show ~50% less temporal summation\r\nthan regular-spiking neurons. ... A computer simulation model of a\r\nsubicular neuron with the properties of either a bursting or a\r\nregular-spiking neuron confirmed the pivotal role of Ih in temporal\r\nintegration of synaptic input. These data suggest that in the\r\nsubicular network, bursting neurons are better suited to discriminate\r\nthe content of high frequency input, such as that occurring during\r\ngamma oscillations, compared to regular-spiking neurons. See paper for more and details.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/82364",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181357,
+ "object_name": "82364_1"
+ },
+ {
+ "object_id": 181359,
+ "object_name": "82364_3"
+ },
+ {
+ "object_id": 181360,
+ "object_name": "82364_2"
+ },
+ {
+ "object_id": 181362,
+ "object_name": "82364_4"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 264
+ },
+ "ver_date": "2015-01-02T22:40:12",
+ "ver_number": 11
+ },
+ "82385": {
+ "class_id": 19,
+ "created": "2006-09-06T11:14:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 82385,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82382,
+ "object_name": "Haeusler S, Maass W (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 82384,
+ "object_name": "CSIM (web link to model)"
+ }
+ ]
+ },
+ "name": "Information-processing in lamina-specific cortical microcircuits (Haeusler and Maass 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A major challenge for computational neuroscience is to understand\r\nthe computational function of lamina-specific synaptic connection\r\npatterns in stereotypical cortical microcircuits.We approach this problem by studying ...\r\nthe dynamical system defined by more realistic cortical microcircuit\r\nmodels as a whole and by investigating the influence that its\r\nlaminar structure has on the transmission and fusion of information\r\nwithin this dynamical system. The circuit models that we examine\r\nconsist of Hodgkin--Huxley neurons with dynamic synapses... We investigate to what\r\nextent this cortical microcircuit template supports the accumulation\r\nand fusion of information contained in generic spike inputs into\r\nlayer 4 and layers 2/3 and how well it makes this information\r\naccessible to projection neurons in layers 2/3 and layer 5. ... We conclude that computer simulations\r\nof detailed lamina-specific cortical microcircuit models\r\nprovide new insight into computational consequences of anatomical\r\nand physiological data. See paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/82385",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "non inactivating K"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2008-10-08T18:40:41",
+ "ver_number": 10
+ },
+ "82392": {
+ "class_id": 19,
+ "created": "2006-09-06T16:36:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 82392,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82391,
+ "object_name": "Maass W, Joshi P, Sontag ED (2007)"
+ },
+ {
+ "object_id": 82393,
+ "object_name": "Maass W, Joshi P, Sontag ED (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 82384,
+ "object_name": "CSIM (web link to model)"
+ }
+ ]
+ },
+ "name": "Computational aspects of feedback in neural circuits (Maass et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "It had previously been shown that generic cortical microcircuit models\r\ncan perform complex real-time computations on continuous input\r\nstreams, provided that these computations can be carried out with a\r\nrapidly fading memory. We investigate ... the computational\r\ncapability of such circuits in the more realistic case where not only\r\nreadout neurons, but in addition a few neurons within the circuit have\r\nbeen trained for specific tasks. This is essentially equivalent to\r\nthe case where the output of trained readout neurons is fed back into\r\nthe circuit. We show that this new model overcomes the limitation of\r\na rapidly fading memory. In fact, we prove that in the idealized case\r\nwithout noise it can carry out any conceiv- able digital or analog\r\ncomputation on time-varying inputs. But even with noise the resulting\r\ncomputational model can perform a large class of biologically relevant\r\nreal-time computations that require a non-fading memory. ... In\r\nparticular we show that ... generic cortical microcircuits with\r\nfeedback provide a new model for working memory that is consistent\r\nwith a large set of biological constraints. See paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/82392",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-10-25T23:20:50.317",
+ "ver_number": 11
+ },
+ "82394": {
+ "class_id": 19,
+ "created": "2006-09-06T17:48:02",
+ "gitrepo": false,
+ "id": 82394,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82395,
+ "object_name": "Haeusler S, Markram H, Maass W (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 82384,
+ "object_name": "CSIM (web link to model)"
+ }
+ ]
+ },
+ "name": "High dimensional dynamics and low dimensional readouts in neural microcircuits (Haeusler et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We investigate generic models for cortical microcircuits,\r\ni.e. recurrent circuits of integrate-and fire neurons with dynamic\r\nsynapses. These complex dynamic systems subserve the amazing\r\ninformation processing capabilities of the cortex, but are at the\r\npresent time very little understood. We analyze the transient dynamics\r\nof models for neural microcircuits from the point of view of one or\r\ntwo readout neurons that collapse the high dimensional transient\r\ndynamics of a neural circuit into a 1- or 2--dimensional output\r\nstream. See paper for more and details.\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/82394",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2016-05-26T15:38:22.917",
+ "ver_number": 9
+ },
+ "82758": {
+ "class_id": 19,
+ "created": "2006-09-18T10:16:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ },
+ {
+ "object_id": 226060,
+ "object_name": "HCN4"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 82758,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 82759,
+ "object_name": "Elinder, Fredrik [fredrik.elinder at ibk.liu.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64331,
+ "object_name": "Elinder F, M\u00e4nnikk\u00f6 R, Pandey S, Larsson HP (2006)"
+ },
+ {
+ "object_id": 65951,
+ "object_name": "M\u00e4nnikk\u00f6 R, Pandey S, Larsson HP, Elinder F (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 58965,
+ "object_name": "QBasic/QuickBasic/Turbo Basic/VBA"
+ }
+ ]
+ },
+ "name": "Hysteresis in voltage gating of HCN channels (Elinder et al 2006, Mannikko et al 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We found that HCN2 and HCN4 channels\r\nexpressed in oocytes from the frog Xenopus laevis do not display the\r\nactivation kinetic changes that we (previously) observed in spHCN and\r\nHCN1. However, HCN2 and HCN4 channels display changes in their tail\r\ncurrents, suggesting that these channels also undergo mode shifts and\r\nthat the conformational changes underlying the mode shifts are due to\r\nconserved aspects of HCN channels. With computer modelling, we show\r\nthat in channels with relatively slow opening kinetics and fast\r\nmode-shift transitions, such as HCN2 and HCN4 channels, the mode shift\r\neffects are not readily observable, except in the tail\r\nkinetics. Computer simulations of sino-atrial node action potentials\r\nsuggest that the HCN2 channel, together with the HCN1 channel, are\r\nimportant regulators of the heart firing frequency and that the mode\r\nshift is an important property to prevent arrhythmic firing. We\r\nconclude that although all HCN channels appear to undergo mode shifts\r\n\u2013 and thus may serve to prevent arrhythmic firing\r\n\u2013 it is mainly observable in ionic currents\r\nfrom HCN channels with faster kinetics. See papers for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/82758",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "cardiac"
+ },
+ "ver_date": "2017-03-18T10:09:34.847",
+ "ver_number": 11
+ },
+ "82784": {
+ "class_id": 19,
+ "created": "2006-10-03T16:01:39",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 82784,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 82786,
+ "object_name": "Durstewitz, Daniel [daniel.durstewitz at plymouth.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82783,
+ "object_name": "Durstewitz D, Gabriel T (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "82784",
+ "name": "ModelView"
+ }
+ ],
+ "default": "82784"
+ },
+ "name": "Irregular spiking in NMDA-driven prefrontal cortex neurons (Durstewitz and Gabriel 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Slow N-Methyl-D-aspartic acid (NMDA) synaptic currents are assumed to strongly contribute to the persistently elevated firing rates observed in prefrontal cortex (PFC) during working memory. During persistent activity, spiking of many neurons is highly irregular. ... The highest interspike-interval (ISI) variability occurred in a transition regime where the subthreshold membrane potential distribution shifts from mono- to bimodality, ... Predictability within irregular ISI series was significantly higher than expected from a noise-driven linear process, indicating that it might best be described through complex (potentially chaotic) nonlinear deterministic processes. Accordingly, the phenomena observed in vitro could be reproduced in purely deterministic biophysical model neurons. High spiking irregularity in these models emerged within a chaotic, close-to-bifurcation regime characterized by a shift of the membrane potential distribution from mono- to bimodality and by similar ISI return maps as observed in vitro. ... NMDA-induced irregular dynamics may have important implications for computational processes during working memory and neural coding."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/82784",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181248,
+ "object_name": "82784"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 116
+ },
+ "ver_date": "2014-02-15T14:34:02",
+ "ver_number": 16
+ },
+ "82849": {
+ "class_id": 19,
+ "created": "2006-10-06T14:23:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 82849,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 82786,
+ "object_name": "Durstewitz, Daniel [daniel.durstewitz at plymouth.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 32013,
+ "object_name": "Durstewitz D, Seamans JK, Sejnowski TJ (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "82849",
+ "name": "ModelView"
+ }
+ ],
+ "default": "82849"
+ },
+ "name": "Neocortical pyramidal neuron: deep; effects of dopamine (Durstewitz et al 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Simulated dopamine strongly enhanced high, delay-type activity but not low, spontaneous activity in the model network. Furthermore the strength of an afferent stimulation needed to disrupt delay-type activity increased with the magnitude of the dopamine-induced shifts in network parameters, making the currently active representation much more stable. Stability could be increased by dopamine-induced enhancements of the persistent Na(+) and N-methyl-D-aspartate (NMDA) conductances. Stability also was enhanced by a reduction in AMPA conductances. The increase in GABA(A) conductances that occurs after stimulation of dopaminergic D1 receptors was necessary in this context to prevent uncontrolled, spontaneous switches into high-activity states (i.e., spontaneous activation of task-irrelevant representations). In conclusion, the dopamine-induced changes in the biophysical properties of intrinsic ionic and synaptic conductances conjointly acted to highly increase stability of activated representations in PFC networks and at the same time retain control over network behavior and thus preserve its ability to adequately respond to task-related stimuli. ...\" See paper and references for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/82849",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181566,
+ "object_name": "82849"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 296
+ },
+ "ver_date": "2014-02-25T01:02:23",
+ "ver_number": 11
+ },
+ "82891": {
+ "class_id": 19,
+ "created": "2006-10-26T09:41:25",
+ "gitrepo": false,
+ "id": 82891,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 82893,
+ "object_name": "Calin-Jageman, Robert [rcalinjageman at gsu dot edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82890,
+ "object_name": "Calin-Jageman RJ, Katz PS (2006)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 82892,
+ "object_name": "NEURONPM (web link to tool)"
+ }
+ ]
+ },
+ "name": "Distributed computing tool for NEURON, NEURONPM (screensaver) (Calin-Jageman and Katz 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... To lower the barrier for large-scale model analysis, we have developedNeuronPM,\r\na client/server application that creates a \u201cscreen-saver\u201d cluster\r\nfor running simulations in NEURON (Hines & Carnevale, 1997). ... The NeuronPM client is\r\na Windows-based screen saver, and the NeuronPM server can be hosted\r\non any Apache/PHP/MySQL server. ... Administrative\r\npanels make it simple to upload model files, define the parameters and\r\nconditions to vary, and then monitor client status and work progress.\r\nNeuronPM is open-source freeware and is available for download at\r\nhttp://neuronpm.homeip.net. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/82891",
+ "ver_date": "2019-02-28T18:23:16.663",
+ "ver_number": 6
+ },
+ "83319": {
+ "class_id": 19,
+ "created": "2006-11-21T07:19:17",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 83319,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ },
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 33739,
+ "object_name": "Davison, Andrew [Andrew.Davison at iaf.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 76884,
+ "object_name": "Ermentrout, Bard [bard_at_pitt.edu]"
+ },
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ },
+ {
+ "object_id": 83454,
+ "object_name": "Bower, James"
+ },
+ {
+ "object_id": 83455,
+ "object_name": "Beeman, Dave"
+ },
+ {
+ "object_id": 83456,
+ "object_name": "Diesmann M"
+ },
+ {
+ "object_id": 83457,
+ "object_name": "Morrison A "
+ },
+ {
+ "object_id": 83458,
+ "object_name": "Goodman PH"
+ },
+ {
+ "object_id": 83459,
+ "object_name": "Harris Jr, FC"
+ },
+ {
+ "object_id": 83460,
+ "object_name": "Zirpe M "
+ },
+ {
+ "object_id": 83461,
+ "object_name": "Natschlager T "
+ },
+ {
+ "object_id": 83462,
+ "object_name": "Pecevski D "
+ },
+ {
+ "object_id": 83464,
+ "object_name": "Djurfeldt M"
+ },
+ {
+ "object_id": 83465,
+ "object_name": "Lansner, Anders [ala at kth.se]"
+ },
+ {
+ "object_id": 83466,
+ "object_name": "Rochel O "
+ },
+ {
+ "object_id": 83467,
+ "object_name": "Vieville T "
+ },
+ {
+ "object_id": 83468,
+ "object_name": "Muller E "
+ },
+ {
+ "object_id": 83470,
+ "object_name": "El Boustani, Sami [elboustani at unic.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 83471,
+ "object_name": "Rudolph M "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 58969,
+ "object_name": "Vogels TP, Abbott LF (2005)"
+ },
+ {
+ "object_id": 83443,
+ "object_name": "Brette R, Rudolph M, Carnevale T, Hines M, Beeman D, Bower JM, Diesmann M, Morrison A, Goodman PH, Harris FC, Zirpe M, Natschl\u00e4ger T, Pecevski D, Ermentrout B, Djurfeldt M, Lansner A, Rochel O, Vieville T, Muller E, Davison AP, El Boustani S, Destexhe A (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ },
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 82383,
+ "object_name": "CSIM"
+ },
+ {
+ "object_id": 83448,
+ "object_name": "NCS"
+ },
+ {
+ "object_id": 83449,
+ "object_name": "SPLIT"
+ },
+ {
+ "object_id": 83451,
+ "object_name": "MVASpike"
+ },
+ {
+ "object_id": 83452,
+ "object_name": "SciLab"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 116010,
+ "object_name": "PyNN"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "83319_2",
+ "name": "Coba"
+ }
+ ],
+ "default": "83319_2"
+ },
+ "name": "Networks of spiking neurons: a review of tools and strategies (Brette et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This package provides a series of codes that simulate networks of spiking neurons (excitatory and inhibitory, integrate-and-fire or Hodgkin-Huxley type, current-based or conductance-based synapses; some of them are event-based). The same networks are implemented in different simulators (NEURON, GENESIS, NEST, NCS, CSIM, XPP, SPLIT, MVAspike; there is also a couple of implementations in SciLab and C++).\r\nThe codes included in this package are benchmark simulations; see\r\nthe associated review paper (Brette et al. 2007). The \r\nmain goal is to provide a series of benchmark simulations of\r\nnetworks of spiking neurons, and demonstrate how these are implemented in the\r\ndifferent simulators overviewed in the paper. See also details in the\r\nenclosed file Appendix2.pdf, which describes these different \r\nbenchmarks. Some of these benchmarks were based on the \r\nVogels-Abbott model (Vogels TP and Abbott LF 2005).\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83319",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "generic cortical neurons, integrate and fire, HH"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "many different simulators"
+ },
+ "ver_date": "2017-07-28T13:55:31.95",
+ "ver_number": 45
+ },
+ "83320": {
+ "class_id": 19,
+ "created": "2006-11-21T11:14:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 83320,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83321,
+ "object_name": "Jiang, Ning [ning.jiang at unb.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83237,
+ "object_name": "Jiang N, Englehart KB, Parker PA (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A simulation method for the firing sequences of motor units (Jiang et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... a novel model based on the Hodgkin\u2013Huxley (HH) system is proposed, which has the ability to simulate\r\nthe complex neurodynamics of the firing sequences of motor neurons. The model is presented at the cellular level and network level,\r\nand some simulation results from a simple 3-neuron network are presented to demonstrate its applications.\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83320",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2008-10-09T16:11:43",
+ "ver_number": 9
+ },
+ "83344": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 83440,
+ "object_name": "autolaunchable NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2006-11-22T17:08:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 83344,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83441,
+ "object_name": "Schaefer, Andreas T [andreas.schaefer at crick.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 24607,
+ "object_name": "Schaefer AT, Larkum ME, Sakmann B, Roth A (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "83344_1",
+ "name": "a. Backpropagating AP"
+ },
+ {
+ "id": "83344_2",
+ "name": "b. EPSP"
+ },
+ {
+ "id": "83344_3",
+ "name": "c. Ca spike"
+ },
+ {
+ "id": "83344_4",
+ "name": "d. BAC firing"
+ }
+ ],
+ "default": "83344_1"
+ },
+ "name": "Pyramidal neuron coincidence detection tuned by dendritic branching pattern (Schaefer et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We examined the relationship between dendritic arborization\r\nand the coupling between somatic and dendritic action potential\r\n(AP) initiation sites in layer 5 (L5) neocortical pyramidal neurons.\r\nCoupling was defined as the relative reduction in threshold for\r\ninitiation of a dendritic calcium AP due to a coincident\r\nback-propagating AP. Simulations based on reconstructions of\r\nbiocytin-filled cells showed that addition of oblique branches of the\r\nmain apical dendrite in close proximity to the soma (d < 140 um)\r\nincreases the coupling between the apical and axosomatic AP initiation\r\nzones, whereas incorporation of distal branches decreases\r\ncoupling. ... We conclude that variation in dendritic arborization may\r\nbe a key determinant of variability in coupling (49+-17%; range\r\n19-83%; n = 37) and is likely to outweigh the contribution made by\r\nvariations in active membrane properties. Thus coincidence detection\r\nof inputs arriving from different cortical layers is strongly\r\nregulated by differences in dendritic arborization.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83344",
+ "ver_date": "2023-04-30T15:14:03.437",
+ "ver_number": 26
+ },
+ "83472": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Baxter DA Byrne JH (2006) Short-term plasticity in a computational model of the tail-withdrawal circuit in Aplysia, Neurocomputing, doi:10.1016/j.neurcom.2006.10.080"
+ },
+ "class_id": 19,
+ "created": "2006-11-29T09:51:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 83472,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33985,
+ "object_name": "Baxter, Douglas"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22011,
+ "object_name": "Post-Tetanic Potentiation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83473,
+ "object_name": "Baxter DA, Byrne JH (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Homosynaptic plasticity in the tail withdrawal circuit (TWC) of Aplysia (Baxter and Byrne 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52413,
+ "object_name": "Aplysia sensory neuron"
+ },
+ {
+ "object_id": 52414,
+ "object_name": "Aplysia interneuron"
+ },
+ {
+ "object_id": 52415,
+ "object_name": "Aplysia motor neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The tail-withdrawal circuit of Aplysia provides a useful model system for investigating synaptic dynamics. Sensory neurons within the circuit manifest several forms of synaptic plasticity. Here, we developed a model of the circuit and investigated the ways in which depression (DEP) and potentiation (POT) contributed to information processing. DEP limited the amount of motor neuron activity that could be elicited by the monosynaptic pathway alone. POT within the monosynaptic pathway did not compensate for DEP. There was, however, a synergistic interaction between POT and the polysynaptic pathway. This synergism extended the dynamic range of the network, and the interplay between DEP and POT made the circuit respond preferentially to long-duration, low-frequency inputs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83472",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Aplysia Sensory Neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "douglas.baxter@uth.tmc.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249921,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:08:11.487",
+ "ver_number": 13
+ },
+ "83491": {
+ "class_id": 19,
+ "created": "2006-12-04T10:28:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 88208,
+ "object_name": "Late Na"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 88210,
+ "object_name": "I_Na,Ca"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122803,
+ "object_name": "Kv4.3 KCND3"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 83491,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83534,
+ "object_name": "Flaim, Sarah [flaim at comlab.ox.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83493,
+ "object_name": "Flaim SN, Giles WR, McCulloch AD (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "INa and IKv4.3 heterogeneity in canine LV myocytes (Flaim et al 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ },
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The roles of sustained components of INa and IKv43 in shaping the\r\naction potentials (AP) of myocytes isolated from the canine left\r\nventricle (LV) have not been studied in detail. Here we investigate\r\nthe hypothesis that these two currents can contribute substantially to\r\nheterogeneity of early repolarization and arrhythmic\r\nrisk.... The resulting simulations illustrate ways in which KChIP2- and\r\nCa2+- dependent control of IKv43 can result in a sustained outward\r\ncurrent that can neutralize INaL in a rate- and myocyte\r\nsubtype-dependent manner. Both these currents appear to play\r\nsignificant roles in modulating AP duration and rate dependence in\r\nmidmyocardial myocytes. ... By design, these models allow upward\r\nintegration into organ models or may be used as a basis for further\r\ninvestigations into cellular heterogeneities.\" See paper for more\r\nand details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83491",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Late Na, Na/Ca exchanger, INaCa, ISERCA"
+ },
+ "ver_date": "2018-02-26T11:05:54.493",
+ "ver_number": 24
+ },
+ "83508": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 83527,
+ "object_name": "IGOR Pro experiment file"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2006-12-04T18:36:20",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 83508,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83510,
+ "object_name": "Powers, Randy [rkpowers at u.washington.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83495,
+ "object_name": "Powers RK, Dai Y, Bell BM, Percival DB, Binder MD (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83509,
+ "object_name": "IGOR Pro"
+ }
+ ]
+ },
+ "name": "Contibutions of input and history to motoneuron output (Powers et al 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The present study presents results based\r\non recordings of noise-driven discharge in rat hypoglossal motoneurones ... First, we show that the hyperpolarizing trough is larger in Average Current Trajectories (ACTs)\r\ncalculated from spikes preceded by long interspike intervals, and minimal or absent in those\r\nbased on short interspike intervals. Second, we show that the trough is present for ACTs\r\ncalculated from the discharge of a threshold-crossing neurone model with a postspike after-\r\nhyperpolarization (AHP), but absent from those calculated from the discharge of a model\r\nwithout an AHP. We show that it is possible to represent noise-driven discharge using a\r\ntwo-component linear model that predicts discharge probability based on the sum of a feedback\r\nkernel and a stimulus kernel. The feedback kernel reflects the influence of prior discharge\r\nmediated by the AHP, and it increases in amplitude when AHP amplitude is increased by\r\npharmacological manipulations. Finally, we show that the predictions of this model are virtually\r\nidentical to those based on the first-order Wiener kernel. This suggests that the Wiener kernel\r\nderived from standard white-noise analysis of noise-driven discharge in neurones actually\r\nreflect the effects of both stimulus and discharge history.\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83508",
+ "ver_date": "2017-07-31T16:43:22.467",
+ "ver_number": 10
+ },
+ "83512": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 83513,
+ "object_name": "local copy of scripts"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2006-12-05T10:43:49",
+ "gitrepo": false,
+ "id": 83512,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64248,
+ "object_name": "Hasselmo, Michael E [hasselmo at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83511,
+ "object_name": "Hasselmo ME (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Prefrontal cortical mechanisms for goal-directed behavior (Hasselmo 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\".. a model of prefrontal cortex function emphasizing\r\nthe influence of goal-related activity on the choice\r\nof the next motor output. ...\r\nDifferent neocortical minicolumns represent distinct sensory\r\ninput states and distinct motor output actions. The dynamics\r\nof each minicolumn include separate phases of encoding and\r\nretrieval. During encoding, strengthening of excitatory connections\r\nforms forward and reverse associations between each\r\nstate, the following action, and a subsequent state, which\r\nmay include reward. During retrieval, activity spreads from\r\nreward states throughout the network. The interaction of this\r\nspreading activity with a specific input state directs selection of\r\nthe next appropriate action. Simulations demonstrate how\r\nthese mechanisms can guide performance in a range of goal directed\r\ntasks, and provide a functional framework for some\r\nof the neuronal responses previously observed in the medial\r\nprefrontal cortex during performance of spatial memory tasks\r\nin rats.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83512",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2013-01-15T10:38:09",
+ "ver_number": 10
+ },
+ "83514": {
+ "class_id": 19,
+ "created": "2006-12-06T11:08:39",
+ "gitrepo": false,
+ "id": 83514,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64248,
+ "object_name": "Hasselmo, Michael E [hasselmo at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 72672,
+ "object_name": "Sutton RS, Barto AG (2002)"
+ },
+ {
+ "object_id": 116475,
+ "object_name": "Sutton RS, Barto AG (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A reinforcement learning example (Sutton and Barto 1998)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This MATLAB script demonstrates an example of reinforcement learning\r\nfunctions guiding the movements of an agent (a black square) in a\r\ngridworld environment. See at the top of the matlab script and the book for more details.\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83514",
+ "ver_date": "2007-11-02T17:13:13",
+ "ver_number": 8
+ },
+ "83516": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 83518,
+ "object_name": "backup for weblink"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2006-12-06T11:42:26",
+ "gitrepo": false,
+ "id": 83516,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64248,
+ "object_name": "Hasselmo, Michael E [hasselmo at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83515,
+ "object_name": "Hasselmo ME, Eichenbaum H (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Hippocampal context-dependent retrieval (Hasselmo and Eichenbaum 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... The model simulates the context-sensitive firing properties of hippocampal neurons including trial-specific firing during spatial\r\nalternation and trial by trial changes in theta phase precession on a linear track. ...\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83516",
+ "ver_date": "2007-11-02T17:17:22",
+ "ver_number": 7
+ },
+ "83517": {
+ "class_id": 19,
+ "created": "2006-12-06T12:04:27",
+ "gitrepo": false,
+ "id": 83517,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 64248,
+ "object_name": "Hasselmo, Michael E [hasselmo at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 27882,
+ "object_name": "Hasselmo ME, Schnell E, Barkai E (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Fixed point attractor (Hasselmo et al 1995)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In the model, cholinergic suppression of synaptic transmission at excitatory feedback synapses is shown to determine the extent to which activity depends upon new features of the afferent input versus components of previously stored representations. ...\" See paper for more and details. The MATLAB script demonstrates the model of fixed point attractors mediated by excitatory feedback with subtractive inhibition in a continuous firing rate model.\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83517",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2008-10-09T10:31:54",
+ "ver_number": 7
+ },
+ "83520": {
+ "class_id": 19,
+ "created": "2006-12-06T14:24:25",
+ "gitrepo": false,
+ "id": 83520,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83206,
+ "object_name": "Carlson BA, Kawasaki M (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Ambiguous Encoding and Distorted Perception (Carlson and Kawasaki 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88119,
+ "object_name": "Electric fish P- and T-type primary afferent fibers"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In\r\nthe weakly electric fish Eigenmannia, P- and T-type primary afferent fibers are specialized for encoding the amplitude and phase,\r\nrespectively, of electrosensory stimuli. We used a stimulus estimation technique to quantify the ability of P- and T-units to encode\r\nrandom modulations in amplitude and phase. As expected, P-units exhibited a clear preference for encoding amplitude modulations,\r\nwhereas T-units exhibited a clear preference for encoding phase modulations. Surprisingly, both types of afferents also encoded their\r\nnonpreferred stimulus attribute when it was presented in isolation or when the preferred stimulus attribute was sufficiently weak.\r\nBecause afferent activity can be affected by modulations in either amplitude or phase, it is not possible to unambiguously distinguish\r\nbetween these two stimulus attributes by observing the activity of a single afferent fiber. Simple model neurons with a preference for\r\nencoding either amplitude or phase also encoded their nonpreferred stimulus attribute when it was presented in isolation, suggesting that\r\nsuch ambiguity is unavoidable. ... \" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83520",
+ "ver_date": "2015-05-11T10:53:35.063",
+ "ver_number": 9
+ },
+ "83521": {
+ "class_id": 19,
+ "created": "2006-12-06T14:40:39",
+ "gitrepo": false,
+ "id": 83521,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83522,
+ "object_name": "Carlson BA, Kawasaki M (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Combination sensitivity and active conductances (Carlson and Kawasaki 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88204,
+ "object_name": "Electric fish midbrain torus semicircularis neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... The weakly electric fish Gymnarchus discriminates the\r\nsign of the frequency difference (Df) between a neighbor\u2019s electric\r\norgan discharge (EOD) and its own EOD by comparing temporal\r\npatterns of amplitude modulation (AM) and phase modulation (PM).\r\nSign-selective neurons in the midbrain respond preferentially to either\r\npositive frequency differences (Df >0 selective) or negative frequency\r\ndifferences (Df <0 selective). To study the mechanisms of\r\ncombination sensitivity, we made whole cell intracellular recordings\r\nfrom sign-selective midbrain neurons in vivo and recorded postsynaptic\r\npotential (PSP) responses to AM, PM, Df >0, and Df <0.\r\n... Responses to the nonpreferred\r\nsign of Df, but not the preferred sign of Df, were substantially weaker\r\nthan linear predictions, causing a significant increase in the actual\r\ndegree of sign selectivity. By using various levels of current clamp\r\nand comparing our results to simple models of synaptic integration,\r\nwe demonstrate that this decreased response to the nonpreferred sign\r\nof Df is caused by a reduction in voltage-dependent excitatory\r\nconductances. This finding reveals that nonlinear decoders, in the\r\nform of voltage-dependent conductances, can enhance the selectivity\r\nof single neurons for particular combinations of stimulus attributes.\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83521",
+ "ver_date": "2015-07-26T11:49:15.303",
+ "ver_number": 12
+ },
+ "83523": {
+ "class_id": 19,
+ "created": "2006-12-06T16:39:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 83523,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 110661,
+ "object_name": "Korngreen, Alon [alon.korngreen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83497,
+ "object_name": "Korngreen A, Kaiser KM, Zilberter Y (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Subthreshold inact. of K channels modulates APs in bitufted interneurons (Korngreen et al 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 93384,
+ "object_name": "Neocortex bitufted interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "... In this study we show that in bitufted interneurones\r\nfrom layer 2/3 of the somatosensory cortex, the height and width of APs recorded at the\r\nsoma are sensitive to changes in the resting membrane potential, suggesting subthreshold\r\nactivity of voltage-gated conductances. Attributes of K+ currents examined in nucleated\r\npatches revealed a fast subthreshold-inactivating K+ conductance (Kf ) and a slow\r\nsuprathreshold-inactivating K+ conductance (Ks ). Simulations of these K+ conductances,\r\nincorporated into a Hodgkin\u2013Huxley-type model, suggested that during a single AP or during\r\nlow frequency trains of APs, subthreshold inactivation of Kf was the primary modulator of AP\r\nshape, whereas during trains of APs the shape was governed to a larger degree by Ks resulting\r\nin the generation of smaller and broader APs. ... Compartmental simulation\r\nof the back-propagating AP suggested a mechanism for the modulation of the back-propagating\r\nAP height and width by subthreshold activation of Kf . We speculate that this signal may\r\nmodulate retrograde GABA release and consequently depression of synaptic efficacy of excitatory\r\ninput from neighbouring pyramidal neurones."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83523",
+ "ver_date": "2008-01-14T14:54:34",
+ "ver_number": 8
+ },
+ "83528": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Weber C, Wermter S, Elshaw M (2006) A hybrid generative and \r\npredictive model of the motor cortex. Neural Netw 19:339\u201453"
+ },
+ "class_id": 19,
+ "created": "2006-12-11T16:57:38",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 83528,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83529,
+ "object_name": "Weber, Cornelius [cweber at fias.uni-frankfurt.de]"
+ },
+ {
+ "object_id": 83530,
+ "object_name": "Elshaw, Mark [mark.elshaw at sunderland.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83265,
+ "object_name": "Weber C, Wermter S, Elshaw M (2006)"
+ },
+ {
+ "object_id": 83532,
+ "object_name": "Weber C, Triesch J (2006)"
+ },
+ {
+ "object_id": 83533,
+ "object_name": "Weber C, Wermter S (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Cortex learning models (Weber at al. 2006, Weber and Triesch, 2006, Weber and Wermter 2006/7)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A simulator and the configuration files for three publications are\r\nprovided. First, \"A hybrid generative and predictive model of the motor\r\ncortex\" (Weber at al. 2006) which uses reinforcement learning to set up a\r\ntoy action scheme, then uses unsupervised learning to \"copy\" the learnt\r\naction, and an attractor network to predict the hidden code of the\r\nunsupervised network. Second, \"A Self-Organizing Map of Sigma-Pi Units\"\r\n(Weber and Wermter 2006/7) learns frame of reference transformations on\r\npopulation codes in an unsupervised manner. Third, \"A possible\r\nrepresentation of reward in the learning of saccades\" (Weber and Triesch,\r\n2006) implements saccade learning with two possible learning schemes for\r\nhorizontal and vertical saccades, respectively."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83528",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-17T16:47:00.917",
+ "ver_number": 15
+ },
+ "83547": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Komendantov A.O., Komendantova O.G., Johnson S.W., Canavier C.C. (2004) A modeling study suggests complementary roles for GABAA and NMDA receptors and the SK channel in regulating the firing pattern in midbrain dopamine neurons. J Neurophysiol 91: 346-357, 2004."
+ },
+ "class_id": 19,
+ "created": "2006-12-19T13:02:36",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 83547,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83550,
+ "object_name": "Kuznetsova, Anna [anna.kuznetsova at utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83549,
+ "object_name": "Komendantov AO, Komendantova OG, Johnson SW, Canavier CC (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "83547",
+ "name": "ModelView"
+ }
+ ],
+ "default": "83547"
+ },
+ "name": "Regulation of the firing pattern in dopamine neurons (Komendantov et al 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Midbrain dopaminergic (DA) neurons in vivo exhibit two major firing patterns: single-spike firing and burst firing. The firing pattern expressed is dependent on both the intrinsic properties of the neurons and their excitatory and inhibitory synaptic inputs. Experimental data suggest that the activation of NMDA and GABAA receptors is crucial contributor to the initiation and suppression of burst firing, respectively, and that blocking calcium-activated potassium channels can facilitate burst firing. This multi-compartmental model of a DA neuron with a branching structure was developed and calibrated based on in vitro experimental data to explore the effects of different levels of activation of NMDA and GABAA receptors as well as the modulation of the SK current on the firing activity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83547",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kuznetsova Anna akuzne@lsuhsc.edu"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "akuzne@lsuhsc.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181417,
+ "object_name": "83547"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T01:16:39",
+ "ver_number": 12
+ },
+ "83558": {
+ "biosimulations": {
+ "value": "modeldb-83558"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Goldberg JA, Deister CA, Wilson CJ (2006)"
+ },
+ "class_id": 19,
+ "created": "2006-12-31T16:52:30",
+ "gitrepo": false,
+ "id": 83558,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83567,
+ "object_name": "Goldberg, Joshua [JoshG at ekmd.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 137847,
+ "object_name": "Phase Response Curves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83212,
+ "object_name": "Goldberg JA, Deister CA, Wilson CJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Role of active dendrites in rhythmically-firing neurons (Goldberg et al 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The responsiveness of rhythmically-firing neurons to synaptic inputs is characterized by their phase response curve (PRC), which relates how weak somatic perturbations affect the timing of the next action potential. The shape of the somatic PRC is an important determinant of collective network dynamics. Here we study theoretically and experimentally the impact of distally-located synapses and dendritic nonlinearities on the synchronization properties of rhythmically firing neurons. Combining the theories of quasi-active cables and phase-coupled oscillators we derive an approximation for the dendritic responsiveness, captured by the neuron's dendritic PRC (dPRC). This closed-form expression indicates that the dPRCs are linearly-filtered versions of the somatic PRC, and that the filter characteristics are determined by the passive and active properties of the dendrite. ... collective dynamics can be qualitatively different depending on the location of the synapse, the neuronal firing rates and the dendritic nonlinearities.\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83558",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2011-03-10T10:20:06",
+ "ver_number": 6
+ },
+ "83559": {
+ "citation": {
+ "attr_id": 391,
+ "value": "17167083"
+ },
+ "class_id": 19,
+ "created": "2007-01-03T07:21:43",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 83559,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83561,
+ "object_name": "Humphries, Mark D [m.d.humphries at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83557,
+ "object_name": "Humphries MD, Stewart RD, Gurney KN (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spiking neuron model of the basal ganglia (Humphries et al 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A spiking neuron model of the basal ganglia (BG) circuit (striatum, STN, GP, SNr). Includes: parallel anatomical channels; tonic dopamine; dopamine receptors in striatum, STN, and GP; burst-firing in STN; GABAa, AMPA, and NMDA currents; effects of synaptic location. Model demonstrates selection and switching of input signals. Replicates experimental data on changes in slow-wave (<1 Hz) and gamma-band oscillations within BG nuclei following lesions and pharmacological manipulations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83559",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Action selection"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Subthalamic nucleus; globus pallidus"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "m.d.humphries@shef.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2014-05-21T11:05:16",
+ "ver_number": 14
+ },
+ "83560": {
+ "citation": {
+ "attr_id": 391,
+ "value": "11417053, 15600234"
+ },
+ "class_id": 19,
+ "created": "2007-01-03T10:05:48",
+ "gitrepo": false,
+ "id": 83560,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83561,
+ "object_name": "Humphries, Mark D [m.d.humphries at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 65222,
+ "object_name": "Gurney K, Prescott TJ, Redgrave P (2001)"
+ },
+ {
+ "object_id": 83565,
+ "object_name": "Gurney KN, Humphries M, Wood R, Prescott TJ, Redgrave P (2004)"
+ },
+ {
+ "object_id": 83566,
+ "object_name": "Gurney K, Prescott TJ, Redgrave P (2001)"
+ },
+ {
+ "object_id": 83568,
+ "object_name": "Humphries MD (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Population-level model of the basal ganglia and action selection (Gurney et al 2001, 2004)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We proposed a new functional architecture for the basal ganglia (BG) based on the premise that these brain structures play a central role in behavioural action selection. The papers quantitatively describes the properties of the model using analysis and simulation. In the first paper, we show that the decomposition of the BG into selection and control pathways is supported in several ways. First, several elegant features are exposed--capacity scaling, enhanced selectivity and synergistic dopamine modulation--which might be expected to exist in a well designed action selection mechanism. Second, good matches between model GPe output and GPi and SNr output, and neurophysiological data, have been found. Third, the behaviour of the model as a signal selection mechanism has parallels with some kinds of action selection observed in animals under various levels of dopaminergic modulation.\r\n\r\nIn the second paper, we extend the BG model to include new connections, and show that action selection is maintained. In addition, we provide quantitative measures for defining different forms of selection, and methods for assessing performance changes in computational neuroscience models. \r\n\r\n\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83560",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Action selection"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Simulink"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "m.d.humphries@shef.ac.uk"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 132
+ },
+ "ver_date": "2008-10-09T15:43:50",
+ "ver_number": 8
+ },
+ "83562": {
+ "citation": {
+ "attr_id": 391,
+ "value": "11873842"
+ },
+ "class_id": 19,
+ "created": "2007-01-03T11:06:37",
+ "gitrepo": false,
+ "id": 83562,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83561,
+ "object_name": "Humphries, Mark D [m.d.humphries at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83568,
+ "object_name": "Humphries MD (2003)"
+ },
+ {
+ "object_id": 83569,
+ "object_name": "Humphries MD, Gurney KN (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Basal ganglia-thalamocortical loop model of action selection (Humphries and Gurney 2002)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We embed our basal ganglia model into a wider circuit containing the motor thalamocortical loop and thalamic reticular nucleus (TRN). Simulation of this extended model showed that the additions gave five main results which are desirable in a selection/switching mechanism. First, low salience actions (i.e. those with low urgency) could be selected. Second, the range of salience values over which actions could be switched between was increased. Third, the contrast between the selected and non-selected actions was enhanced via improved differentiation of outputs from the BG. Fourth, transient increases in the salience of a non-selected action were prevented from interrupting the ongoing action, unless the transient was of sufficient magnitude. Finally, the selection of the ongoing action persisted when a new closely matched salience action became active. The first result was facilitated by the thalamocortical loop; the rest were dependent on the presence of the TRN. Thus, we conclude that the results are consistent with these structures having clearly defined functions in action selection."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83562",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Action selection"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Simulink"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "m.d.humphries@shef.ac.uk"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 79
+ },
+ "ver_date": "2007-11-02T14:01:02",
+ "ver_number": 9
+ },
+ "83570": {
+ "biosimulations": {
+ "value": "modeldb-83570"
+ },
+ "class_id": 19,
+ "created": "2007-01-03T17:59:36",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 83570,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83567,
+ "object_name": "Goldberg, Joshua [JoshG at ekmd.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 72561,
+ "object_name": "Goldberg JA, Rokni U, Sompolinsky H (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "A theory of ongoing activity in V1 (Goldberg et al 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Ongoing spontaneous activity in the cerebral cortex exhibits\r\ncomplex spatiotemporal patterns in the absence of sensory stimuli. To elucidate the nature of\r\nthis ongoing activity, we present a theoretical treatment of two contrasting scenarios of cortical dynamics: (1) fluctuations about a single background state\r\nand (2) wandering among multiple \u201cattractor\u201d states, which\r\nencode a single or several stimulus features.\r\nStudying simplified network rate models of the primary\r\nvisual cortex (V1), we show that the single state scenario\r\nis characterized by fast and high-dimensional\r\nGaussian-like fluctuations, whereas in the multiple\r\nstate scenario the fluctuations are slow, low dimensional,\r\nand highly non-Gaussian. Studying a more realistic model that incorporates correlations in the feedforward input, spatially restricted cortical interactions,\r\nand an experimentally derived layout of pinwheels,\r\nwe show that recent optical-imaging data of ongoing\r\nactivity in V1 are consistent with the presence of either\r\na single background state or multiple attractor states\r\nencoding many features."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83570",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-17T16:47:17.077",
+ "ver_number": 9
+ },
+ "83575": {
+ "biosimulations": {
+ "value": "modeldb-83575"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 14702331"
+ },
+ "class_id": 19,
+ "created": "2007-01-05T16:56:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122828,
+ "object_name": "D1 DRD1A"
+ },
+ {
+ "object_id": 122829,
+ "object_name": "D2 DRD2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 83575,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83576,
+ "object_name": "Yu X, Byrne JH, Baxter DA (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Modeling interactions in Aplysia neuron R15 (Yu et al 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52420,
+ "object_name": "Aplysia R15 bursting neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The biophysical properties of neuron R15 in Aplysia endow it with the ability to express multiple modes of oscillatory electrical activity, such as beating and bursting. Previous modeling studies examined the ways in which membrane conductances contribute to the electrical activity of R15 and the ways in which extrinsic modulatory inputs alter the membrane conductances by biochemical cascades and influence the electrical activity. The goals of the present study were to examine the ways in which electrical activity influences the biochemical cascades and what dynamical properties emerge from the ongoing interactions between electrical activity and these cascades.\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83575",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "second messenger"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "R15"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "douglas.baxter@uth.tmc.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ },
+ {
+ "object_id": 198,
+ "object_name": "5-HT1"
+ },
+ {
+ "object_id": 199,
+ "object_name": "5-HT2"
+ },
+ {
+ "object_id": 200,
+ "object_name": "5-HT4"
+ },
+ {
+ "object_id": 208,
+ "object_name": "5-HT3"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "ver_date": "2014-07-18T15:55:46",
+ "ver_number": 10
+ },
+ "83590": {
+ "class_id": 19,
+ "created": "2007-01-09T06:45:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 83590,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87550,
+ "object_name": "Arsiero M, L\u00fcscher HR, Lundstrom BN, Giugliano M (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "83590",
+ "name": "ModelView"
+ }
+ ],
+ "default": "83590"
+ },
+ "name": "Input Fluctuations effects on f-I curves (Arsiero et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We examined in vitro frequency versus current (f-I) relationships of layer 5 (L5) pyramidal cells of the rat medial prefrontal cortex (mPFC) using fluctuating stimuli. ...our results show that mPFC L5 pyramidal neurons retain an increased sensitivity to input fluctuations, whereas their sensitivity to the input mean diminishes to near zero. This implies that the discharge properties of L5 mPFC neurons are well suited to encode input fluctuations rather than input mean in their firing rates, with important consequences for information processing and stability of persistent activity at the network level.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/83590",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "noise"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181487,
+ "object_name": "83590"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 265
+ },
+ "ver_date": "2022-11-04T17:19:38.957",
+ "ver_number": 21
+ },
+ "84167": {
+ "class_id": 19,
+ "created": "2007-01-18T16:59:27",
+ "gitrepo": false,
+ "id": 84167,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 84168,
+ "object_name": "Izhikevich, Eugene [Eugene.Izhikevich at braincorporation.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83595,
+ "object_name": "Izhikevich EM (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Linking STDP and Dopamine action to solve the distal reward problem (Izhikevich 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... How does the brain know what firing patterns of what neurons are responsible for the reward if 1) the patterns are no longer there when the reward arrives and 2) all\r\nneurons and synapses are active during the waiting period to the\r\nreward? Here, we show how the conundrum is resolved by a model network\r\nof cortical spiking neurons with spike-timing-dependent plasticity\r\n(STDP) modulated by dopamine (DA). Although STDP is triggered by\r\nnearly coincident firing patterns on a millisecond timescale, slow\r\nkinetics of subsequent synaptic plasticity is sensitive to changes in\r\nthe extracellular DA concentration during the critical period of a few\r\nseconds. ... This study emphasizes the importance of precise firing\r\npatterns in brain dynamics and suggests how a global diffusive\r\nreinforcement signal in the form of extracellular DA can selectively\r\ninfluence the right synapses at the right time.\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84167",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 119
+ },
+ "ver_date": "2017-06-15T11:14:45.3",
+ "ver_number": 13
+ },
+ "84589": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Gold C, Henze DA, Koch C. (2007). Using Extracellular Action Potential Recordings to Tune Compartmental Models. Journal of Computational Neuroscience. In Press."
+ },
+ "class_id": 19,
+ "created": "2007-01-21T16:24:05",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 84589,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 84590,
+ "object_name": "Gold, Carl [carlg at caltech.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 28766,
+ "object_name": "Holt GR, Koch C (1999)"
+ },
+ {
+ "object_id": 75414,
+ "object_name": "Gold C, Henze DA, Koch C, Buzs\u00e1ki G (2006)"
+ },
+ {
+ "object_id": 84591,
+ "object_name": "Holt G (1998)"
+ },
+ {
+ "object_id": 84592,
+ "object_name": "Gold C, Henze DA, Koch C (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Extracellular Action Potential Simulations (Gold et al 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This package recreates the the principal experiments described in (Gold, Henze and Koch, 2007) and includes the core code necessary to create your own Extracellular Action Potential Simulations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84589",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Extracellular Action Pote"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gold, Carl "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "carl@klab.caltech.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 243
+ },
+ "ver_date": "2019-09-27T15:22:02.503",
+ "ver_number": 16
+ },
+ "84593": {
+ "class_id": 19,
+ "created": "2007-01-22T12:09:33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 84593,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 84594,
+ "object_name": "Wang, Xiao-Jing [xjwang at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82035,
+ "object_name": "Wang XJ, Liu Y, Sanchez-Vives MV, McCormick DA (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Temporal decorrelation by intrinsic cellular dynamics (Wang et al 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Recent investigations in primary visual (V1) cortical neurons have\r\ndemonstrated that adaptation to prolonged changes in stimulus contrast\r\nis mediated in part through intrinsic ionic currents, a Ca2+\r\nactivated K+ current (IKCa) and especially a Na+ activated K+ current\r\n(IKNa). The present study was designed to test the hypothesis that\r\nthe activation of adaptation ionic currents may provide a cellular\r\nmechanism for temporal decorrelation in V1. A conductance-based\r\nneuron model was simulated, which included an IKCa and an IKNa. We\r\nshow that the model neuron reproduces the adaptive behavior of V1\r\nneurons in response to high contrast inputs. ...\". See paper for details and more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84593",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Correlation"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "IK, Na"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "spiny stellate"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 70
+ },
+ "ver_date": "2018-10-17T16:48:33.563",
+ "ver_number": 9
+ },
+ "84599": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 16914611"
+ },
+ "class_id": 19,
+ "created": "2007-01-23T20:39:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 84599,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 84601,
+ "object_name": "Takahata, Masakazu [takahata at sci.hokudai.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83231,
+ "object_name": "Takashima A, Hikosaka R, Takahata M (2006)"
+ },
+ {
+ "object_id": 83232,
+ "object_name": "Takahata M, Takashima A, Hikosaka R (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Synaptic integration of an identified nonspiking interneuron in crayfish (Takashima et al 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87588,
+ "object_name": "Crayfish identified nonspiking interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This GENESIS simulation shows how a single or compound excitatory synaptic potential evoked by mechanosensory stimulation spreads over the dendrites of the LDS interneuron that is one of the identified nonspiking interneurons in the central nervous system of crayfish Procambarus clarkii. The model is based on physiological experiments carried out by Akira Takashima using single-electrode voltage clamp techniques and also 3-D morphometry of the interneuron carried out by Ryou Hikosaka using confocal laser scanning microscopic techniques. The physiological and morphological studies were coordinated by Masakazu Takahata."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84599",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Takahata, Masakazu "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "an identified nonspiking interneuron in crayfish"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "takashim@sci.hokudai.ac.jp"
+ },
+ "ver_date": "2008-03-05T09:21:12",
+ "ver_number": 10
+ },
+ "84606": {
+ "biosimulations": {
+ "value": "modeldb-84606"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Zonisamide-induced inhibition on the firing of action potentials in hippocampal neuron"
+ },
+ "class_id": 19,
+ "created": "2007-01-27T03:51:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 84606,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 84610,
+ "object_name": "Huang, Chin-Wei"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 84609,
+ "object_name": "Huang CW, Huang CC, Wu SN (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Zonisamide-induced inhibition of the firing of APs in hippocampal neurons (Huang et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Zonisamide (ZNS), a synthetic benzisoxazole derivative, has been used as an alternative choice in the treatment of epilepsy with a better efficacy and safety profile. However, little is known regarding the mechanism of ZNS actions on ion currents in neurons. We thus investigated its effect on ion currents in differentiated hippocampal 19-7 cells. The ZNS (30 uM) reversibly increased the amplitude of K+ outward currents and paxilline (1 uM) was effective in suppressing ZNS-induced increase of K+ outward currents. In inside-out configuration, ZNS (30 uM) applied to the intracellular face of the membrane did not alter single-channel conductance; however, it did enhance the activity of large-conductance Ca2+-activated K+ (BKCa) channels primarily by decreasing mean closed time. The EC50 value for ZNS-stimulated BKCa channels was 34 uM. This drug caused a left shift in the activation curve of BKCa channels with no change in the gating charge of these channels. ZNS at a concentration greater than 100 uM also reduced the amplitude of A-type K+ current in these cells. A simulation modeling based on hippocampal CA3 pyramidal neurons (Pinsky-Rinzel model) was also analyzed to investigate the inhibitory effect of ZNS on the firing of simulated action potentials. Taken together, this study suggests that in hippocampal neurons, during the exposure to ZNS, the ZNS-mediated effects on BKCa channels and IA could be one of the ionic mechanisms through which it affects neuronal excitability."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84606",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Dr. Chin-Wei Huang"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2015-07-26T13:28:16.64",
+ "ver_number": 11
+ },
+ "84612": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Canavier and Landry 2006"
+ },
+ "class_id": 19,
+ "created": "2007-01-31T12:24:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 84612,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83550,
+ "object_name": "Kuznetsova, Anna [anna.kuznetsova at utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83592,
+ "object_name": "Canavier CC, Landry RS (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Differential modulation of pattern and rate in a dopamine neuron model (Canavier and Landry 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A stylized, symmetric, compartmental model of a dopamine neuron in vivo shows how rate and pattern can be modulated either concurrently or differentially. If two or more parameters in the model are varied concurrently, the baseline firing rate and the extent of bursting become decorrelated, which provides an explanation for the lack of a tight correlation in vivo and is consistent with some independence of the mechanisms that generate baseline firing rates versus bursting. ...\" See paper for more and details.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84612",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 223
+ },
+ "ver_date": "2022-12-16T10:42:19.54",
+ "ver_number": 16
+ },
+ "84627": {
+ "class_id": 19,
+ "created": "2007-02-09T14:32:03",
+ "gitrepo": false,
+ "id": 84627,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 84630,
+ "object_name": "Major LA, Hegedus J, Weber DJ, Gordon T, Jones KE (2007)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Method for counting motor units in mice (Major et al 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Our goal was to develop an efficient method\r\nto determine the number of motor neurons making functional connections\r\nto muscle in a transgenic mouse model of amyotrophic lateral\r\nsclerosis (ALS). We developed a novel protocol for motor unit\r\nnumber estimation (MUNE) using incremental stimulation. The\r\nmethod involves analysis of twitch waveforms using a new software\r\nprogram, ITS-MUNE, designed for interactive calculation of motor\r\nunit number. The method was validated by testing simulated twitch\r\ndata from a mathematical model of the neuromuscular system. Computer\r\nsimulations followed the same stimulus-response protocol and\r\nproduced waveform data that were indistinguishable from experiments.\r\n... The ITS-MUNE analysis method has the potential to quantitatively\r\nmeasure the progression of motor neuron diseases and therefore the\r\nefficacy of treatments designed to alleviate pathologic processes of\r\nmuscle denervation.\" The software is available for download under the \"ITS-MUNE software\" link at \r\n(see below for links).\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84627",
+ "ver_date": "2015-12-14T13:08:35.4",
+ "ver_number": 8
+ },
+ "84641": {
+ "class_id": 19,
+ "created": "2007-02-12T13:28:29",
+ "gitrepo": false,
+ "id": 84641,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 84650,
+ "object_name": "Bers, Donald M"
+ },
+ {
+ "object_id": 84651,
+ "object_name": "Puglisi, Jose "
+ },
+ {
+ "object_id": 84652,
+ "object_name": "Salah, Wajeeh "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 60348,
+ "object_name": "Puglisi JL, Bers DM (2001)"
+ },
+ {
+ "object_id": 84648,
+ "object_name": "Busjahn A, Seebohm G, Maier G, Toliat MR, N\u00fcrnberg P, Aydin A, Luft FC, Lang F (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A cardiac cell simulator (Puglisi and Bers 2001), applied to the QT interval (Busjahn et al 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ },
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"LabHEART is an easy to use program that simulates the cardiac action potential, calcium transient and ionic currents. Key parameters such as ionic concentration, stimulus waveform and channel conductance can easily be changed by a click on an icon or dragging a slider.\r\n\r\nIt is a powerfull tool for teaching and researching cardiac electrophysiology.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84641",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-06-15T11:28:55.75",
+ "ver_number": 13
+ },
+ "84649": {
+ "class_id": 19,
+ "created": "2007-02-12T15:40:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 84649,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 84650,
+ "object_name": "Bers, Donald M"
+ },
+ {
+ "object_id": 84651,
+ "object_name": "Puglisi, Jose "
+ },
+ {
+ "object_id": 84652,
+ "object_name": "Salah, Wajeeh "
+ },
+ {
+ "object_id": 84653,
+ "object_name": "Mejia-Alvarez, Rafael "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29126,
+ "object_name": "HODGKIN AL, HUXLEY AF (1952)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Squid axon (Hodgkin, Huxley 1952) (LabAXON)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The classic HH model of squid axon membrane implemented in LabAXON. Hodgkin, A.L., Huxley, A.F. (1952)"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84649",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2008-09-18T15:03:16",
+ "ver_number": 4
+ },
+ "84655": {
+ "class_id": 19,
+ "created": "2007-02-13T16:39:29",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 84655,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 84656,
+ "object_name": "Oltedal, Leif [Leif.Oltedal at biomed.uib.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 84639,
+ "object_name": "Oltedal L, M\u00f8rkve SH, Veruki ML, Hartveit E (2007)"
+ },
+ {
+ "object_id": 84654,
+ "object_name": "Mennerick S, Zenisek D, Matthews G (1997)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "84655",
+ "name": "ModelView"
+ }
+ ],
+ "default": "84655"
+ },
+ "name": "Recording from rod bipolar axon terminals in situ (Oltedal et al 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7020,
+ "object_name": "Retina bipolar GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Whole cell\r\nrecordings from axon terminals and cell bodies were used to investigate\r\nthe passive membrane properties of rod bipolar cells and analyzed\r\nwith a two-compartment equivalent electrical circuit model\r\ndeveloped by Mennerick et al. For both terminal- and soma-end\r\nrecordings, capacitive current decays were well fitted by biexponential\r\nfunctions. Computer simulations of simplified models of rod bipolar\r\ncells demonstrated that estimates of the capacitance of the axon\r\nterminal compartment can depend critically on the recording location,\r\nwith terminal-end recordings giving the best estimates. Computer\r\nsimulations and whole cell recordings demonstrated that terminal-end\r\nrecordings can yield more accurate estimates of the peak amplitude\r\nand kinetic properties of postsynaptic currents generated at the axon\r\nterminals due to increased electrotonic filtering of these currents when\r\nrecorded at the soma. ...\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/84655",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 321
+ },
+ "ver_date": "2015-07-26T13:29:57.907",
+ "ver_number": 10
+ },
+ "85112": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 87558,
+ "object_name": "under development for fig 9"
+ }
+ ]
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "16002450"
+ },
+ "class_id": 19,
+ "created": "2007-02-17T16:01:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ },
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ },
+ {
+ "object_id": 92089,
+ "object_name": "Nav1.8 SCN10A"
+ },
+ {
+ "object_id": 92091,
+ "object_name": "Nav1.9 SCN11A SCN12A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 85112,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83248,
+ "object_name": "Baker MD (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "85112",
+ "name": "ModelView"
+ }
+ ],
+ "default": "85112"
+ },
+ "name": "Models of Na channels from a paper on the PKC control of I Na,P (Baker 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The tetrodotoxin-resistant (TTX-r) persistent Na(+) current, attributed to Na(V)1.9, was recorded in small (< 25 mum apparent diameter) dorsal root ganglion (DRG) neurones cultured from P21 rats and from adult wild-type and Na(V)1.8 null mice. ... Numerical simulation of the up-regulation qualitatively reproduced changes in sensory neurone firing properties. ...\" Note: models of NaV1.8 and NaV1.9 and also persistent and transient Na channels that collectively model Nav 1.1, 1.6, and 1.7 are present in this model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/85112",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181243,
+ "object_name": "85112"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 285
+ },
+ "ver_date": "2013-12-10T15:39:27",
+ "ver_number": 13
+ },
+ "85981": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Postlethwaite M, Hennig MH, Steinert JR, Graham BP, Forsythe ID (2007) Acceleration of AMPA receptor kinetics underlies temperature-dependent changes in synaptic strength at the rat calyx of Held. J Physiol. 579: 69-84"
+ },
+ "class_id": 19,
+ "created": "2007-02-20T05:50:22",
+ "gitrepo": false,
+ "id": 85981,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139659,
+ "object_name": "Hennig, Matthias H [mhhennig at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 85984,
+ "object_name": "Postlethwaite M, Hennig MH, Steinert JR, Graham BP, Forsythe ID (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2835,
+ "object_name": "MCell"
+ }
+ ]
+ },
+ "name": "Modeling temperature changes in AMPAR kinetics (Postlethwaite et al 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 85986,
+ "object_name": "Medial Nucleus of the Trapezoid Body (MNTB) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was used to simulate glutamatergic, AMPA receptor mediated mEPSCs (miniature EPSCs, resulting from spontaneous vesicular transmitter release) at the calyx of Held synapse. It was used to assess the influence of temperature (physiological vs. subphysiological) on the amplitude and time course of mEPSCs. In the related paper, simulation results were directly compared to the experimental data, and it was concluded that an increase of temperature accelerates AMPA receptor kinetics."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/85981",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Transmitter Release"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "principal neurons in the MNTB"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mhhennig@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2015-10-26T18:17:03.557",
+ "ver_number": 4
+ },
+ "86537": {
+ "class_id": 19,
+ "created": "2007-02-23T18:25:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ },
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ },
+ {
+ "object_id": 92089,
+ "object_name": "Nav1.8 SCN10A"
+ },
+ {
+ "object_id": 92091,
+ "object_name": "Nav1.9 SCN11A SCN12A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 86537,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3906,
+ "object_name": "Herzog RI, Cummins TR, Waxman SG (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "TTX-R Na+ current effect on cell response (Herzog et al 2001)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Small dorsal root ganglion (DRG) neurons, which include nociceptors,\r\nexpress multiple voltage-gated sodium currents. In addition to a\r\nclassical fast inactivating tetrodotoxin-sensitive (TTX-S) sodium\r\ncurrent, many of these cells express a TTX-resistant (TTX-R) sodium\r\ncurrent that activates near -70 mV and is persistent at negative\r\npotentials. To investigate the possible contributions of this TTX-R\r\npersistent (TTX-RP) current to neuronal excitability, we carried out\r\ncomputer simulations using the Neuron program with TTX-S and -RP\r\ncurrents, fit by the Hodgkin-Huxley model, that closely matched the\r\ncurrents recorded from small DRG neurons. ...\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/86537",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2011-03-21T14:45:00",
+ "ver_number": 13
+ },
+ "86538": {
+ "citation": {
+ "attr_id": 391,
+ "value": "16326896; P.Borowski, \"Stochastic dynamics in olfactory signal transduction and development\", Dissertation (2006): http://nbn-resolving.de/urn:nbn:de:swb:14-1159519135136-22697"
+ },
+ "class_id": 19,
+ "created": "2007-02-23T19:15:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 254,
+ "object_name": "I CNG"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 86538,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 85108,
+ "object_name": "Reidl J, Borowski P, Sensse A, Starke J, Zapotocky M, Eiswirth M (2006)"
+ },
+ {
+ "object_id": 86539,
+ "object_name": "Borowski P (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Model of calcium oscillations in olfactory cilia (Reidl et al. 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulation of experiments on olfactory receptor neurons (ORNs). Focussing on the negative feedback that calcium (through calmodulin) has on its own influx through CNG channels, this model is able to reproduce both calcium oscillations as well as adaptation behaviour as seen in experiments done with ORNs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/86538",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Reidl, Juergen; Borowski, Peter; Sensse, Anke; Starke, Jens; Zapotocky, Martin; Eiswirth, Markus"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "borowski@math.ubc.ca"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 120
+ },
+ "ver_date": "2018-10-17T15:43:51.193",
+ "ver_number": 6
+ },
+ "87216": {
+ "citation": {
+ "attr_id": 391,
+ "value": "17267756"
+ },
+ "class_id": 19,
+ "created": "2007-03-06T14:52:23",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122826,
+ "object_name": "NR2A GRIN2A"
+ },
+ {
+ "object_id": 122827,
+ "object_name": "NR2B GRIN2B"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 87216,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 84616,
+ "object_name": "Gerkin RC, Lau PM, Nauen DW, Wang YT, Bi GQ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83509,
+ "object_name": "IGOR Pro"
+ }
+ ]
+ },
+ "name": "STDP and NMDAR Subunits (Gerkin et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper argues for competing roles of NR2A- and NR2B-containing NMDARs in spike-timing-dependent plasticity. This simple dynamical model recapitulates the results of STDP experiments involving selective blockers of NR2A- and NR2B-containing NMDARs, for which the stimuli are pre- and postsynaptic spikes in varying combinations. Experiments were done using paired recordings from glutamatergic neurons in rat hippocampal cultures. This model focuses on the dynamics of the putative potentiation and depression modules themselves, and their interaction For detailed dynamics involving NMDARs and Ca2+ transients, see Rubin et al., J. Neurophys., 2005."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87216",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "STDP"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rig4@pitt.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2009-07-14T13:48:30",
+ "ver_number": 5
+ },
+ "87278": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Clancy CE, Kass RS (2004) Theoretical investigation of the neuronal Na+ channel SCN1A: abnormal gating and epilepsy. Biophys J 86:2606\u201414"
+ },
+ "class_id": 19,
+ "created": "2007-03-07T21:55:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 87278,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 87283,
+ "object_name": "Clancy, Colleen E [ceclancy at ucdavis.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 84130,
+ "object_name": "Clancy CE, Kass RS (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Markov models of SCN1A (NaV1.1) applied to abnormal gating and epilepsy (Clancy and Kass 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Recently, some forms of idiopathic epilepsy have been causally related to\r\ngenetic mutations in neuronal ion channels. To understand disease\r\nmechanisms, it is crucial to understand how a gene defect can disrupt\r\nchannel gating, which in turn can affect complex cellular dynamic\r\nprocesses. We develop a theoretical Markovian model of the neuronal\r\nNa+ channel NaV1.1 to explore and explain gating mechanisms underlying\r\ncellular excitability and physiological and pathophysiological\r\nmechanisms of abnormal neuronal excitability in the context of\r\nepilepsy. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87278",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-02-26T11:08:26.403",
+ "ver_number": 8
+ },
+ "87284": {
+ "class_id": 19,
+ "created": "2007-03-09T15:41:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 87284,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ },
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126976,
+ "object_name": "Morse TM, Carnevale NT, Mutalik PG, Migliore M, Shepherd GM (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "87284_1",
+ "name": "Figure 1, 2"
+ },
+ {
+ "id": "87284_2",
+ "name": "Figure 3"
+ },
+ {
+ "id": "87284_3",
+ "name": "Figure 4"
+ },
+ {
+ "id": "87284_4",
+ "name": "Figure 5"
+ },
+ {
+ "id": "87284_5",
+ "name": "Figure 6"
+ }
+ ],
+ "default": "87284_1"
+ },
+ "name": "Amyloid beta (IA block) effects on a model CA1 pyramidal cell (Morse et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model simulations provide evidence oblique dendrites in CA1 pyramidal neurons are susceptible to hyper-excitability by amyloid beta block of the transient K+ channel, IA. See paper for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87284",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 153
+ },
+ "ver_date": "2017-03-13T17:25:23.043",
+ "ver_number": 111
+ },
+ "87450": {
+ "class_id": 19,
+ "created": "2007-03-12T15:02:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 87450,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 87451,
+ "object_name": "Schilstra, Maria [m.j.1.schilstra at herts.ac.uk]"
+ },
+ {
+ "object_id": 87452,
+ "object_name": "Lloyd, Catherine [c.lloyd at auckland.ac.nz]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29126,
+ "object_name": "HODGKIN AL, HUXLEY AF (1952)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 87474,
+ "object_name": "XML (web link to model)"
+ },
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ },
+ {
+ "object_id": 125746,
+ "object_name": "SBML (web link to model)"
+ }
+ ]
+ },
+ "name": "Squid axon (Hodgkin, Huxley 1952) (SBML, XPP, other)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An SBML (and related XPP and other formats) implementation of the classic HH paper is available in the BIOMODELS database. See far below for links."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87450",
+ "ver_date": "2015-12-14T11:47:43.55",
+ "ver_number": 16
+ },
+ "87454": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 87517,
+ "object_name": "first submission"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-03-13T09:21:54",
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 87454,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 87533,
+ "object_name": "Bahmer, Andreas [Andreas.Bahmer at kgu.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87211,
+ "object_name": "Bahmer A, Langner G (2006)"
+ },
+ {
+ "object_id": 87455,
+ "object_name": "Bahmer A, Langner G (2006)"
+ },
+ {
+ "object_id": 87518,
+ "object_name": "Bahmer A, Langner G (2007)"
+ },
+ {
+ "object_id": 125393,
+ "object_name": "Bahmer A, Langner G (2009)"
+ },
+ {
+ "object_id": 125394,
+ "object_name": "Bahmer A, Langner G (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "87454",
+ "name": "ModelView"
+ }
+ ],
+ "default": "87454"
+ },
+ "name": "Oscillating neurons in the cochlear nucleus (Bahmer Langner 2006a, b, and 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88112,
+ "object_name": "Cochlear ganglion cell Type II"
+ },
+ {
+ "object_id": 88113,
+ "object_name": "CN stellate cell"
+ },
+ {
+ "object_id": 88115,
+ "object_name": "Ventral cochlear nucleus T stellate (chopper) neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Based on the physiological and anatomical data, we propose a model consisting of a minimum network of two choppers that are interconnected with a synaptic delay of 0.4 ms (Bahmer and Langner 2006a) . Such minimum delays have been found in different systems and in various animals (e.g. Hackett, Jackson, and Rubel 1982; Borst, Helmchen, and Sakmann 1995). The choppers receive input from both the auditory nerve and an onset neuron. This model can reproduce the mean, standard deviation, and coefficient of variation of the ISI and the dynamic features of AM coding of choppers.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87454",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 127
+ },
+ "ver_date": "2018-10-18T15:19:09.627",
+ "ver_number": 23
+ },
+ "87473": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 87514,
+ "object_name": "authors"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-03-14T00:10:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 87473,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 87515,
+ "object_name": "Weaver, Christina [christina.weaver at fandm.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 80998,
+ "object_name": "Weaver CM, Wearne SL (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "AP shape and parameter constraints in optimization of compartment models (Weaver and Wearne 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 139834,
+ "object_name": "Vestibular neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We construct an\r\nobjective function that includes both time-aligned action potential shape error and errors in firing rate and firing regularity. We then\r\nimplement a variant of simulated annealing that introduces a recentering algorithm to handle infeasible points outside the boundary\r\nconstraints. We show how our objective function captures essential features of neuronal firing patterns, and why our boundary\r\nmanagement technique is superior to previous approaches.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87473",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181335,
+ "object_name": "87473"
+ }
+ ]
+ },
+ "ver_date": "2014-01-19T10:07:44",
+ "ver_number": 25
+ },
+ "87535": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 87545,
+ "object_name": "attempt to auto launch"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-03-21T06:03:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 87535,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114668,
+ "object_name": "Migliore M, Novara G, Tegolo D (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "87535",
+ "name": "ModelView"
+ }
+ ],
+ "default": "87535"
+ },
+ "name": "CA1 pyramidal neurons: binding properties and the magical number 7 (Migliore et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON files from the paper:\r\n\r\nSingle neuron binding properties and the magical number 7,\r\nby M. Migliore, G. Novara, D. Tegolo, Hippocampus, in press (2008).\r\n\r\nIn an extensive series of simulations with realistic morphologies and active properties, \r\nwe demonstrate how n radial (oblique) dendrites of these neurons may be used to bind n inputs \r\nto generate an output signal. \r\nThe results suggest a possible neural code as the most effective n-ple of dendrites that \r\ncan be used for short-term memory recollection of persons, objects, or places. \r\nOur analysis predicts a straightforward physiological explanation for the observed \r\npuzzling limit of about 7 short-term memory items that can be stored by humans.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87535",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181231,
+ "object_name": "87535"
+ }
+ ]
+ },
+ "ver_date": "2013-12-10T15:40:04",
+ "ver_number": 23
+ },
+ "87546": {
+ "class_id": 19,
+ "created": "2007-03-23T05:16:32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 87546,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 101634,
+ "object_name": "Minneci F, Janahmadi M, Migliore M, Dragicevic N, Avossa D, Cherubini E (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 oriens alveus interneurons: signaling properties (Minneci et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model supports the experimental findings showing that the dynamic interaction between cells with various firing patterns could differently affect GABAergic signaling, leading to a wide range of interneuronal communication within the hippocampal network."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87546",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181466,
+ "object_name": "87546"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 164
+ },
+ "ver_date": "2014-01-31T23:01:11",
+ "ver_number": 12
+ },
+ "87581": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hirst GD, Garcia-Londono AP, Edwards FR (2006) Propagation of slow waves in the guinea-pig gastric antrum. J Physiol 571:165\u201477 AND Edwards FR, Hirst GD (2006) An electrical analysis of slow wave propagation in the guinea-pig gastric antrum. J Physiol 571:179\u201489"
+ },
+ "class_id": 19,
+ "created": "2007-03-30T00:21:44",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 87581,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 87583,
+ "object_name": "Edwards, Frank [frank.edwards at anu.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64588,
+ "object_name": "Edwards FR, Hirst GD (2006)"
+ },
+ {
+ "object_id": 87213,
+ "object_name": "Hirst GD, Garcia-Londo\u00f1o AP, Edwards FR (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Slow wave propagation in the guinea-pig gastric antrum (Hirst et al. 2006, Edwards and Hirst 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156000,
+ "object_name": "Myenteric interstitial cell of Cajal (ICCMY)"
+ },
+ {
+ "object_id": 156002,
+ "object_name": "Intramuscular interstitial cell of Cajal (ICCIM)"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"(Edwards and Hirst 2006) provides an electrical description of the propagation of slow waves and pacemaker potentials in the guinea-pig gastric antrum in anal and circumferential directions. As electrical conduction between laterally adjacent circular muscle bundles is regularly interrupted, anal conduction of pacemaker potentials was assumed to occur via an electrically interconnected chain of myenteric interstitial cells of Cajal (ICCMY). ICCMY were also connected resistively to serially connected compartments of longitudinal muscle. Circumferential conduction occurred in a circular smooth muscle bundle that was represented as a chain of electrically connected isopotential compartments: each compartment contained a proportion of intramuscular interstitial cells of Cajal (ICCIM) that are responsible for the regenerative component of the slow wave. The circular muscle layer, which contains ICCIM, and the ICCMY network incorporated a mechanism, modelled as a two-stage chemical reaction, which produces an intracellular messenger. ... The model generates pacemaker potentials and slow waves with propagation velocities similar to those determined in the physiological experiments described in the accompanying paper.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87581",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115955,
+ "object_name": "Enteric nervous system"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 136
+ },
+ "ver_date": "2017-06-21T14:25:27.6",
+ "ver_number": 8
+ },
+ "87582": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Self-influencing synaptic plasticity: Reccurent changes of synaptic weights can lead to specific functional properties. Minija Tamosiunaite, Bernd Porr and Florentin W\u00f6rg\u00f6tter, Journal of Computational Neuroscience. DOI 10.1007/s10827-007-0021-2"
+ },
+ "class_id": 19,
+ "created": "2007-03-30T08:49:44",
+ "gitrepo": false,
+ "id": 87582,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 84623,
+ "object_name": "Tamosiunaite M, Porr B, W\u00f6rg\u00f6tter F (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Self-influencing synaptic plasticity (Tamosiunaite et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Similar to a previous study (Saudargiene et al., 2004) we employ a differential\r\nHebbian learning rule to emulate spike-timing dependent\r\nplasticity and investigate how the interaction of dendritic\r\nand back-propagating spikes, as the post-synaptic signals,\r\ncould influence plasticity. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87582",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "minija_tamosiunaite@fc.vdu.lt"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 135
+ },
+ "ver_date": "2009-03-05T16:04:49",
+ "ver_number": 5
+ },
+ "87585": {
+ "citation": {
+ "attr_id": 391,
+ "value": "16525050"
+ },
+ "class_id": 19,
+ "created": "2007-03-30T20:44:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 87585,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 89667,
+ "object_name": "Lickfett, Jay "
+ },
+ {
+ "object_id": 89672,
+ "object_name": "Goldin, Al [agoldin at uci.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64196,
+ "object_name": "Barela AJ, Waddy SP, Lickfett JG, Hunter J, Anido A, Helmers SL, Goldin AL, Escayg A (2006)"
+ },
+ {
+ "object_id": 82458,
+ "object_name": "Spampanato J, Aradi I, Soltesz I, Goldin AL (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "87585",
+ "name": "ModelView"
+ }
+ ],
+ "default": "87585"
+ },
+ "name": "Sodium channel mutations causing generalized epilepsy with febrile seizures + (Barela et al. 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A novel mutation, R859C, in the Nav1.1 sodium channel was identified in a 4-generation, 33-member Caucasian family with a clinical presentation consistent with GEFS+. The mutation neutralizes a positively charged arginine in the domain 2 S4 voltage sensor of the Nav1.1 channel \u0192\u00d1 subunit. When the mutation was placed in the rat Nav1.1 channel and expressed in Xenopus oocytes, the mutant channel displayed a positive shift in the voltage-dependence of sodium channel activation, slower recovery from slow inactivation, and lower levels of current compared to the wild-type channel. Computational analysis suggests that neurons expressing the mutant channel have higher thresholds for firing a single action potential and for firing multiple action potentials, along with decreased repetitive firing. Therefore, this mutation should lead to decreased neuronal excitability, in contrast to most previous GEFS+ sodium channel mutations that have changes predicted to increase neuronal firing."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87585",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "agoldin@uci.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181173,
+ "object_name": "87585"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T09:46:21.533",
+ "ver_number": 16
+ },
+ "87751": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 87752,
+ "object_name": "copy of authors version 1 code"
+ },
+ {
+ "object_id": 88438,
+ "object_name": "copy of authors version 1.1 code"
+ },
+ {
+ "object_id": 88439,
+ "object_name": "copy of version 1.1 targz"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-04-05T15:06:55",
+ "gitrepo": false,
+ "id": 87751,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87750,
+ "object_name": "Zilany MS, Bruce IC (2006)"
+ },
+ {
+ "object_id": 88437,
+ "object_name": "Zilany MS, Bruce IC (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Cat auditory nerve model (Zilany and Bruce 2006, 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"This paper presents a computational model to simulate normal and impaired auditory-nerve (AN)\r\nfiber responses in cats. The model responses match physiological data over a wider dynamic range\r\nthan previous auditory models. This is achieved by providing two modes of basilar membrane\r\nexcitation to the inner hair cell (IHC) rather than one. ... The model responses are consistent with a wide range of\r\nphysiological data from both normal and impaired ears for stimuli presented at levels spanning the\r\ndynamic range of hearing.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87751",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2007-12-20T12:17:08",
+ "ver_number": 9
+ },
+ "87760": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 87761,
+ "object_name": "backup of authors weblinked model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-04-05T16:21:12",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 87760,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87755,
+ "object_name": "Bruce IC, Irlicht LS, White MW, O'Leary SJ, Clark GM (2000)"
+ },
+ {
+ "object_id": 87756,
+ "object_name": "Bruce IC, White MW, Irlicht LS, O'Leary SJ, Clark GM (1999)"
+ },
+ {
+ "object_id": 87757,
+ "object_name": "Bruce IC, Irlicht LS, White MW, O'Leary SJ, Dynes S, Javel E, Clark GM (1999)"
+ },
+ {
+ "object_id": 87758,
+ "object_name": "Bruce IC, White MW, Irlicht LS, O'Leary SJ, Dynes S, Javel E, Clark GM (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Cochlear implant models (Bruce et al. 1999a, b, c, 2000)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In a recent set of modeling studies we have developed a stochastic threshold model of auditory nerve response to single biphasic electrical pulses (Bruce et al., 1999c) and moderate rate (less than 800 pulses per second) pulse trains (Bruce et al., 1999a). In this article we derive an analytical approximation for the single-pulse model, which is then extended to describe the pulse-train model in the case of evenly timed, uniform pulses. This renewal-process description provides an accurate and computationally efficient model of electrical stimulation of single auditory nerve fibers by a cochlear implant that may be extended to other forms of electrical neural stimulation.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87760",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-18T15:21:30.55",
+ "ver_number": 7
+ },
+ "87762": {
+ "biosimulations": {
+ "value": "modeldb-87762"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "17410601"
+ },
+ "class_id": 19,
+ "created": "2007-04-06T11:31:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 87762,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 84610,
+ "object_name": "Huang, Chin-Wei"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87763,
+ "object_name": "Huang CW, Huang CC, Cheng JT, Tsai JJ, Wu SN (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "The role of ATP-sensitive potassium channels in a hippocampal neuron (Huang et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Hyperglycemia-related neuronal excitability and epileptic seizures \r\nare not uncommon in clinical practice. However, their underlying \r\nmechanism remains elusive. ATP-sensitive K(+) (K(ATP)) channels are \r\nfound in many excitable cells, including cardiac myocytes, \r\npancreatic beta cells, and neurons. These channels provide a link \r\nbetween the electrical activity of cell membranes and cellular \r\nmetabolism. We investigated the effects of higher extracellular \r\nglucose on hippocampal K(ATP) channel activities and neuronal \r\nexcitability. The cell-attached patch-clamp configuration on \r\ncultured hippocampal cells and a novel multielectrode recording \r\nsystem on hippocampal slices were employed. In addition, a \r\nsimulation modeling hippocampal CA3 pyramidal neurons (Pinsky-Rinzel \r\nmodel) was analyzed to investigate the role of K(ATP) channels in \r\nthe firing of simulated action potentials. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/87762",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "ATP-senstive potassiun current"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dr. Chin-Wei Huang"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2007-04-13T08:06:40",
+ "ver_number": 5
+ },
+ "91387": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 16381804 PMID: 17428916"
+ },
+ "class_id": 19,
+ "created": "2007-05-07T05:53:25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 91387,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 90099,
+ "object_name": "Bathellier B, Lagier S, Faure P, Lledo PM (2006)"
+ },
+ {
+ "object_id": 90103,
+ "object_name": "Lagier S, Panzanelli P, Russo RE, Nissant A, Bathellier B, Sasso\u00e8-Pognetto M, Fritschy JM, Lledo PM (2007)"
+ },
+ {
+ "object_id": 113741,
+ "object_name": "Bathellier B, Lagier S, Faure P, Lledo PM (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Olfactory bulb network model of gamma oscillations (Bathellier et al. 2006; Lagier et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model implements a network of 100 mitral cells connected with \r\nasynchronous inhibitory \"synapses\" that is meant to reproduce the \r\nGABAergic transmission of ensembles of connected granule cells. \r\nFor appropriate parameters of this special synapse the model generates \r\ngamma oscillations with properties very similar to what is observed \r\nin olfactory bulb slices (See Bathellier et al. 2006, Lagier et al. 2007).\r\nMitral cells are modeled as single compartment neurons with a small \r\nnumber of different voltage gated channels. Parameters were tuned to reproduce the\r\nfast subthreshold oscillation of the membrane potential observed experimentally\r\n(see Desmaisons et al. 1999).\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/91387",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "brice.bathellier@epfl.ch"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T15:44:36.65",
+ "ver_number": 8
+ },
+ "91893": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 91895,
+ "object_name": "backup of web link to Egli et al. 2004"
+ },
+ {
+ "object_id": 91896,
+ "object_name": "Egli et al.2006 backup of weblink"
+ },
+ {
+ "object_id": 91897,
+ "object_name": "Bertram et al.2006 backup"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-05-08T12:15:35",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 91893,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 91818,
+ "object_name": "Egli M, Bertram R, Toporikova N, Sellix MT, Blanco W, Freeman ME (2006)"
+ },
+ {
+ "object_id": 91837,
+ "object_name": "Bertram R, Egli M, Toporikova N, Freeman ME (2006)"
+ },
+ {
+ "object_id": 91890,
+ "object_name": "Egli M, Bertram R, Sellix MT, Freeman ME (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Oxytocin and VIP involvement in prolactin secretion (Egli et al. 2004,2006, Bertram et al. 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 235,
+ "object_name": "Peptides"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Prolactin (PRL) is secreted from lactotrophs of the anterior\r\npituitary gland of rats in a unique pattern in response to\r\nuterine cervical stimulation (CS) during mating. Surges of\r\nPRL secretion occur in response to relief from hypothalamic\r\ndopaminergic inhibition and stimulation by hypothalamic releasing\r\nneurohormones. In this study, we characterized the\r\nrole of oxytocin (OT) in this system and the involvement of\r\nvasoactive intestinal polypeptide (VIP) from the suprachiasmatic\r\nnucleus (SCN) in controlling OT and PRL secretion of\r\nCS rats. ... OT\r\nmeasurements of serial blood samples obtained from ovariectomized\r\n(OVX) CS rats displayed a prominent increase at\r\nthe time of the afternoon PRL peak. The injection of VIP antisense\r\noligonucleotides into the SCN abolished the afternoon\r\nincrease of OT and PRL in CS-OVX animals. These findings\r\nsuggest that VIP from the SCN contributes to the regulation\r\nof OT and PRL secretion in CS rats. We propose that in CS rats\r\nthe regulatory mechanism(s) for PRL secretion comprise coordinated\r\naction of neuroendocrine dopaminergic and OT\r\ncells, both governed by the daily rhythm of VIP-ergic output\r\nfrom the SCN. This hypothesis is illustrated with a mathematical model.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/91893",
+ "ver_date": "2015-07-26T13:33:01.77",
+ "ver_number": 15
+ },
+ "91898": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 92001,
+ "object_name": "local copy of web link"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-05-08T15:59:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 91898,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87372,
+ "object_name": "Tabak J, Toporikova N, Freeman ME, Bertram R (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Low dose of dopamine may stimulate prolactin secretion by increasing K currents (Tabak et al. 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\".. We considered\r\nthe fast K+ currents flowing through large-conductance\r\nBK channels and through A-type channels. We developed a\r\nminimal lactotroph model to investigate the effects of these\r\ntwo currents. Both IBK and IA could transform the electrical\r\npattern of activity from spiking to bursting, but through\r\ndistinct mechanisms. IBK always increased the intracellular\r\nCa2+ concentration, while IA could either increase or\r\ndecrease it. Thus, the stimulatory effects of DA could be\r\nmediated by a fast K+ conductance which converts tonically\r\nspiking cells to bursters. In addition, the study illustrates that\r\na heterogeneous distribution of fast K+ conductances could\r\ncause heterogeneous lactotroph firing patterns.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/91898",
+ "ver_date": "2007-05-08T16:21:46",
+ "ver_number": 8
+ },
+ "91899": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 91983,
+ "object_name": "local copy of web link"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-05-08T17:04:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 91899,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 91892,
+ "object_name": "Bertram R, Tabak J, Toporikova N, Freeman ME (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Endothelin action on pituitary latotrophs (Bertram et al. 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 231,
+ "object_name": "Amino Acids"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Endothelin (ET-1, -2, and -3 designate three genes which produce different endothelin isopeptides) is a prolactin inhibiting substance of hypothalmic origin. ET-1 binding is part of at least four G protein signaling pathways in lactotrophs. The sequence of events in these pathways following the presentation of nano- and pico-molar concentrations of ET-1 is modeled in the paper."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/91899",
+ "ver_date": "2007-05-09T10:06:03",
+ "ver_number": 7
+ },
+ "93315": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 93316,
+ "object_name": "backup of Bruce IC (2007) weblink code"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-05-14T11:35:42",
+ "gitrepo": false,
+ "id": 93315,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87741,
+ "object_name": "Bruce IC (2007)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Implementation issues in approximate methods for stochastic Hodgkin-Huxley models (Bruce 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Four different algorithms for implementing Hodgkin\u2013Huxley models\r\nwith stochastic sodium channels: Strassberg and\r\nDeFelice (1993), Rubinstein (1995), Chow and White\r\n(1996), and Fox (1997) are compared."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93315",
+ "ver_date": "2007-05-14T12:04:19",
+ "ver_number": 8
+ },
+ "93319": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID 17287443"
+ },
+ "class_id": 19,
+ "created": "2007-05-16T09:54:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 93319,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 87746,
+ "object_name": "Huss M, Lansner A, Wall\u00e9n P, El Manira A, Grillner S, Kotaleski JH (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Lamprey spinal CPG neuron (Huss et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model of a generic locomotor network neuron in the lamprey spinal cord. The given version is assumed to correspond to an interneuron; motoneurons can also be modelled by changing the dendritic tree morphology."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93319",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hussm@nada.kth.se"
+ },
+ "ver_date": "2010-11-12T16:04:16",
+ "ver_number": 4
+ },
+ "93321": {
+ "class_id": 19,
+ "created": "2007-05-17T17:54:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 93321,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 12739,
+ "object_name": "Liu Z, Golowasch J, Marder E, Abbott LF (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Activity dependent conductances in a neuron model (Liu et al. 1998)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We present a model of a\r\nstomatogastric ganglion (STG) neuron in which several Ca2+-dependent\r\npathways are used to regulate the maximal conductances of membrane\r\ncurrents in an activity-dependent manner. Unlike previous models of\r\nthis type, the regulation and modification of maximal conductances by\r\nelectrical activity is unconstrained. The model has seven\r\nvoltage-dependent membrane currents and uses three Ca2+ sensors acting\r\non different time scales. ... The model suggests that neurons may regulate their\r\nconductances to maintain fixed patterns of electrical activity, rather\r\nthan fixed maximal conductances, and that the regulation process\r\nrequires feedback systems capable of reacting to changes of electrical\r\nactivity on a number of different time scales.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93321",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "STG neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181626,
+ "object_name": "93321_2"
+ },
+ {
+ "object_id": 181627,
+ "object_name": "93321_3"
+ },
+ {
+ "object_id": 181628,
+ "object_name": "93321_1"
+ },
+ {
+ "object_id": 181630,
+ "object_name": "93321_4"
+ },
+ {
+ "object_id": 181631,
+ "object_name": "93321_5"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 149
+ },
+ "ver_date": "2022-05-27T18:22:41.153",
+ "ver_number": 21
+ },
+ "93325": {
+ "class_id": 19,
+ "created": "2007-05-21T12:34:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 93325,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 82893,
+ "object_name": "Calin-Jageman, Robert [rcalinjageman at gsu dot edu]"
+ },
+ {
+ "object_id": 93331,
+ "object_name": "Mensh, Brett "
+ },
+ {
+ "object_id": 93332,
+ "object_name": "Frost, William N"
+ },
+ {
+ "object_id": 93333,
+ "object_name": "Katz, Paul S"
+ },
+ {
+ "object_id": 97276,
+ "object_name": "Tunstall, Mark "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97220,
+ "object_name": "Calin-Jageman RJ, Tunstall MJ, Mensh BD, Katz PS, Frost WN (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "93325",
+ "name": "ModelView"
+ }
+ ],
+ "default": "93325"
+ },
+ "name": "Updated Tritonia Swim CPG (Calin-Jagemann et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 93328,
+ "object_name": "Tritonia swim interneuron dorsal"
+ },
+ {
+ "object_id": 93334,
+ "object_name": "Tritonia cerebral cell"
+ },
+ {
+ "object_id": 93335,
+ "object_name": "Tritonia swim interneuron ventral"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of the 3-cell core CPG (DSI, C2, and VSI-B) mediating escape swimming in Tritonia diomedea. Cells use a hybrid integrate-and-fire scheme pioneered by Peter Getting. Each model cell is reconstructed from extensive physiological measurements to precisely mimic I-F curves, synaptic waveforms, and functional connectivity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93325",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Calin0Jageman, RJ; Tunstall M; Mensh B; Frost WN; Katz PS;"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Tritonia Dorsal Swim Interneuron (DSI)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rcalinjageman@gsu.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115957,
+ "object_name": "Tritonia"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181200,
+ "object_name": "93325"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114269,
+ "object_name": "Tritonia diomedea"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:27:02.567",
+ "ver_number": 14
+ },
+ "93326": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Getting PA. Reconstruction of small neural networks. In: Methods in neural modeling, edited by C. Koch and I. Segev. Cambridge: MIT Press, 1989b, p. 171-196; See Also Getting PA. Mechanisms of pattern generation underlying swimming in Tritonia. II. Network reconstruction. J Neurophysiol 49: 1017-1035, 1983a. PMID=6854355"
+ },
+ "class_id": 19,
+ "created": "2007-05-21T12:45:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 93326,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 82893,
+ "object_name": "Calin-Jageman, Robert [rcalinjageman at gsu dot edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 34494,
+ "object_name": "Getting PA (1989)"
+ },
+ {
+ "object_id": 93327,
+ "object_name": "Getting PA (1983)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "93326",
+ "name": "ModelView"
+ }
+ ],
+ "default": "93326"
+ },
+ "name": "Classic model of the Tritonia Swim CPG (Getting, 1989)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 93328,
+ "object_name": "Tritonia swim interneuron dorsal"
+ },
+ {
+ "object_id": 93334,
+ "object_name": "Tritonia cerebral cell"
+ },
+ {
+ "object_id": 93335,
+ "object_name": "Tritonia swim interneuron ventral"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Classic model developed by Petter Getting of the 3-cell core CPG (DSI, C2, and VSI-B) mediating escape swimming in Tritonia diomedea. Cells use a hybrid integrate-and-fire scheme pioneered by Peter Getting. Each model cell is reconstructed from extensive physiological measurements to precisely mimic I-F curves, synaptic waveforms, and functional connectivity. **However, continued physiological measurements show that Getting may have inadvertently incorporated modulatory and or polysynaptic effects -- the properties of this model do *not* match physiological measurements in rested preparations.** This simulation reconstructs the Getting model as reported in: Getting (1989) 'Reconstruction of small neural networks' In Methods in Neural Modeling, 1st ed, p. 171-196. See also, an earlier version of this model reported in Getting (1983). Every attempt has been made to replicate the 1989 model as precisely as possible."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93326",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Calin-Jageman, Robert "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Tritionia DSI, C2, and VSI-B"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rcalinjageman@gsu.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115957,
+ "object_name": "Tritonia"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181201,
+ "object_name": "93326"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 199
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114269,
+ "object_name": "Tritonia diomedea"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:27:17.007",
+ "ver_number": 14
+ },
+ "93349": {
+ "citation": {
+ "attr_id": 391,
+ "value": "15661312"
+ },
+ "class_id": 19,
+ "created": "2007-05-23T22:10:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 93349,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 93354,
+ "object_name": "Dyhrfjeld-Johnsen, Jonas [jdyhrfje at uci.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 93352,
+ "object_name": "Dyhrfjeld-Johnsen J, Maier J, Schubert D, Staiger J, Luhmann HJ, Stephan KE, K\u00f6tter R (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Pyramidal Neuron Deep: Constrained by experiment (Dyhrfjeld-Johnsen et al. 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... As a practical demonstration of the use of CoCoDat we\r\nconstructed a detailed computer model of an intrinsically\r\nbursting (IB) layer V pyramidal neuron from the rat barrel\r\ncortex supplementing experimental data (Schubert et al.,\r\n2001) with information extracted from the database. The\r\npyramidal neuron morphology (Fig. 10B) was reconstructed\r\nfrom histological sections of a biocytin-stained IB neuron\r\nusing the NeuroLucida software package...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93349",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2007-05-26T21:35:39",
+ "ver_number": 10
+ },
+ "93390": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 93392,
+ "object_name": "local backup copy of Huys et al. 2006"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-05-29T14:58:20",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 93390,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 93389,
+ "object_name": "Huys QJ, Ahrens MB, Paninski L (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Efficient estimation of detailed single-neuron models (Huys et al. 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Biophysically accurate multicompartmental models of individual neurons ... depend on a large number of parameters that are difficult to estimate. ... We propose a statistical approach to the automatic estimation of various biologically relevant parameters, including 1) the distribution of channel densities, 2) the spatiotemporal pattern of synaptic input, and 3) axial resistances across extended dendrites. ... We demonstrate that the method leads to accurate estimations on a wide variety of challenging model data sets that include up to about 10,000 parameters (roughly two orders of magnitude more than previously feasible) and describe how the method gives insights into the functional interaction of groups of channels.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93390",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-09-26T16:07:11.593",
+ "ver_number": 4
+ },
+ "93394": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 93395,
+ "object_name": "local copy backup of Huys et al. 2007"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-05-29T15:41:50",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 93394,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 93393,
+ "object_name": "Huys QJ, Zemel RS, Natarajan R, Dayan P (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Fast population coding (Huys et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Uncertainty coming from the noise in its neurons and the ill-posed nature of many tasks plagues neural computations. Maybe surprisingly, many studies show that the brain manipulates these forms of uncertainty in a probabilistically consistent and normative manner, and there is now a rich theoretical literature on the capabilities of populations of neurons to implement computations in the face of uncertainty. However, one major facet of uncertainty has received comparatively little attention: time. In a dynamic, rapidly changing world, data are only temporarily relevant. Here, we analyze the computational consequences of encoding stimulus trajectories in populations of neurons. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93394",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-09-26T16:10:23.027",
+ "ver_number": 5
+ },
+ "93398": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Stiefel KM, Sejnowski TJ (2007) Mapping Function onto Neuronal Morphology. J Neurophysiol"
+ },
+ "class_id": 19,
+ "created": "2007-05-31T08:09:26",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 93398,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 93399,
+ "object_name": "Stiefel, Klaus [stiefel at salk.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 90092,
+ "object_name": "Stiefel KM, Sejnowski TJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "93398_1",
+ "name": "Original GA settings"
+ },
+ {
+ "id": "93398_2",
+ "name": "Short run test"
+ }
+ ],
+ "default": "93398_1"
+ },
+ "name": "Mapping function onto neuronal morphology (Stiefel and Sejnowski 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We used an optimization procedure to find neuronal morphological\r\nstructures for two computational tasks: First, neuronal morphologies were selected for\r\nlinearly summing excitatory synaptic potentials (EPSPs); second, structures were\r\nselected that distinguished the temporal order of EPSPs. The solutions resembled the\r\nmorphology of real neurons. In particular the neurons optimized for linear summation\r\nelectrotonically separated their synapses, as found in avian nucleus laminaris neurons,\r\nand neurons optimized for spike-order detection had primary dendrites of significantly\r\ndifferent diameter, as found in the basal and apical dendrites of cortical pyramidal\r\nneurons. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93398",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181270,
+ "object_name": "93398_2"
+ },
+ {
+ "object_id": 181271,
+ "object_name": "93398_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 279
+ },
+ "ver_date": "2015-01-02T22:39:47",
+ "ver_number": 12
+ },
+ "93416": {
+ "class_id": 19,
+ "created": "2007-06-11T19:00:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 93416,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 93417,
+ "object_name": "Majumdar S, Sikdar SK (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Periodicity in Na channel properties alters model neuron excitability (Majumdar and Sikdar 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We have shown earlier that the\r\nduration and amplitude of a prolonged depolarization alter all the steady state and kinetic parameters of rNav1.2a voltage gated Na\r\nchannel in a pseudo-oscillatory fashion. In the present study, we show that the Hodgkin\u2013Huxley voltage and time dependent rate constants\r\nof activation (am and bm) and fast inactivation (ah and bh), obtained from the analyses of Na currents and steady state activation\r\nand inactivation plots, following application of prepulses in both slow (1\u2013100 s) and fast (100\u20131000 ms) ranges, vary with the duration of\r\na prepulse in a pseudo-oscillatory manner. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93416",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2007-06-12T15:53:09",
+ "ver_number": 6
+ },
+ "93422": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Cutsuridis, V. (2007). Does Abnormal Spinal Reciprocal Inhibition Lead to Co-contraction of Antagonist Motor Units? A Modeling Study. International Journal of Neural Systems, in press; Cutsuridis, V., and Perantonis, S. (2006). A Neural Model of Parkinson's Disease Bradykinesia. Neural Networks, 19(4): 354-374; V. Cutsuridis (2006) Neural Model of Dopaminergic Control of Arm Movements in Parkinson's Disease Bradykinesia. In: Artificial Neural Networks - ICANN \u201806, Lecture Notes in Computer Science, LNCS 4131 (Springer-Verlag, Berlin) 583-591"
+ },
+ "class_id": 19,
+ "created": "2007-06-25T05:52:54",
+ "gitrepo": false,
+ "id": 93422,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 93425,
+ "object_name": "Cutsuridis, Vassilis [vcutsuridis at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82402,
+ "object_name": "Cutsuridis V, Perantonis S (2006)"
+ },
+ {
+ "object_id": 93423,
+ "object_name": "Cutsuridis V (2006)"
+ },
+ {
+ "object_id": 93424,
+ "object_name": "Cutsuridis V (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A neural model of Parkinson`s disease (Cutsuridis and Perantonis 2006, Cutsuridis 2006, 2007)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A neural model of neuromodulatory (dopamine) control of arm movements in Parkinson\u2019s disease (PD) bradykinesia was recently introduced [1, 2]. The model is multi-modular consisting of a basal ganglia module capable of selecting the most appropriate motor command in a given context, a cortical module for coordinating and executing the final motor commands, and a spino-musculo-skeletal module for guiding the arm to its final target and providing proprioceptive (feedback) input of the current state of the muscle and arm to higher cortical and lower spinal centers.\r\n... The new (extended) model [3] predicted that the reduced reciprocal disynaptic Ia inhibition in the DA depleted case doesn\u2019t lead to the co-contraction of antagonist motor units.\" See below readme and papers for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93422",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Cutsuridis, Vassilis"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vcu@cs.stir.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "ver_date": "2007-11-02T17:12:55",
+ "ver_number": 27
+ },
+ "93449": {
+ "citation": {
+ "attr_id": 391,
+ "value": "17484043, 15114047, 11923461"
+ },
+ "class_id": 19,
+ "created": "2007-06-29T18:23:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 93449,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97881,
+ "object_name": "Feng, Xiao-Jiang [xfeng at mahler.princeton.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 39981,
+ "object_name": "Terman D, Rubin JE, Yew AC, Wilson CJ (2002)"
+ },
+ {
+ "object_id": 49493,
+ "object_name": "Rubin JE, Terman D (2004)"
+ },
+ {
+ "object_id": 93412,
+ "object_name": "Feng XJ, Shea-Brown E, Greenwald B, Kosut R, Rabitz H (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Optimal deep brain stimulation of the subthalamic nucleus-a computational study (Feng et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here, we use a biophysically-based model of spiking cells in the basal ganglia (Terman et al., Journal of Neuroscience, 22, 2963-2976, 2002; Rubin and Terman, Journal of Computational Neuroscience, 16, 211-235, 2004) to provide computational evidence that alternative temporal patterns of DBS inputs might be equally effective as the standard high-frequency waveforms, but require lower amplitudes. Within this model, DBS performance is assessed in two ways. First, we determine the extent to which DBS causes Gpi (globus pallidus pars interna) synaptic outputs, which are burstlike and synchronized in the unstimulated Parkinsonian state, to cease their pathological modulation of simulated thalamocortical cells. Second, we evaluate how DBS affects the GPi cells' auto- and cross-correlograms."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/93449",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Xiao-Jiang Feng "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "basal ganglia"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ebrown@math.nyu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2009-01-20T15:19:51",
+ "ver_number": 9
+ },
+ "94321": {
+ "class_id": 19,
+ "created": "2007-07-12T12:29:34",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 94321,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97968,
+ "object_name": "Giugliano, Michele [mgiugliano at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97966,
+ "object_name": "Cal\u00ec C, Berger TK, Pignatelli M, Carleton A, Markram H, Giugliano M (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 57924,
+ "object_name": "PSpice"
+ },
+ {
+ "object_id": 97969,
+ "object_name": "Sspice Symbolic SPICE"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "94321",
+ "name": "ModelView"
+ }
+ ],
+ "default": "94321"
+ },
+ "name": "Inferring connection proximity in electrically coupled networks (Cali et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "In order to explore electrical coupling in the nervous system and its network-level organization, it is imperative to map the electrical synaptic microcircuits, in analogy with in vitro studies on monosynaptic and disynaptic chemical coupling. However, walking from cell to cell over large distances with a glass pipette is challenging, and microinjection of (fluorescent) dyes diffusing through gap-junctions remains so far the only method available to decipher such microcircuits even though technical limitations exist.\r\n\r\nBased on circuit theory, we derived analytical descriptions of the AC electrical coupling in networks of isopotential cells. We then proposed an operative electrophysiological protocol to distinguish between direct electrical connections and connections involving one or more intermediate cells. \r\n\r\nThis method allows inferring the number of intermediate cells, generalizing the conventional coupling coefficient, which provides limited information. \r\n\r\nWe provide here some analysis and simulation scripts that used to test our method through computer simulations, in vitro recordings, theoretical and numerical methods.\r\n\r\nKey words: Gap-Junctions; Electrical Coupling; Networks; ZAP current; Impedance.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/94321",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Giugliano, Michele"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Isopotential generic neuron"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Sspice - Symbolic SPICE"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181753,
+ "object_name": "94321"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 87
+ },
+ "ver_date": "2015-01-05T16:43:02",
+ "ver_number": 31
+ },
+ "94845": {
+ "class_id": 19,
+ "created": "2007-07-13T19:04:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 94845,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 94869,
+ "object_name": "Robbins, Kay [krobbins at cs.utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 38733,
+ "object_name": "Nenadic Z, Ghosh BK, Ulinski P (2003)"
+ },
+ {
+ "object_id": 38793,
+ "object_name": "Nenadic Z, Ghosh BK, Ulinski PS (2002)"
+ },
+ {
+ "object_id": 49481,
+ "object_name": "Robbins KA, Senseman DM (2004)"
+ },
+ {
+ "object_id": 64241,
+ "object_name": "Wang W, Campaigne C, Ghosh BK, Ulinski PS (2005)"
+ },
+ {
+ "object_id": 65101,
+ "object_name": "Wang W (2006)"
+ },
+ {
+ "object_id": 94847,
+ "object_name": "Wang W, Luo S, Ghosh BK, Ulinski PS (2006)"
+ },
+ {
+ "object_id": 94848,
+ "object_name": "Du X, Ghosh BK, Ulinski P (2006)"
+ },
+ {
+ "object_id": 94849,
+ "object_name": "Du X, Ghosh BK, Ulinski P (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Turtle visual cortex model (Nenadic et al. 2003, Wang et al. 2005, Wang et al. 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 94850,
+ "object_name": "Turtle dorsal cortex lateral pyramidal cell"
+ },
+ {
+ "object_id": 94851,
+ "object_name": "Turtle dorsal cortex medial pyramidal cell"
+ },
+ {
+ "object_id": 94852,
+ "object_name": "Turtle dorsal cortex subpial cell"
+ },
+ {
+ "object_id": 94853,
+ "object_name": "Turtle dorsal cortex stellate cell"
+ },
+ {
+ "object_id": 94854,
+ "object_name": "Turtle dorsal cortex horizontal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model of the visual cortex of freshwater turtles that is based upon the\r\nknown anatomy and physiology of individual neurons. The model was published in three\r\npapers (Nenadic et al., 2003; Wang et al., 2005; Wang et al., 2006), which should be\r\nconsulted for full details on its construction. The model has also been used in several\r\npapers (Robbins and Senseman, 2004; Du et al., 2005; Du et al., 2006). It is\r\nimplemented in GENESIS (Bower and Beeman, 1998)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/94845",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115948,
+ "object_name": "Turtle cortex"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249927,
+ "object_name": "Turtle"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:27:59.943",
+ "ver_number": 10
+ },
+ "95870": {
+ "class_id": 19,
+ "created": "2007-07-31T22:54:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 252,
+ "object_name": "I Cl,Ca"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 95870,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 95873,
+ "object_name": "Shahali, Mahboubeh [shahali222 at yahoo.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 11059,
+ "object_name": "Barnes S, Hille B (1989)"
+ },
+ {
+ "object_id": 41597,
+ "object_name": "Kourennyi DE, Liu XD, Hart J, Mahmud F, Baldridge WH, Barnes S (2004)"
+ },
+ {
+ "object_id": 64215,
+ "object_name": "Liu XD, Kourennyi DE (2004)"
+ },
+ {
+ "object_id": 80965,
+ "object_name": "Publio R, Oliveira RF, Roque AC (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "95870",
+ "name": "ModelView"
+ }
+ ],
+ "default": "95870"
+ },
+ "name": "Rod photoreceptor (Barnes and Hille 1989, Publio et al. 2006, Kourennyi and Liu et al. 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This a conductance-based model of a rod photoreceptor cell based on other modeling works\r\n(Barnes and Hille 1989 and Publio et al. 2006 and Kourennyi and Liu et al. 2004 ). In this\r\nmodel four types of ionic channels identified in the inner segment of the rod: nonselective cation channel (h), delayed rectifying potassium channel (Kv), noninactivating potassium channel (Kx) and calcium channel (Ca) was used. \r\nThe model accurately reproduces the rod response when stimulated with a simulated photocurrent signal. We can show the effect of nonselective cation channel. The absence of this channel cause increasing the peak amplitude and the time to \r\nreach the peak of voltage response and absence of transient mode in this response."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/95870",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "non selective cation channel"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 331
+ },
+ "ver_date": "2015-07-26T13:33:58.477",
+ "ver_number": 21
+ },
+ "95960": {
+ "class_id": 19,
+ "created": "2007-08-08T11:29:24",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 95960,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 95963,
+ "object_name": "Schmidt-Hieber, Christoph [c.schmidt-hieber at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 95962,
+ "object_name": "Schmidt-Hieber C, Jonas P, Bischofberger J (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dentate gyrus granule cell: subthreshold signal processing (Schmidt-Hieber et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Detailed compartmental cable models of 8 hippocampal granule cells of adult mice were obtained from dual patch-clamp whole-cell recordings and subsequent 3D reconstructions. This code allows to reproduce figures 6-8 from the paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/95960",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "christoph.schmidt-hieber@uni-freiburg.de"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2017-03-28T14:46:24.54",
+ "ver_number": 12
+ },
+ "95990": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 17483156, PMID: 17189308"
+ },
+ "class_id": 19,
+ "created": "2007-08-14T09:40:03",
+ "gitrepo": false,
+ "id": 95990,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 94899,
+ "object_name": "Riedel T, Schmalzing G, Markwardt F (2007)"
+ },
+ {
+ "object_id": 94901,
+ "object_name": "Riedel T, Lozinsky I, Schmalzing G, Markwardt F (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 62675,
+ "object_name": "QuB"
+ }
+ ]
+ },
+ "name": "Kinetics of the P2X7 receptor as expressed in Xenopus oocytes (Riedel et al. 2007a,b)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 96242,
+ "object_name": "Microglia"
+ },
+ {
+ "object_id": 96243,
+ "object_name": "Macrophage"
+ },
+ {
+ "object_id": 96244,
+ "object_name": "B lymphocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Human P2X7 receptors were expressed in Xenopus laevis oocytes and\r\nsingle channels were recorded using the patch-clamp technique in the\r\noutside-out configuration. ATP4- evoked two types of P2X7\r\nreceptor-mediated single channel currents characterized by short-lived\r\nand long-lived openings. ... The kinetics of the short channel\r\nopenings at negative membrane potentials fitted well to a linear\r\nC-C-C-O model with two ATP4- binding steps at equal binding sites\r\n....\" and \"Using the patch-clamp method, we studied the influence of\r\nexternal alkali and organic monovalent cations on the single-channel\r\nproperties of the adenosine triphosphate (ATP)-activated recombinant\r\nhuman P2X(7) receptor.\" See the references for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/95990",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "microglia, macrophage, B lymphocyte"
+ },
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "ATP"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "P2X7"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fritz.markwardt@medizin.uni-halle.de"
+ },
+ "ver_date": "2007-08-16T11:14:14",
+ "ver_number": 9
+ },
+ "96444": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hines, M.L. and Carnevale, N.T. (2007) Translating network models to parallel hardware in NEURON. J. Neurosci. Meth. (submitted)"
+ },
+ "class_id": 19,
+ "created": "2007-08-14T16:26:06",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 96444,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ },
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 96445,
+ "object_name": "Hines ML, Carnevale NT (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "96444_1",
+ "name": "Ring (Serial)"
+ },
+ {
+ "id": "96444_3",
+ "name": "Random (Serial)"
+ }
+ ],
+ "default": "96444_1"
+ },
+ "name": "Translating network models to parallel hardware in NEURON (Hines and Carnevale 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Shows how to move a working network model written in NEURON from a serial processor to a parallel machine in such a way that the final result will produce numerically identical results on either serial or parallel hardware."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/96444",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Carnevale, Ted, and Hines, Michael"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.hines@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181334,
+ "object_name": "96444_4"
+ },
+ {
+ "object_id": 181336,
+ "object_name": "96444_1"
+ },
+ {
+ "object_id": 181338,
+ "object_name": "96444_3"
+ },
+ {
+ "object_id": 181339,
+ "object_name": "96444_2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:35:25",
+ "ver_number": 17
+ },
+ "97263": {
+ "class_id": 19,
+ "created": "2007-08-17T03:28:16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 97263,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97123,
+ "object_name": "Migliore M, Shepherd GM (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "97263",
+ "name": "ModelView"
+ }
+ ],
+ "default": "97263"
+ },
+ "name": "Olfactory bulb mitral and granule cell: dendrodendritic microcircuits (Migliore and Shepherd 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model shows how backpropagating action potentials in the long lateral dendrites of mitral cells, together with granule cell actions on mitral cells within narrow columns forming glomerular units, can provide a mechanism to activate strong local inhibition between arbitrarily distant mitral cells. The simulations predict a new role for the dendrodendritic synapses in the multicolumnar organization of the granule cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97263",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181656,
+ "object_name": "97263"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 312
+ },
+ "ver_date": "2018-10-17T16:05:18.263",
+ "ver_number": 10
+ },
+ "97274": {
+ "class_id": 19,
+ "created": "2007-08-24T17:42:45",
+ "gitrepo": false,
+ "id": 97274,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 94911,
+ "object_name": "Aristizabal F, Glavinovic MI (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Vesicular pool simulations of synaptic depression (Aristizabal and Glavinovic 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Synaptic release was simulated using a Simulink sequential storage model with three vesicular pools. Modeling was modular and easily extendable to the systems with greater number of vesicular pools, parallel input, or time-varying parameters. ... Finally, the method was tested experimentally using the rat phrenic-diaphragm neuromuscular junction.\"\r\nSee paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97274",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2007-08-24T17:55:52",
+ "ver_number": 2
+ },
+ "97743": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Lindskog M, Kim M, Wikstrom M, Blackwell KT, Hellgren Kotaleski J (2006), PLoS Comput Biol 2(9):e119"
+ },
+ "class_id": 19,
+ "created": "2007-08-30T10:34:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122828,
+ "object_name": "D1 DRD1A"
+ },
+ {
+ "object_id": 122829,
+ "object_name": "D2 DRD2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 97743,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97745,
+ "object_name": "Lindskog M, Kim M, Wikstr\u00f6m MA, Blackwell KT, Kotaleski JH (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Model of DARPP-32 phosphorylation in striatal medium spiny neurons (Lindskog et al. 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The work describes a model of how transient calcium and dopamine inputs might affect phosphorylation of DARPP-32 in the medium spiny neurons in the striatum. The model is relevant for understanding both the \"three-factor rule\" for synaptic plasticity in corticostriatal synapses, and also for relating reinforcement learning theories to biology."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97743",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "medium spiny neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jeanette@csc.kth.se"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T13:35:36.947",
+ "ver_number": 7
+ },
+ "97747": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 113435,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "D. Golomb, K. Donner, L. Shacham, D. Shlosberg, Y. Amitai and D. Hansel (2007) Mechanisms of firing patterns in fast-spiking cortical interneurons. PLoS Comput. Biol. 3(8)}:e156, 1498-1512."
+ },
+ "class_id": 19,
+ "created": "2007-08-31T00:15:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "XPP (original)"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 97747,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 97751,
+ "object_name": "Stuttering"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97750,
+ "object_name": "Golomb D, Donner K, Shacham L, Shlosberg D, Amitai Y, Hansel D (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Fast-spiking cortical interneuron (Golomb et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Cortical fast-spiking (FS) interneurons display highly variable electrophysiological properties. We hypothesize that this variability emerges naturally if one assumes a continuous distribution of properties in a small set of active channels. We construct a minimal, single-compartment conductance-based model of FS cells that includes transient Na+, delayed-rectifier K+, and slowly inactivating d-type K+ conductances. The model may display delay to firing. Stuttering (elliptic bursting) and subthreshold oscillations may be observed for small Na+ window current."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97747",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Delay, stuttering"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Fast-spiking cortical interneuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "golomb@bgu.ac.il"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 246
+ },
+ "ver_date": "2015-01-03T11:27:47",
+ "ver_number": 17
+ },
+ "97756": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 97759,
+ "object_name": "local copy"
+ }
+ ]
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "A Numerical Approach to Ion Channel Modelling Using Whole-Cell Voltage-Clamp Recordings and a Genetic Algorithm Gurkiewicz M, Korngreen A PLoS Computational Biology Vol. 3, No. 8, e169 doi:10.1371/journal.pcbi.0030169"
+ },
+ "class_id": 19,
+ "created": "2007-09-01T22:24:10",
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "links to the original paper and model at PLoS"
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 97756,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 110661,
+ "object_name": "Korngreen, Alon [alon.korngreen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97757,
+ "object_name": "Gurkiewicz M, Korngreen A (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "97756",
+ "name": "ModelView"
+ }
+ ],
+ "default": "97756"
+ },
+ "name": "Ion channel modeling with whole cell and a genetic algorithm (Gurkiewicz and Korngreen 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we show that a genetic search algorithm in combination with a gradient descent algorithm can be used to\r\nfit whole-cell voltage-clamp data to kinetic models with a high degree of accuracy. Previously, ion channel stimulation\r\ntraces were analyzed one at a time, the results of these analyses being combined to produce a picture of channel\r\nkinetics. Here the entire set of traces from all stimulation protocols are analysed simultaneously. The algorithm was\r\ninitially tested on simulated current traces produced by several Hodgkin-Huxley\u2013like and Markov chain models of\r\nvoltage-gated potassium and sodium channels. ... Finally, the algorithm was used for finding the kinetic parameters of several voltage-gated\r\nsodium and potassium channels models by matching its results to data recorded from layer 5 pyramidal neurons\r\nof the rat cortex in the nucleated outside-out patch configuration. The minimization scheme gives electrophysiologists\r\na tool for reproducing and simulating voltage-gated ion channel kinetics at the cellular level.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97756",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181866,
+ "object_name": "97756"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 266
+ },
+ "ver_date": "2019-02-15T16:04:59.947",
+ "ver_number": 28
+ },
+ "97850": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Pascual A, Modolo J, Beuter A (2006) Is a computational model useful to\r\nunderstand the effect of deep brain stimulation in Parkinson's disease?\r\nJ Integr Neurosci 5:541-59"
+ },
+ "class_id": 19,
+ "created": "2007-09-06T09:54:08",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 97850,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 95257,
+ "object_name": "Pascual A, Modolo J, Beuter A (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Study of augmented Rubin and Terman 2004 deep brain stim. model in Parkinsons (Pascual et al. 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... The model by Rubin and Terman [31] represents one of the most comprehensive and biologically plausible models of DBS published recently. We examined the validity of the model, replicated its simulations and tested its robustness. While our simulations partially reproduced the results presented by Rubin and Terman [31], several issues were raised including the high complexity of the model in its non simplified form, the lack of robustness of the model with respect to small perturbations, the nonrealistic representation of the thalamus and the absence of time delays. Computational models are indeed necessary, but they may not be sufficient in their current forms to explain the effect of chronic electrical stimulation on the activity of the basal ganglia (BG) network in PD.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97850",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2017-06-21T14:44:07.223",
+ "ver_number": 11
+ },
+ "97860": {
+ "class_id": 19,
+ "created": "2007-09-19T12:46:45",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 97860,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97862,
+ "object_name": "Held, Joshua [j-held at northwestern.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97861,
+ "object_name": "Chan CS, Guzman JN, Ilijic E, Mercer JN, Rick C, Tkatch T, Meredith GE, Surmeier DJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "97860",
+ "name": "ModelView"
+ }
+ ],
+ "default": "97860"
+ },
+ "name": "Rejuvenation model of dopamine neuron (Chan et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Model files for the paper C. Savio Chan, et al. 'Rejuvenation' protects neurons in mouse models of Parkinson's disease, Nature 447, 1081-1086(28 June 2007)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97860",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Held, Joshua"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Substantia nigra"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181782,
+ "object_name": "97860"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 324
+ },
+ "ver_date": "2014-03-06T15:53:03",
+ "ver_number": 19
+ },
+ "97863": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Reconstruction of the action potential of ventricular myocardial fibres, Beeler, G.W. and Reuter, H. 1977 Journal of Physiology, 268, 177-210. PubMed ID: 874889"
+ },
+ "class_id": 19,
+ "created": "2007-09-21T11:50:08",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 97863,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97864,
+ "object_name": "Gannier, Francois [francois.gannier at univ-tours.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 56568,
+ "object_name": "Beeler GW, Reuter H (1977)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "97863",
+ "name": "ModelView"
+ }
+ ],
+ "default": "97863"
+ },
+ "name": "Mammalian Ventricular Cell (Beeler and Reuter 1977)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This classic model of ventricular myocardial fibres was implemented by Francois Gannier. \"... Four individual components of ionic current were formulated mathematically\r\nin terms of Hodgkin-Huxley type equations. The model incorporates\r\ntwo voltage- and time-dependent inward currents, the excitatory\r\ninward sodium current, illa, and a secondary or slow inward current,\r\nis, primarily carried by calcium ions. A time-independent outward\r\npotassium current, iK1, exhibiting inward-going rectification, and a voltage-\r\nand time-dependent outward current, i.1, primarily carried by potassium\r\nions, are further elements of the model....\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97863",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gannier, Francois\r\n"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Heart cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "francois.gannier@univ-tours.fr"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181781,
+ "object_name": "97863"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 278
+ },
+ "ver_date": "2014-02-20T17:11:03",
+ "ver_number": 10
+ },
+ "97868": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 115920,
+ "object_name": "version prior to 20081006"
+ },
+ {
+ "object_id": 124525,
+ "object_name": "pre NEURON 7"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-09-25T16:10:17",
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 97868,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97870,
+ "object_name": "Neymotin S, Uhlrich DJ, Manning KA, Lytton WW (2008)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "NEURON interfaces to MySQL and the SPUD feature extraction algorithm (Neymotin et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "See the readme.txt for information on setting up this interface to a MySQL server from the NEURON simulator. Note the SPUD feature extraction algorithm includes its own readme in the spud directory."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97868",
+ "ver_date": "2022-05-27T09:50:10.94",
+ "ver_number": 16
+ },
+ "97874": {
+ "class_id": 19,
+ "created": "2007-09-26T10:49:48",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 97874,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 80617,
+ "object_name": "Lytton WW (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Neural Query System NQS Data-Mining From Within the NEURON Simulator (Lytton 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "NQS is a databasing program with a query command modeled loosely on the SQL select command.\r\nPlease see the manual NQS.pdf for details of use.\r\nAn NQS database must be populated with data to be used. This package includes MFP (model fingerprint) which provides an example of NQS use with the model provided in the modeldb folder (see readme for usage)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97874",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2022-05-27T09:54:41.367",
+ "ver_number": 8
+ },
+ "97903": {
+ "class_id": 19,
+ "created": "2007-09-28T18:12:44",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 97903,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97998,
+ "object_name": "van Elburg, Ronald A.J. [R.van.Elburg at ai.rug.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97992,
+ "object_name": "Cornelisse LN, van Elburg RA, Meredith RM, Yuste R, Mansvelder HD (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 97997,
+ "object_name": "CalC Calcium Calculator"
+ }
+ ]
+ },
+ "name": "Determinants of fast calcium dynamics in dendritic spines and dendrites (Cornelisse et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Calcium influx time course and calcium extrusion rate were both in the same range for spines and dendrites when fitted with a dynamic multi-compartment model that included calcium binding kinetics and diffusion. In a subsequent analysis we used this model to investigate which parameters are critical determinants in spine calcium dynamics. The model confirmed the experimental findings: a higher SVR (surface-to-volume ratio) is not sufficient by itself to explain the faster rise time kinetics in spines, but only when paired with a lower buffer capacity in spines. Simulations at zero calcium-dye conditions show that calmodulin is more efficiently activated in spines, which indicates that spine morphology and buffering conditions in neocortical spines favor synaptic plasticity. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97903",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Calcium Dynamics"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "van Elburg, Ronald A.J."
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "CalC"
+ },
+ "ver_date": "2017-07-03T22:33:05.017",
+ "ver_number": 17
+ },
+ "97917": {
+ "class_id": 19,
+ "created": "2007-09-29T16:00:05",
+ "gitrepo": true,
+ "id": 97917,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 107758,
+ "object_name": "Hines ML, Eichner H, Sch\u00fcrmann F (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cell splitting in neural networks extends strong scaling (Hines et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Neuron tree topology equations can be split into two subtrees and solved\r\non different processors with no change in accuracy, stability, or\r\ncomputational effort; communication costs involve only sending and\r\nreceiving two double precision values by each subtree at each time step.\r\nApplication of the cell splitting method to two published\r\nnetwork models exhibits good runtime scaling on twice as many\r\nprocessors as could be effectively used with whole-cell balancing.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97917",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.hines@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T16:00:08.05",
+ "ver_number": 18
+ },
+ "97972": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Frank, M.J. (2006). Hold your horses: A dynamic computational role for the subthalamic nucleus in decision making. Neural Networks, 19, 1120-1136."
+ },
+ "class_id": 19,
+ "created": "2007-10-16T21:36:30",
+ "gitrepo": false,
+ "id": 97972,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 79489,
+ "object_name": "Frank, Michael [mfrank at u.arizona.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 83587,
+ "object_name": "Frank MJ (2006)"
+ },
+ {
+ "object_id": 98000,
+ "object_name": "Frank MJ, Samanta J, Moustafa AA, Sherman SJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53430,
+ "object_name": "Emergent/PDP++"
+ }
+ ]
+ },
+ "name": "Roles of subthalamic nucleus and DBS in reinforcement conflict-based decision making (Frank 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Deep brain stimulation (DBS) of the subthalamic nucleus dramatically improves the motor symptoms of Parkinson's disease, but causes cognitive side effects such as impulsivity. This model from Frank (2006) simulates the role of the subthalamic nucleus (STN) within the basal ganglia circuitry in decision making. The STN dynamically modulates network decision thresholds in proportion to decision conflict. The STN ``hold your horses'' signal adaptively allows the system more time to settle on the best choice when multiple options are valid. The model also replicates effects in Parkinson's patients on and off DBS in experiments designed to test the model (Frank et al, 2007)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97972",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Frank, Michael "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mfrank@u.arizona.edu"
+ },
+ "ver_date": "2010-11-12T16:03:07",
+ "ver_number": 10
+ },
+ "97983": {
+ "class_id": 19,
+ "created": "2007-10-19T09:40:19",
+ "gitrepo": false,
+ "id": 97983,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97960,
+ "object_name": "Wendling F, Hernandez A, Bellanger JJ, Chauvel P, Bartolomei F (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 97995,
+ "object_name": "GNUstep NeXTStep/OpenStep"
+ }
+ ]
+ },
+ "name": "Neuronal population models of intracerebral EEG (Wendling et al. 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In this study, the authors relate electrophysiologic patterns typically observed during the transition from interictal to ictal activity in human mesial temporal lobe epilepsy (MTLE) to mechanisms (at a neuronal population level) involved in seizure generation through a computational model of EEG activity. Intracerebral EEG signals recorded from hippocampus in five patients with MTLE during four periods (during interictal activity, just before seizure onset, during seizure onset, and during ictal activity) were used to identify the three main parameters of a model of hippocampus EEG activity (related to excitation, slow dendritic inhibition and fast somatic inhibition). ... . Results demonstrated that the model generates very realistic signals for automatically identified parameters. They also showed that the transition from interictal to ictal activity cannot be simply explained by an increase in excitation and a decrease in inhibition but rather by time-varying ensemble interactions between pyramidal cells and local interneurons projecting to either their dendritic or perisomatic region (with slow and fast GABAA kinetics). Particularly, during preonset activity, an increasing dendritic GABAergic inhibition compensates a gradually increasing excitation up to a brutal drop at seizure onset when faster oscillations (beta and low gamma band, 15 to 40 Hz) are observed. ... These findings obtained from model identification in human temporal lobe epilepsy are in agreement with some results obtained experimentally, either on animal models of epilepsy or on the human epileptic tissue.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97983",
+ "ver_date": "2016-10-27T22:32:52.107",
+ "ver_number": 10
+ },
+ "97985": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hines, M and Schuermann, F (2008) Fully Implicit Parallel Simulation of Single Neurons. (to be submitted)"
+ },
+ "class_id": 19,
+ "created": "2007-10-20T14:15:33",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 97985,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97989,
+ "object_name": "Hines ML, Markram H, Sch\u00fcrmann F (2008)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Fully Implicit Parallel Simulation of Single Neurons (Hines et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A 3-d reconstructed\r\nneuron model can be simulated in parallel on a dozen or so processors and experience almost linear\r\nspeedup. Network models can be simulated when\r\nthere are more processors than cells.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/97985",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.hines@yale.edu"
+ },
+ "ver_date": "2021-08-26T16:30:14.207",
+ "ver_number": 11
+ },
+ "98003": {
+ "class_id": 19,
+ "created": "2007-10-28T22:51:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2397,
+ "object_name": "I Mixed"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122826,
+ "object_name": "NR2A GRIN2A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 98003,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 98006,
+ "object_name": "Baker, John L [jbakerb at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 93427,
+ "object_name": "Baker JL, Olds JL (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Theta phase precession in a model CA3 place cell (Baker and Olds 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... The present study concerns a neurobiologically based computational model of the emergence of theta phase precession in which the responses of a single model CA3 pyramidal cell are examined in the context of stimulation by realistic afferent spike trains including those of place cells in entorhinal cortex, dentate gyrus, and other CA3 pyramidal cells. \r\nSpike-timing dependent plasticity in the model CA3 pyramidal cell leads to a spatially correlated associational synaptic drive that subsequently creates a spatially asymmetric expansion of the model cell\u2019s place field. ...\r\nThrough selective manipulations of the model it is possible to decompose theta phase precession in CA3 into the separate contributing factors of inheritance from upstream afferents in the dentate gyrus and entorhinal cortex, the interaction of synaptically controlled increasing afferent drive with phasic inhibition, and the theta phase difference between dentate gyrus granule cell and CA3 pyramidal cell activity.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/98003",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Place Cell"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Baker, John L"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "R"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2009-07-14T13:58:15",
+ "ver_number": 11
+ },
+ "98005": {
+ "class_id": 19,
+ "created": "2007-10-30T12:30:28",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122829,
+ "object_name": "D2 DRD2"
+ },
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 98005,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97862,
+ "object_name": "Held, Joshua [j-held at northwestern.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 80717,
+ "object_name": "Maurice N, Mercer J, Chan CS, Hernandez-Lopez S, Held J, Tkatch T, Surmeier DJ (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "98005",
+ "name": "ModelView"
+ }
+ ],
+ "default": "98005"
+ },
+ "name": "D2 dopamine receptor modulation of interneuronal activity (Maurice et al. 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7021,
+ "object_name": "Neostriatum interneuron ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Using a combination of electrophysiological, molecular, and computational approaches, the studies reported here show that D2 dopamine receptor modulation of Na+ currents underlying autonomous spiking contributes to a slowing of discharge rate, such as that seen in vivo. Four lines of evidence support this conclusion. ... Fourth, simulation of cholinergic interneuron pacemaking revealed that a modest increase in the entry of Na+ channels into the slow-inactivated state was sufficient to account for the slowing of pacemaker discharge. These studies establish a cellular mechanism linking dopamine and the reduction in striatal cholinergic interneuron activity seen in the initial stages of associative learning.\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/98005",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 212
+ },
+ "ver_date": "2017-03-18T09:58:27.283",
+ "ver_number": 18
+ },
+ "98017": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Edin F et al. J Cogn Neurosci. 2007 May;19(5):750-60., Edin F et al. J Integr Neurosci. 2007 Dec."
+ },
+ "class_id": 19,
+ "created": "2007-11-07T16:41:45",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 98017,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 98019,
+ "object_name": "Edin F, Macoveanu J, Olesen P, Tegn\u00e9r J, Klingberg T (2007)"
+ },
+ {
+ "object_id": 231921,
+ "object_name": "Edin F, Klingberg T, St\u00f6dberg T, Tegn\u00e9r J (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Fronto-parietal visuospatial WM model with HH cells (Edin et al 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "1) J Cogn Neurosci: 3 structural mechanisms that had been hypothesized to underlie vsWM development during childhood were evaluated by simulating the model and comparing results to fMRI. It was concluded that inter-regional synaptic connection strength cause vsWM development.\r\n\r\n2) J Integr Neurosci: Given the importance of fronto-parietal connections, we tested whether connection asymmetry affected resistance to distraction. We drew the conclusion that stronger frontal connections are beneficial. By comparing model results to EEG, we concluded that the brain indeed has stronger frontal-to-parietal connections than vice versa."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/98017",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fredrik.edin@ki.se"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-09-06T11:09:25.453",
+ "ver_number": 10
+ },
+ "98902": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 17619199"
+ },
+ "class_id": 19,
+ "created": "2007-11-10T18:49:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 98902,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97901,
+ "object_name": "Anderson WS, Kudela P, Cho J, Bergey GK, Franaszczuk PJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Studies of stimulus parameters for seizure disruption using NN simulations (Anderson et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Architecturally realistic neocortical model using seven classes of excitatory and inhibitory single compartment Hodgkin-Huxley cells. Wiring is adapted to minicolumn hypothesis and incorporates visual and neocortical data. Simulation demonstrates spontaneous bursting onset and cessation, and activity can be altered with external electric field."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/98902",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wanderso@jhmi.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:49:07.137",
+ "ver_number": 9
+ },
+ "100603": {
+ "class_id": 19,
+ "created": "2007-11-19T17:48:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 88206,
+ "object_name": "I_HERG"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 100603,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33801,
+ "object_name": "Canavier, CC"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 100604,
+ "object_name": "Canavier CC, Oprisan SA, Callaway JC, Ji H, Shepard PD (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "ERG current in repolarizing plateau potentials in dopamine neurons (Canavier et al 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Blocking the small-conductance (SK) calcium-activated potassium channel promotes\r\nburst firing in dopamine neurons both in vivo and in vitro.\r\n...\r\nWe focus on the underlying plateau potential\r\noscillation generated in the presence of both apamin and TTX, so that\r\naction potentials are not considered. \r\n\r\nWe find that although the plateau\r\npotentials are mediated by a voltage-gated Ca2+ current, they do not\r\ndepend on the accumulation of cytosolic Ca2+, then use a computational\r\nmodel to test the hypothesis that the slowly voltage-activated\r\nether-a-go-go\u2013related gene (ERG) potassium current repolarizes the\r\nplateaus.\r\n\r\nThe model, which includes a material balance on calcium,\r\nis able to reproduce the time course of both membrane potential\r\nand somatic calcium concentration, and can also mimic the induction\r\nof plateau potentials by the calcium chelator BAPTA.\" See paper for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/100603",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 61
+ },
+ "ver_date": "2015-07-26T13:37:48.513",
+ "ver_number": 12
+ },
+ "101629": {
+ "class_id": 19,
+ "created": "2007-11-28T03:20:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 101629,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 105513,
+ "object_name": "Hemond P, Epstein D, Boley A, Migliore M, Ascoli GA, Jaffe DB (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "101629_1",
+ "name": "Fig.9B"
+ },
+ {
+ "id": "101629_2",
+ "name": "Fig.9C"
+ },
+ {
+ "id": "101629_3",
+ "name": "Fig.9D"
+ },
+ {
+ "id": "101629_4",
+ "name": "Fig.9E"
+ }
+ ],
+ "default": "101629_1"
+ },
+ "name": "CA3 pyramidal neuron: firing properties (Hemond et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In the paper, this model was used to identify how relative differences in K+ conductances,\r\nspecifically KC, KM, & KD, between cells contribute to the different characteristics of the\r\nthree types of firing patterns observed experimentally.\r\n"
+ },
+ "opensourcebrain": {
+ "value": "ca3-pyramidal-cell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/101629",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I KD, I KM"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181743,
+ "object_name": "101629_4"
+ },
+ {
+ "object_id": 181745,
+ "object_name": "101629_1"
+ },
+ {
+ "object_id": 181746,
+ "object_name": "101629_2"
+ },
+ {
+ "object_id": 181747,
+ "object_name": "101629_3"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 184
+ },
+ "ver_date": "2015-01-02T22:05:27",
+ "ver_number": 9
+ },
+ "102279": {
+ "class_id": 19,
+ "created": "2007-12-04T15:44:16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 102279,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 102284,
+ "object_name": "Crisp, Kevin [crisp at stolaf.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 102281,
+ "object_name": "Burrell BD, Crisp KM (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Leech S Cell: Modulation of Excitability by Serotonin (Burrell and Crisp 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 102282,
+ "object_name": "Leech S cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Serotonergic modulation of the afterhyperpolarization (AHP) contributes to the regulation of the excitability of the leech S cell, a neuron critical for sensitization of the shortening reflex. Pharmacological and physiological data suggest that three currents contribute to the S cell's afterhyperpolarization: a charybdotoxin-sensitive, fast calcium-dependent potassium current (fAHP); a tubocurare-sensitive, calcium-dependent potassium current (mAHP); and, a saxitoxin-sensitive, afterdepolarization current (ADP). This single-compartment model of the S cell is constructed using fAHP, mAHP and ADP currents, and shows that reduction of the conductances to mimic the effects of serotonin is sufficient to enhance excitability (repetitive firing)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/102279",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Excitability"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Crisp, Kevin "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Leech S Cell"
+ },
+ "ver_date": "2016-06-02T13:34:42.02",
+ "ver_number": 12
+ },
+ "102288": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.jneurosci.org/cgi/content/full/26/47/12325"
+ },
+ "class_id": 19,
+ "created": "2007-12-05T14:18:33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 102288,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 102353,
+ "object_name": "Lawrence JJ, Saraga F, Churchill JF, Statland JM, Travis KE, Skinner FK, McBain CJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "102288_1",
+ "name": "Create Fig 9 A1"
+ },
+ {
+ "id": "102288_2",
+ "name": "Create Fig 9 B1"
+ },
+ {
+ "id": "102288_3",
+ "name": "Create Fig 9 C1"
+ },
+ {
+ "id": "102288_4",
+ "name": "Create Fig 9 A2"
+ },
+ {
+ "id": "102288_5",
+ "name": "Create Fig 9 B2"
+ },
+ {
+ "id": "102288_6",
+ "name": "Create Fig 9 C2"
+ },
+ {
+ "id": "102288_7",
+ "name": "Create Fig 9 A3"
+ },
+ {
+ "id": "102288_8",
+ "name": "Create Fig 9 B3"
+ },
+ {
+ "id": "102288_9",
+ "name": "Create Fig 9 C3"
+ },
+ {
+ "id": "102288_10",
+ "name": "Create all of Fig 9"
+ }
+ ],
+ "default": "102288_1"
+ },
+ "name": "O-LM interneuron model (Lawrence et al. 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Exploring the kinetics and distribution of the muscarinic potassium channel, IM, in 2 O-LM interneuron morphologies. Modulation of the ion channel by drugs such as XE991 (antagonist) and retigabine (agonist) are simulated in the models to examine the role of IM in spiking properties."
+ },
+ "opensourcebrain": {
+ "value": "ca1-oriens-lacunosum-moleculare-lawrence-et-al-2006"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/102288",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fernanda.saraga@utoronto.ca"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181433,
+ "object_name": "102288_10"
+ },
+ {
+ "object_id": 181703,
+ "object_name": "102288_2"
+ },
+ {
+ "object_id": 181704,
+ "object_name": "102288_3"
+ },
+ {
+ "object_id": 181706,
+ "object_name": "102288_1"
+ },
+ {
+ "object_id": 181707,
+ "object_name": "102288_6"
+ },
+ {
+ "object_id": 181708,
+ "object_name": "102288_7"
+ },
+ {
+ "object_id": 181709,
+ "object_name": "102288_4"
+ },
+ {
+ "object_id": 181710,
+ "object_name": "102288_5"
+ },
+ {
+ "object_id": 181713,
+ "object_name": "102288_8"
+ },
+ {
+ "object_id": 181714,
+ "object_name": "102288_9"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 301
+ },
+ "ver_date": "2015-01-02T22:01:24",
+ "ver_number": 8
+ },
+ "102871": {
+ "class_id": 19,
+ "created": "2007-12-06T18:06:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 102871,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 102873,
+ "object_name": "Chaudhuri D, Issa JB, Yue DT (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Elementary mechanisms producing facilitation of Cav2.1 (P/Q-type) channels",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The regulation of Ca(V)2.1 (P/Q-type) channels by calmodulin (CaM) showcases the powerful Ca(2+) decoding capabilities of CaM in complex with the family of Ca(V)1-2 Ca(2+) channels. \r\n\r\nThroughout this family, CaM does not simply exert a binary on/off regulatory effect; rather, Ca(2+) binding to either the C- or N-terminal lobe of CaM alone can selectively trigger a distinct form of channel modulation. \r\n...\r\nCa(2+) binding to the C-terminal lobe induces Ca(2+)-dependent facilitation of opening (CDF), whereas the N-terminal lobe yields Ca(2+)-dependent inactivation of opening (CDI). \r\n...\r\nFurthermore, direct single-channel determinations of channel open probability (P(o)) and kinetic simulations demonstrate that CDF represents a genuine enhancement of open probability, without appreciable change of activation kinetics. \r\nThis enhanced-opening mechanism suggests that the CDF evoked during action-potential trains would produce not only larger, but longer-lasting Ca(2+) responses, an outcome with potential ramifications for short-term synaptic plasticity.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/102871",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 84
+ },
+ "ver_date": "2007-12-07T18:20:53",
+ "ver_number": 9
+ },
+ "104623": {
+ "class_id": 19,
+ "created": "2007-12-11T15:26:44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 104623,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 104625,
+ "object_name": "Zhu, Zheng I. [zhz2001 at med.cornell.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 88214,
+ "object_name": "Long-QT"
+ },
+ {
+ "object_id": 104624,
+ "object_name": "Timothy Syndrome"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 60306,
+ "object_name": "Fox JJ, McHarg JL, Gilmour RF (2002)"
+ },
+ {
+ "object_id": 104282,
+ "object_name": "Zhu ZI, Clancy CE (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Ionic basis of alternans and Timothy Syndrome (Fox et al. 2002), (Zhu and Clancy 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "From Zhu and Clancy: \"... Here we\r\nemploy theoretical simulations to examine the effects of a Timothy Syndrome (TS) mutation\r\nin the L-type Ca2+ channel on cardiac dynamics over multiple\r\nscales, from a gene mutation to protein, cell, tissue, and finally the\r\nECG, to connect a defective Ca2+ channel to arrhythmia susceptibility. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/104623",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 64
+ },
+ "ver_date": "2009-05-28T15:14:54",
+ "ver_number": 9
+ },
+ "105383": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 105386,
+ "object_name": "cvode"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-12-13T15:16:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "id": 105383,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 60334,
+ "object_name": "Cortassa S, Aon MA, Marb\u00e1n E, Winslow RL, O'Rourke B (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Excitation-contraction coupling/mitochondrial energetics (ECME) model (Cortassa et al. 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"An intricate network of reactions is involved in matching energy supply with demand in the heart. This complexity\r\narises because energy production both modulates and is modulated by the electrophysiological and contractile activity of the\r\ncardiac myocyte. Here, we present an integrated mathematical model of the cardiac cell that links excitation-contraction\r\ncoupling with mitochondrial energy generation. The dynamics of the model are described by a system of 50 ordinary differential\r\nequations. The formulation explicitly incorporates cytoplasmic ATP-consuming processes associated with force generation and\r\nion transport, as well as the creatine kinase reaction. Changes in the electrical and contractile activity of the myocyte are\r\ncoupled to mitochondrial energetics through the ATP, Ca21, and Na1 concentrations in the myoplasmic and mitochondrial\r\nmatrix compartments. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/105383",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2009-05-28T15:15:39",
+ "ver_number": 6
+ },
+ "105385": {
+ "class_id": 19,
+ "created": "2007-12-13T15:48:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 105385,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97862,
+ "object_name": "Held, Joshua [j-held at northwestern.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 104518,
+ "object_name": "Mercer JN, Chan CS, Tkatch T, Held J, Surmeier DJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "105385_1",
+ "name": "Figure 9"
+ },
+ {
+ "id": "105385_2",
+ "name": "Figure 10"
+ }
+ ],
+ "default": "105385_1"
+ },
+ "name": "Nav1.6 sodium channel model in globus pallidus neurons (Mercer et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model files for the paper Mercer JN, Chan CS, Tkatch T, Held J, Surmeier DJ. Nav1.6 sodium channels are critical to pacemaking and fast spiking in globus pallidus neurons.,J Neurosci. 2007 Dec 5;27(49):13552-66."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/105385",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181150,
+ "object_name": "105385_2"
+ },
+ {
+ "object_id": 181157,
+ "object_name": "105385_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 294
+ },
+ "ver_date": "2017-06-20T17:18:20.913",
+ "ver_number": 12
+ },
+ "105501": {
+ "class_id": 19,
+ "created": "2007-12-14T18:58:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 105501,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97458,
+ "object_name": "Okamoto H, Isomura Y, Takada M, Fukai T (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Temporal integration by stochastic recurrent network (Okamoto et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Temporal integration of externally or internally\r\ndriven information is required for a variety of cognitive\r\nprocesses. This computation is generally linked with graded rate\r\nchanges in cortical neurons, which typically appear during a delay\r\nperiod of cognitive task in the prefrontal and other cortical areas.\r\nHere, we present a neural network model to produce graded (climbing\r\nor descending) neuronal activity. Model neurons are interconnected\r\nrandomly by AMPA-receptor\u2013mediated fast excitatory synapses and\r\nare subject to noisy background excitatory and inhibitory synaptic\r\ninputs. In each neuron, a prolonged afterdepolarizing potential follows\r\nevery spike generation. Then, driven by an external input, the individual\r\nneurons display bimodal rate changes between a baseline state\r\nand an elevated firing state, with the latter being sustained by regenerated\r\nafterdepolarizing potentials. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/105501",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 71
+ },
+ "ver_date": "2008-10-09T16:52:22",
+ "ver_number": 6
+ },
+ "105506": {
+ "class_id": 19,
+ "created": "2007-12-17T19:07:01",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 105506,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 105511,
+ "object_name": "Sun J, Pang ZP, Qin D, Fahim AT, Adachi R, S\u00fcdhof TC (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83509,
+ "object_name": "IGOR Pro"
+ }
+ ]
+ },
+ "name": "A dual-Ca2+-sensor model for neurotransmitter release in a central synapse (Sun et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Ca2+-triggered synchronous neurotransmitter release is well described, but asynchronous release-in fact, its very existence-remains enigmatic. \r\nHere we report a quantitative description of asynchronous neurotransmitter release in calyx-of-Held synapses. \r\n...\r\nOur results reveal that release triggered in wild-type synapses at low Ca2+ concentrations is physiologically asynchronous, and that asynchronous release completely empties the readily releasable pool of vesicles during sustained elevations of Ca2+. \r\nWe propose a dual-Ca2+-sensor model of release that quantitatively describes the contributions of synchronous and asynchronous release under conditions of different presynaptic Ca2+ dynamics.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/105506",
+ "ver_date": "2016-09-16T14:19:33.8",
+ "ver_number": 6
+ },
+ "105507": {
+ "class_id": 19,
+ "created": "2007-12-17T20:06:29",
+ "gitrepo": true,
+ "id": 105507,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 105521,
+ "object_name": "Lytton WW, Omurtag A (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Tonic-clonic transitions in a seizure simulation (Lytton and Omurtag 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... The authors have ... computationally manageable networks of moderate size consisting of 1,000 to 3,000 neurons with multiple intrinsic\r\nand synaptic properties. \r\n\r\nExperiments on these simulations demonstrated the presence of epileptiform behavior in the form of\r\nrepetitive high-intensity population events (clonic behavior) or\r\nlatch-up with near maximal activity (tonic behavior). \r\n\r\n...\r\nSeveral simulations revealed the importance of random coincident inputs to shift a network from\r\na low-activation to a high-activation epileptiform state. Finally, a\r\nsimulated anticonvulsant acting on excitability tended to preferentially\r\ndecrease tonic activity.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/105507",
+ "ver_date": "2022-05-30T15:55:20.163",
+ "ver_number": 12
+ },
+ "105528": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Wang et al., Life Sci 2007;82:11-20"
+ },
+ "class_id": 19,
+ "created": "2007-12-22T06:25:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 105528,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 62653,
+ "object_name": "Wang, Ya-Jean "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 105530,
+ "object_name": "Wang YJ, Lin MW, Lin AA, Wu SN (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Effect of riluzole on action potential in cultured human skeletal muscle cells (Wang YJ et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 105531,
+ "object_name": "Skeletal muscle cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulation studies also unraveled that both decreased conductance of I(Na) and increased conductance of I(K(Ca)) utilized to mimic riluzole\r\nactions in skeletal muscle cells could combine to decrease the amplitude of action potentials and increase the repolarization of action potentials."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/105528",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sheng-Nan Wu\r\nYa-Jean Wang"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "skeltal muscle cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2007-12-22T12:41:53",
+ "ver_number": 5
+ },
+ "106551": {
+ "class_id": 19,
+ "created": "2007-12-27T05:20:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 106551,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 107765,
+ "object_name": "Cassar\u00e0 AM, Hagberg GE, Bianciardi M, Migliore M, Maraviglia B (2008)"
+ },
+ {
+ "object_id": 112925,
+ "object_name": "Cassar\u00e0 AM, Maraviglia B (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: calculation of MRI signals (Cassara et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from the paper:\r\nCassar\u00e0 AM, Hagberg GE, Bianciardi M, Migliore M, Maraviglia B.\r\nRealistic simulations of neuronal activity: A contribution to the debate on direct detection of neuronal currents by MRI.\r\nNeuroimage. 39:87-106 (2008).\r\n\r\nIn this paper, we use a detailed calculation of the magnetic field produced by the neuronal \r\ncurrents propagating over a hippocampal CA1 pyramidal neuron placed inside a cubic MR voxel of \r\nlength 1.2 mm to estimate the Magnetic Resonance signal.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/106551",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Antonio Cassara'"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181748,
+ "object_name": "106551"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 169
+ },
+ "ver_date": "2014-02-01T08:02:01",
+ "ver_number": 10
+ },
+ "106891": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 124524,
+ "object_name": "pre NEURON 7"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2007-12-27T22:11:10",
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 106891,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112927,
+ "object_name": "Lytton WW, Omurtag A, Neymotin SA, Hines ML (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "106891",
+ "name": "ModelView"
+ }
+ ],
+ "default": "106891"
+ },
+ "name": "JitCon: Just in time connectivity for large spiking networks (Lytton et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This simulation is primarily an illustration and is not well optimized for actually running large\r\n networks.\r\njitcon.mod contains a large amount of C level code, understanding of which requires some\r\n knowledge of Neuron internals"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/106891",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Hodgkin-Huxley"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Ball-stick"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181791,
+ "object_name": "106891"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 268
+ },
+ "ver_date": "2023-04-30T15:16:17.49",
+ "ver_number": 27
+ },
+ "108458": {
+ "class_id": 19,
+ "created": "2008-01-04T05:57:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 108458,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 50209,
+ "object_name": "Kampa, Bjorn M [Bjoern.Kampa at anu.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 71318,
+ "object_name": "Kampa BM, Stuart GJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "108458",
+ "name": "ModelView"
+ }
+ ],
+ "default": "108458"
+ },
+ "name": "Calcium spikes in basal dendrites (Kampa and Stuart 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was published in Kampa & Stuart (2006) J Neurosci 26(28):7424-32. The simulation creates two plots showing voltage and calcium changes in basal dendrites of layer 5 pyramidal neurons during action potential backpropagation. \r\n\r\ncreated by B. Kampa (2006)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/108458",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181541,
+ "object_name": "108458"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 190
+ },
+ "ver_date": "2017-07-03T22:23:48.73",
+ "ver_number": 12
+ },
+ "108459": {
+ "class_id": 19,
+ "created": "2008-01-04T06:25:57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 108459,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 50209,
+ "object_name": "Kampa, Bjorn M [Bjoern.Kampa at anu.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82860,
+ "object_name": "Letzkus JJ, Kampa BM, Stuart GJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "108459_1",
+ "name": "3 AP burst"
+ },
+ {
+ "id": "108459_2",
+ "name": "no APs"
+ }
+ ],
+ "default": "108459_1"
+ },
+ "name": "STDP depends on dendritic synapse location (Letzkus et al. 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was published in Letzkus, Kampa & Stuart (2006) J Neurosci 26(41):10420-9. The simulation creates several plots showing voltage and NMDA current and conductance changes at different apical dendritic locations in layer 5 pyramidal neurons during STDP induction protocols. \r\n\r\nCreated by B. Kampa (2006)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/108459",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I h"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181458,
+ "object_name": "108459_1"
+ },
+ {
+ "object_id": 181459,
+ "object_name": "108459_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 332
+ },
+ "ver_date": "2015-01-02T21:47:29",
+ "ver_number": 18
+ },
+ "110022": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 110023,
+ "object_name": "copy of web linked version"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-01-09T16:02:16",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 110022,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 110025,
+ "object_name": "Heinzle J, Hepp K, Martin KA (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A microcircuit model of the frontal eye fields (Heinzle et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... we show that the canonical circuit (Douglas et al. 1989, Douglas and Martin 1991) can,\r\nwith a few modifications, model the primate FEF. The spike-based network of integrate-and-fire neurons was tested in tasks that were\r\nused in electrophysiological experiments in behaving macaque monkeys. The dynamics of the model matched those of neurons observed\r\nin the FEF, and the behavioral results matched those observed in psychophysical experiments. The close relationship between the model\r\nand the cortical architecture allows a detailed comparison of the simulation results with physiological data and predicts details of the\r\nanatomical circuit of the FEF.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/110022",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:49:23.293",
+ "ver_number": 11
+ },
+ "110560": {
+ "class_id": 19,
+ "created": "2008-01-13T16:28:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 110560,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 110661,
+ "object_name": "Korngreen, Alon [alon.korngreen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 110561,
+ "object_name": "Bar-Yehuda D, Korngreen A (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "110560_1",
+ "name": "Potassium 1. L5 Pyramidal Neuron"
+ },
+ {
+ "id": "110560_2",
+ "name": "Potassium 2. L4 interneuron"
+ },
+ {
+ "id": "110560_3",
+ "name": "Potassium 3. L2/3 bipolar interneuron"
+ },
+ {
+ "id": "110560_4",
+ "name": "Potassium 4. L4 spiny stellate"
+ },
+ {
+ "id": "110560_5",
+ "name": "Calcium 1. L5 Pyramidal Neuron"
+ },
+ {
+ "id": "110560_6",
+ "name": "Calcium 2. L4 interneuron"
+ },
+ {
+ "id": "110560_7",
+ "name": "Calcium 3. L2/3 bipolar interneuron"
+ },
+ {
+ "id": "110560_8",
+ "name": "Calcium 4. L4 spiny stellate"
+ }
+ ],
+ "default": "110560_1"
+ },
+ "name": "Space clamp problems in neurons with voltage-gated conductances (Bar-Yehuda and Korngreen 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... using numerical simulations, we show that the distortions of voltage-gated K+ and Ca2+ currents are substantial even in neurons with short dendrites. The simulations also demonstrate that passive cable theory cannot be used to justify voltage-clamping of neurons, due to significant shunting to the reversal potential of the voltage-gated conductance during channel activation.\r\n... \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/110560",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181468,
+ "object_name": "110560_4"
+ },
+ {
+ "object_id": 181469,
+ "object_name": "110560_5"
+ },
+ {
+ "object_id": 181470,
+ "object_name": "110560_6"
+ },
+ {
+ "object_id": 181471,
+ "object_name": "110560_7"
+ },
+ {
+ "object_id": 181472,
+ "object_name": "110560_1"
+ },
+ {
+ "object_id": 181473,
+ "object_name": "110560_2"
+ },
+ {
+ "object_id": 181474,
+ "object_name": "110560_3"
+ },
+ {
+ "object_id": 181476,
+ "object_name": "110560_8"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:06:46",
+ "ver_number": 9
+ },
+ "111870": {
+ "class_id": 19,
+ "created": "2008-01-23T12:03:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 111870,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 111873,
+ "object_name": "Hadipour-Niktarash, Arash [arash.hadipour at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 69507,
+ "object_name": "Hadipour-Niktarash A (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Thalamic transformation of pallidal input (Hadipour-Niktarash 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In Parkinson\u2019s disease, neurons of the internal segment of the globus pallidus (GPi) display the low-frequency tremor-related oscillations.\r\n\r\nThese oscillatory activities are transmitted to the thalamic relay nuclei.\r\n\r\nComputer models of the interacting thalamocortical (TC) and thalamic reticular (RE) neurons were used to explore how the TC-RE network processes the low-frequency oscillations of the GPi neurons. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/111870",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 139
+ },
+ "ver_date": "2008-10-09T10:56:52",
+ "ver_number": 14
+ },
+ "111877": {
+ "biosimulations": {
+ "value": "modeldb-111877"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Moczydlowski & Latorre, J Gen Physiol 1983;82:511-42. & Wang et al., Life Sci 2008;82:11-20."
+ },
+ "class_id": 19,
+ "created": "2008-02-03T23:07:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 111877,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4439,
+ "object_name": "Moczydlowski E, Latorre R (1983)"
+ },
+ {
+ "object_id": 105530,
+ "object_name": "Wang YJ, Lin MW, Lin AA, Wu SN (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Ca-dependent K Channel: kinetics from rat muscle (Moczydlowski, Latorre 1983) XPP",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 105531,
+ "object_name": "Skeletal muscle cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an XPP version of the classic KCa channel from Moczydlowski and Latorre 1983."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/111877",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sheng-Nan Wu\r\nsnwu@mail.ncku.edu.tw"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "skeletal muscle cell"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "NEURON"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2008-02-04T09:54:53",
+ "ver_number": 8
+ },
+ "111880": {
+ "class_id": 19,
+ "created": "2008-02-04T10:40:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 111880,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 100075,
+ "object_name": "Suffczynski P, Kalitzin S, Lopes Da Silva FH (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Thalamocortical model of spike and wave seizures (Suffczynski et al. 2004)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "SIMULINK macroscopic model of transitions between normal (spindle) activity and spike and wave (SW) discharges in the thalamocortical network. The model exhibits bistability properties and stochastic fluctuations present in the network may flip the system between the two operational states. The predictions of the model were compared with real EEG data in rats and humans. A possibility to abort an ictal state by a single counter stimulus is suggested by the model. \r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/111880",
+ "other_type": {
+ "attr_id": 305,
+ "value": "Neural mass"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "suffa@fuw.edu.pl"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2017-04-04T13:53:28.92",
+ "ver_number": 10
+ },
+ "111967": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Time dependent molecular memory in single voltage gated sodium channel (Nayak & Sikdar, 2007)"
+ },
+ "class_id": 19,
+ "created": "2008-02-18T04:29:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 111967,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 112043,
+ "object_name": "Nayak, Tapan Kumar [tapan at mbu.iisc.ernet.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 111964,
+ "object_name": "Nayak TK, Sikdar SK (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 112042,
+ "object_name": "Yale HMM"
+ }
+ ]
+ },
+ "name": "Kinetic properties of voltage gated Na channel (Nayak and Sikdar 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we illustrate novel non-linear properties of voltage gated Na+ channel induced by sustained membrane depolarization. In cell-attached patch clamp recordings of rNav1.2 channels expressed in CHO cells, we found complex non-linear changes in the molecular kinetic properties, including channel dwell times and unitary conductance of single Na+ channels that were dependent on the extent of conditioning membrane depolarization.\r\nA \u201cmolecular memory\u201d phenomenon arises at longer depolarization characterized by clusters of dwell time events and strong autocorrelation in dwell times. Hidden Markov Modeling (HMM) ... suggested a possible explanation to the memory phenomenon.\r\nSee paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/111967",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Yale HMM"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tapan@mbu.iisc.ernet.in"
+ },
+ "ver_date": "2018-02-26T11:10:36.083",
+ "ver_number": 12
+ },
+ "112079": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Lin MW, Wang YJ, Liu SI, Lin AA, Lo YC, Wu SN. Characterization of aconitine-"
+ },
+ "class_id": 19,
+ "created": "2008-03-17T09:23:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88117,
+ "object_name": "I_KHT"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 112079,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 112082,
+ "object_name": "Lin, Ming-Wei "
+ },
+ {
+ "object_id": 112083,
+ "object_name": "Wan, Ya-Jean "
+ },
+ {
+ "object_id": 112084,
+ "object_name": "Lin, An-An "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112081,
+ "object_name": "Lin MW, Wang YJ, Liu SI, Lin AA, Lo YC, Wu SN (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Properties of aconitine-induced block of KDR current in NG108-15 neurons (Lin et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88207,
+ "object_name": "Neuroblastoma"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The effects of aconitine (ACO), a highly toxic alkaloid, on ion currents in differentiated NG108-15 neuronal cells were investigated in this study. ACO (0.3-30 microM) suppressed the amplitude of delayed rectifier K+ current (IK(DR)) in a concentration-dependent manner with an IC50 value of 3.1 microM. The presence of ACO enhanced the rate and extent of IK(DR) inactivation, although it had no effect on the initial activation phase of IK(DR). ... A modeled cell was designed to duplicate its inhibitory effect on spontaneous pacemaking. ... Taken together, the experimental data and simulations show that ACO can block delayed rectifier K+ channels of neurons in a concentration- and state-dependent manner. Changes in action potentials induced by ACO in neurons in vivo can be explained mainly by its blocking actions on IK(DR) and INa.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112079",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ming-Wei Lin, Ya-Jean Wan, An-An Lin and Sheng-Nan Wu"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "neuroblastoma cells"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2008-03-17T11:26:03",
+ "ver_number": 7
+ },
+ "112086": {
+ "class_id": 19,
+ "created": "2008-03-18T10:20:28",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 112086,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97968,
+ "object_name": "Giugliano, Michele [mgiugliano at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112446,
+ "object_name": "Giugliano M, Gambazzi L, Ballerini L, Prato M, Campidelli S (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Carbon nanotubes as electrical interfaces to neurons (Giugliano et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112447,
+ "object_name": "Hippocampus dissociated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In the present NEURON model, we explore simple phenomenological models of the extracellular coupling, occurring at the neuron-metal microelectrode junction and (possibly) at the neuron-carbon nanotube junction."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112086",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Dissociated hippocampal neuron"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181396,
+ "object_name": "112086_3"
+ },
+ {
+ "object_id": 181397,
+ "object_name": "112086_2"
+ },
+ {
+ "object_id": 181398,
+ "object_name": "112086_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 192
+ },
+ "ver_date": "2022-12-16T10:43:49.717",
+ "ver_number": 16
+ },
+ "112348": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 112349,
+ "object_name": "backup of web version"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-03-27T14:56:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 112348,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112311,
+ "object_name": "Olypher AV, Calabrese RL (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Activity constraints on stable neuronal or network parameters (Olypher and Calabrese 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52410,
+ "object_name": "Leech heart interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In this study, we developed a general description of parameter combinations for which specified\r\ncharacteristics of neuronal or network activity are constant.\r\nOur approach is based on the implicit function theorem and is applicable\r\nto activity characteristics that smoothly depend on parameters.\r\nSuch smoothness is often intrinsic to neuronal systems when they are in\r\nstable functional states.\r\nThe conclusions about how parameters compensate each other, developed in this study, can thus be used even\r\nwithout regard to the specific mathematical model describing a particular\r\nneuron or neuronal network. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112348",
+ "ver_date": "2019-09-06T16:35:02.7",
+ "ver_number": 13
+ },
+ "112359": {
+ "class_id": 19,
+ "created": "2008-03-28T10:33:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 112359,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 242863,
+ "object_name": "Alcohol Use Disorder"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112495,
+ "object_name": "Migliore M, Cannia C, Canavier CC (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "112359_1",
+ "name": "Control"
+ },
+ {
+ "id": "112359_2",
+ "name": "50mM"
+ },
+ {
+ "id": "112359_3",
+ "name": "100mM"
+ }
+ ],
+ "default": "112359_1"
+ },
+ "name": "Nigral dopaminergic neurons: effects of ethanol on Ih (Migliore et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We use a realistic computational model of dopaminergic neurons in vivo to suggest \r\nthat ethanol, through its effects on Ih, modifies the temporal structure of the spiking \r\nactivity. The model predicts that the dopamine level may increase much more during bursting \r\nthan pacemaking activity, especially in those brain regions with a slow dopamine clearance rate. \r\nThe results suggest that a selective pharmacological remedy could thus be devised against the \r\nrewarding effects of ethanol that are postulated to mediate alcohol abuse and addiction, \r\ntargeting the specific HCN genes expressed in dopaminergic neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112359",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181778,
+ "object_name": "112359_1"
+ },
+ {
+ "object_id": 181779,
+ "object_name": "112359_2"
+ },
+ {
+ "object_id": 181780,
+ "object_name": "112359_3"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 299
+ },
+ "ver_date": "2022-12-16T10:45:49.507",
+ "ver_number": 10
+ },
+ "112468": {
+ "class_id": 19,
+ "created": "2008-03-28T17:03:50",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 112468,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112450,
+ "object_name": "Bartocci E, Corradini F, Entcheva E, Grosu R, Smolka SA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 186717,
+ "object_name": "CellExcite"
+ }
+ ]
+ },
+ "name": "CellExcite: an efficient simulation environment for excitable cells (Bartocci et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ },
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We have developed CellExcite, a sophisticated simulation environment for excitable-cell networks. CellExcite allows the user to sketch a tissue of excitable cells, plan the stimuli to be applied during simulation, and customize the diffusion model. CellExcite adopts Hybrid Automata (HA) as the computational model in order to efficiently capture both discrete and continuous excitable-cell behavior.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112468",
+ "ver_date": "2017-06-02T17:41:01.88",
+ "ver_number": 8
+ },
+ "112546": {
+ "class_id": 19,
+ "created": "2008-03-31T02:01:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 112546,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114103,
+ "object_name": "Shah MM, Migliore M, Valencia I, Cooper EC, Brown DA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "112546_1",
+ "name": "fig.4(i)"
+ },
+ {
+ "id": "112546_2",
+ "name": "fig.4(ii)"
+ },
+ {
+ "id": "112546_3",
+ "name": "fig.4(iii)"
+ },
+ {
+ "id": "112546_4",
+ "name": "fig.4(iv)"
+ }
+ ],
+ "default": "112546_1"
+ },
+ "name": "CA1 pyramidal neuron: functional significance of axonal Kv7 channels (Shah et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model used in this paper confirmed the experimental findings suggesting that axonal Kv7 channels are critically and uniquely required for determining the inherent spontaneous firing of \r\nhippocampal CA1 pyramids, independently of alterations in synaptic activity. \r\nThe model predicts that the axonal Kv7 density could be 3-5 times that at the soma."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112546",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181159,
+ "object_name": "112546_4"
+ },
+ {
+ "object_id": 181788,
+ "object_name": "112546_2"
+ },
+ {
+ "object_id": 181789,
+ "object_name": "112546_3"
+ },
+ {
+ "object_id": 181790,
+ "object_name": "112546_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 174
+ },
+ "ver_date": "2015-01-02T22:39:16",
+ "ver_number": 7
+ },
+ "112547": {
+ "biosimulations": {
+ "value": "modeldb-112547"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Laventovich and Hemkin. A mathematical model of sponaneous calcium(II) oscillations in astrocytes. J Theor Biol 2008;251:553-60"
+ },
+ "class_id": 19,
+ "created": "2008-04-02T06:01:01",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 112547,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 150554,
+ "object_name": "Calcium waves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112550,
+ "object_name": "Lavrentovich M, Hemkin S (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Spontaneous calcium oscillations in astrocytes (Lavrentovich and Hemkin 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We propose here a mathematical model of how spontaneous Ca2+ \r\noscillations arise in astrocytes. This model uses the calcium-induced calcium release and inositol cross-coupling \r\nmechanisms coupled with a receptor-independent method for producing inositol (1,4,5)-trisphosphate as the heart \r\nof the model. By computationally mimicking experimental constraints we have found that this model provides \r\nresults that are qualitatively similar to experiment.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112547",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2014-04-21T10:47:27",
+ "ver_number": 7
+ },
+ "112633": {
+ "class_id": 19,
+ "created": "2008-04-04T10:48:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 112633,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112307,
+ "object_name": "Gansert J, Golowasch J, Nadim F (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 112634,
+ "object_name": "Network"
+ }
+ ]
+ },
+ "name": "Gap-junction coupled network activity depends on coupled dendrites diameter (Gansert et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We have previously shown that the amplitude of electrical signals propagating across gap-junctionally coupled passive cables is maximized at a unique diameter. This suggests that threshold-dependent signals may propagate through gap junctions for a finite range of diameters around this optimal value. \r\nHere we examine the diameter dependence of action potential propagation across model networks of dendro-dendritically coupled neurons. The neurons in these models have passive soma and dendrites and an action potential-generating axon. We show that propagation of action potentials across gap junctions occurs only over a finite range of dendritic diameters and that propagation delay depends on this diameter. ...\". See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112633",
+ "ver_date": "2008-06-09T12:06:10",
+ "ver_number": 10
+ },
+ "112685": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 127997,
+ "object_name": "neuroConstruct"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-04-05T03:50:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 112685,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 46840,
+ "object_name": "D'Angelo, Egidio [dangelo at unipv.it]"
+ },
+ {
+ "object_id": 112689,
+ "object_name": "De Schutter, Erik [erik at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112686,
+ "object_name": "Solinas S, Forti L, Cesana E, Mapelli J, De Schutter E, D'Angelo E (2007)"
+ },
+ {
+ "object_id": 112690,
+ "object_name": "Solinas S, Forti L, Cesana E, Mapelli J, De Schutter E, D'Angelo E (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 116943,
+ "object_name": "neuroConstruct (web link to model)"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "112685",
+ "name": "ModelView"
+ }
+ ],
+ "default": "112685"
+ },
+ "name": "Cerebellar Golgi cell (Solinas et al. 2007a, 2007b)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Our results suggest that a complex complement of ionic mechanisms is needed to fine-tune separate aspects of the neuronal response dynamics. Simulations also suggest that the Golgi cell may exploit these mechanisms to obtain a fine regulation of timing of incoming mossy fiber responses and granular layer circuit oscillation and bursting.\""
+ },
+ "opensourcebrain": {
+ "value": "cerebellum--cerebellar-golgi-cell--solinasetal-golgicell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112685",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "D'Angelo Egidio \r\nDe Schutter Erik "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cerebellar Golgi cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "solinas@unipv.it"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 195
+ },
+ "ver_date": "2022-12-16T10:47:42.83",
+ "ver_number": 21
+ },
+ "112834": {
+ "class_id": 19,
+ "created": "2008-04-13T15:22:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 112844,
+ "object_name": "I Q"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 112834,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 112845,
+ "object_name": "Wolf, John A. [johnwolf at warpmail.net]"
+ },
+ {
+ "object_id": 112846,
+ "object_name": "Moyer, Jason [jtmoyer at seas.upenn.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ },
+ {
+ "object_id": 112854,
+ "object_name": "Addiction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 86558,
+ "object_name": "Wolf JA, Moyer JT, Lazarewicz MT, Contreras D, Benoit-Marand M, O'Donnell P, Finkel LH (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Afferent Integration in the NAcb MSP Cell (Wolf et al. 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112837,
+ "object_name": "Nucleus accumbens spiny projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We describe a computational model of the principal cell in the nucleus accumbens (NAcb), the medium spiny projection (MSP) neuron. \r\n\r\nThe model neuron, constructed in NEURON, includes all of the known ionic currents in these cells and receives synaptic input from simulated spike trains via NMDA, AMPA, and GABAA receptors. \r\n\r\n... results suggest that afferent information integration by the NAcb MSP cell may be compromised by pathology in which the NMDA current is altered or modulated, as has been proposed in both schizophrenia and addiction.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112834",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181687,
+ "object_name": "112834"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 151
+ },
+ "ver_date": "2014-01-20T15:52:46",
+ "ver_number": 18
+ },
+ "112836": {
+ "biosimulations": {
+ "value": "modeldb-112836"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Wang J, Yanqiu WS, Fei X."
+ },
+ "class_id": 19,
+ "created": "2008-04-14T02:00:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 112836,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 112917,
+ "object_name": "Wu, Yung-Hun "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 112855,
+ "object_name": "Complementary and alternative medicine"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112848,
+ "object_name": "Wang J,Si W, Che Y, Fei X (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Spike trains in Hodgkin\u2013Huxley model and ISIs of acupuncture manipulations (Wang et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Hodgkin-Huxley equations (HH) are parameterized by a number of parameters \r\nand shows a variety of qualitatively different behaviors depending on the \r\nparameter values. Under stimulation of an external periodic voltage, the \r\nISIs (interspike intervals) of a HH model are investigated in this work, \r\nwhile the frequency of the voltage is taken as the controlling parameter. \r\nAs well-known, the science of acupuncture and moxibustion is an important \r\ncomponent of Traditional Chinese Medicine with a long history. Although there \r\nare a number of different acupuncture manipulations, the method for \r\ndistinguishing them is rarely investigated. With the idea of ISI, we study \r\nthe electrical signal time series at the spinal dorsal horn produced by \r\nthree different acupuncture manipulations in Zusanli point and present an \r\neffective way to distinguish them.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112836",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2008-04-15T10:19:23",
+ "ver_number": 9
+ },
+ "112914": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 112915,
+ "object_name": "backup of web linked model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-04-14T17:12:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 112914,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 102463,
+ "object_name": "Matveev V, Bose A, Nadim F (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Two-cell inhibitory network bursting dynamics captured in a one-dimensional map (Matveev et al 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here\r\nwe describe a simple method that allows us to investigate\r\nthe existence and stability of anti-phase bursting\r\nsolutions in a network of two spiking neurons, each\r\npossessing a T-type calcium current and coupled by\r\nreciprocal inhibition. \r\nWe derive a one-dimensional map\r\nwhich fully characterizes the genesis and regulation of\r\nanti-phase bursting arising from the interaction of the\r\nT-current properties with the properties of synaptic\r\ninhibition. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112914",
+ "ver_date": "2018-02-12T13:49:42.413",
+ "ver_number": 11
+ },
+ "112922": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 112923,
+ "object_name": "backup of web link"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-04-15T14:35:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 112922,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112919,
+ "object_name": "Grossberg S and Versace M (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83553,
+ "object_name": "KInNeSS (web link to model)"
+ },
+ {
+ "object_id": 87474,
+ "object_name": "XML (web link to model)"
+ },
+ {
+ "object_id": 154350,
+ "object_name": "NeuroML (web link to model)"
+ }
+ ]
+ },
+ "name": "Spikes,synchrony,and attentive learning by laminar thalamocort. circuits (Grossberg & Versace 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... The model\r\nhereby clarifies, for the first time, how the following levels of brain organization coexist to realize\r\ncognitive processing properties that regulate fast learning and stable memory of brain representations:\r\nsingle cell properties, such as spiking dynamics, spike-timing-dependent plasticity (STDP), and\r\nacetylcholine modulation; detailed laminar thalamic and cortical circuit designs and their interactions;\r\naggregate cell recordings, such as current-source densities and local field potentials; and single cell and\r\nlarge-scale inter-areal oscillations in the gamma and beta frequency domains. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112922",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "ver_date": "2015-05-29T14:57:47.28",
+ "ver_number": 10
+ },
+ "112968": {
+ "class_id": 19,
+ "created": "2008-04-21T17:05:29",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 112968,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83550,
+ "object_name": "Kuznetsova, Anna [anna.kuznetsova at utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112959,
+ "object_name": "Kuznetsova AY, Deth RC (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Synchronization by D4 dopamine receptor-mediated phospholipid methylation (Kuznetsova, Deth 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We describe a new molecular mechanism of\r\ndopamine-induced membrane protein modulation that\r\ncan tune neuronal oscillation frequency to attention related\r\ngamma rhythm. This mechanism is based on\r\nthe unique ability of D4 dopamine receptors (D4R)\r\nto carry out phospholipid methylation (PLM) that\r\nmay affect the kinetics of ion channels.\r\nWe show that by deceasing the inertia of the delayed rectifier potassium channel, a transition to 40 Hz oscillations can be achieved. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/112968",
+ "ver_date": "2015-10-08T15:43:40.88",
+ "ver_number": 5
+ },
+ "113426": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 113427,
+ "object_name": "backup of web version"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-04-24T18:07:29",
+ "gitrepo": false,
+ "id": 113426,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 93367,
+ "object_name": "Roberts PD (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113428,
+ "object_name": "Java (web link to model)"
+ }
+ ]
+ },
+ "name": "Stability of complex spike timing-dependent plasticity in cerebellar learning (Roberts 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Dynamics of spike-timing dependent synaptic\r\nplasticity are analyzed for excitatory and inhibitory synapses\r\nonto cerebellar Purkinje cells. \r\n\r\nThe purpose of this study is\r\nto place theoretical constraints on candidate synaptic learning\r\nrules that determine the changes in synaptic efficacy\r\ndue to pairing complex spikes with presynaptic spikes in\r\nparallel fibers and inhibitory interneurons. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/113426",
+ "ver_date": "2015-12-14T14:00:28.573",
+ "ver_number": 9
+ },
+ "113446": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Computer simulations of neuron-glia interactions mediated by ion flux"
+ },
+ "class_id": 19,
+ "created": "2008-04-28T15:44:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 113446,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 82503,
+ "object_name": "Somjen GG, Kager H, Wadman WJ (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Computer simulations of neuron-glia interactions mediated by ion flux (Somjen et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nTo examine the effect of glial K+ uptake, we used a model neuron equipped with Na+, K+, Ca2+ and Cl−\r\nconductances, ion pumps and ion exchangers, surrounded by interstitial space and glia. \r\nThe glial membrane was either \u201cpassive\u201d, incorporating only leak channels and an ion\r\nexchange pump, or it had rectifying K+ channels. We computed ion fluxes, concentration changes and osmotic\r\nvolume changes.\r\n...\r\nWe conclude that voltage gated K+ currents can boost the effectiveness of the glial \u201cpotassium buffer\u201d\r\nand that this buffer function is important even at moderate or low levels of excitation, but especially so in pathological states.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/113446",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181349,
+ "object_name": "113446"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 206
+ },
+ "ver_date": "2023-04-30T15:18:43.997",
+ "ver_number": 11
+ },
+ "113459": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Kim, H. & Bao, S. (2007). Distributed representation of perceptual categories in the auditory cortex. J Comput Neurosci. DOI 10.1007/s10827-007-0055-5"
+ },
+ "class_id": 19,
+ "created": "2008-04-29T19:46:06",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 113459,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 113460,
+ "object_name": "Bao, Shaowen [sbao at berkeley.edu]"
+ },
+ {
+ "object_id": 113461,
+ "object_name": "Kim, Heesoo [heesoo at berkeley.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 113658,
+ "object_name": "Perceptual Categories"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112952,
+ "object_name": "Kim H, Bao S (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Distributed representation of perceptual categories in the auditory cortex (Kim and Bao 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Examines the hypothesis that enlargement in cortical stimulus representation is a mechanism of categorical perception. Categorical perception is tested using discrimination and identification ability."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/113459",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Perceptual Categories"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Bao, Shaowen "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "heesoo@berkeley.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 83
+ },
+ "ver_date": "2018-10-18T15:31:20.693",
+ "ver_number": 7
+ },
+ "113649": {
+ "citation": {
+ "attr_id": 391,
+ "value": "18450780"
+ },
+ "class_id": 19,
+ "created": "2008-05-03T17:33:08",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 113649,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139659,
+ "object_name": "Hennig, Matthias H [mhhennig at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 113648,
+ "object_name": "Hennig MH, Postlethwaite M, Forsythe ID, Graham BP (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Multiple mechanisms of short term plasticity at the calyx of Held (Hennig et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 85986,
+ "object_name": "Medial Nucleus of the Trapezoid Body (MNTB) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a new model of the short-term dynamics of glutamatergic synaptic transmission, which incorporates multiple mechanisms acting at differing sites and across a range of different time scales (ms to tens of seconds). In the paper, we show that this model can accurately reproduce the experimentally measured time-course of short term depression across different stimulus frequencies at the calyx of Held. The model demonstrates how multiple forms of activity-dependent modulation of release probability and vesicle pool depletion interact, and shows how stimulus-history-dependent recovery from synaptic depression can arise from dynamics on multiple time scales."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/113649",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mhennig@inf.ed.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 123
+ },
+ "ver_date": "2011-06-10T13:48:42",
+ "ver_number": 4
+ },
+ "113732": {
+ "class_id": 19,
+ "created": "2008-05-07T17:21:58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 113732,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33776,
+ "object_name": "Sikora, Michael [Sikora at umn.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 113742,
+ "object_name": "Magnetoencephalography"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112075,
+ "object_name": "Jones SR, Pritchett DL, Stufflebeam SM, H\u00e4m\u00e4l\u00e4inen M, Moore CI (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "113732_1",
+ "name": "Wiring configuration for the supra-threshold evoked response"
+ },
+ {
+ "id": "113732_2",
+ "name": "Wiring configuration for the non-perceived evoked response"
+ },
+ {
+ "id": "113732_3",
+ "name": "Wiring configuration for the perceived evoked response"
+ }
+ ],
+ "default": "113732_1"
+ },
+ "name": "MEG of Somatosensory Neocortex (Jones et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... To make a direct and principled connection between the SI (somatosensory primary neocortex magnetoencephalography) waveform and underlying neural dynamics, we developed a biophysically realistic\r\ncomputational SI model that contained excitatory and inhibitory neurons in supragranular and infragranular layers. ... our model\r\nprovides a biophysically realistic solution to the MEG signal and can predict the electrophysiological correlates of human perception.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/113732",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Magnetoencephalography"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181784,
+ "object_name": "113732_2"
+ },
+ {
+ "object_id": 181785,
+ "object_name": "113732_3"
+ },
+ {
+ "object_id": 181786,
+ "object_name": "113732_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 276
+ },
+ "ver_date": "2022-05-27T10:09:30.92",
+ "ver_number": 27
+ },
+ "113939": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Versace, M., Ames, H., Leveille, J., Fortenberry, B. and Gorchetchnikov, A. (2008). Kinness: a modular framework for computational neuroscience. Submitted to Neuroinformatics"
+ },
+ "class_id": 19,
+ "created": "2008-05-20T08:29:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 113939,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 113945,
+ "object_name": "Gorchetchnikov, Anatoli [anatoli at cns.bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 113941,
+ "object_name": "Versace M, Ames H, L\u00e9veill\u00e9 J, Fortenberry B, Gorchetchnikov A (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113940,
+ "object_name": "KInNeSS"
+ },
+ {
+ "object_id": 154351,
+ "object_name": "NeuroML"
+ }
+ ]
+ },
+ "name": "KInNeSS : a modular framework for computational neuroscience (Versace et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The xml files provided here implement a network of excitatory and inhibitory spiking neurons, governed by either Hodgkin-Huxley or quadratic integrate-and-fire dynamical equations. The code is used to demonstrate the capabilities of the KInNeSS software package for simulation of networks of spiking neurons. The simulation protocol used here is meant to facilitate the comparison of KInNeSS with other simulators reviewed in Brette et al. (2007) . See the associated paper \"Versace et al. (2008) KInNeSS : a modular framework for computational neuroscience.\" for an extensive description of KInNeSS ."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/113939",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gorchetchnikov, Anatoli "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jasminl@cns.bu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2019-06-03T16:20:53.817",
+ "ver_number": 20
+ },
+ "113949": {
+ "class_id": 19,
+ "created": "2008-05-21T17:40:57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 113949,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 113954,
+ "object_name": "Roberts, Carson [carson.b.roberts at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64510,
+ "object_name": "Roberts CB, Best JA, Suter KJ (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Dendritic processing of excitatory synaptic input in GnRH neurons (Roberts et al. 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 113950,
+ "object_name": "GnRH neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we used electrophysiological recordings and neuronal reconstructions to generate computer models of (Gonadotopin-Releasing Hormone) GnRH neurons to examine the effects of synaptic inputs at varying distances from the soma along dendrites. ... analysis of reduced morphology models indicated that this population of cells is unlikely to exhibit low-frequency tonic spiking in the absence of synaptic input. ... applying realistic patterns of synaptic input to modeled GnRH neurons indicates that synapses located more than about 30% of the average dendrite length from the soma cannot drive firing at frequencies consistent with neuropeptide release. Thus, processing of synaptic input to dendrites of GnRH neurons is probably more complex than simple summation.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/113949",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2008-05-22T11:44:21",
+ "ver_number": 6
+ },
+ "113997": {
+ "citation": {
+ "attr_id": 391,
+ "value": "18474856"
+ },
+ "class_id": 19,
+ "created": "2008-06-01T09:16:20",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 113997,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 113999,
+ "object_name": "Winograd M, Destexhe A, Sanchez-Vives MV (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "113997_1",
+ "name": "HPGA non-saturating"
+ },
+ {
+ "id": "113997_2",
+ "name": "HPGA non-saturating (no Ih)"
+ },
+ {
+ "id": "113997_3",
+ "name": "HPGA saturating"
+ }
+ ],
+ "default": "113997_1"
+ },
+ "name": "Hodgkin-Huxley model of persistent activity in prefrontal cortex neurons (Winograd et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper demonstrate a form of graded persistent activity activated by hyperpolarization. This phenomenon is modeled based on a slow calcium regulation of Ih, similar to that introduced\r\nearlier for thalamic neurons (see Destexhe et al., J Neurophysiol. 1996). The only difference is that the calcium signal is here provided by the high-threshold calcium current (instead of the low-threshold calcium current in thalamic neurons)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/113997",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "destexhe@iaf.cnrs-gif.fr"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181824,
+ "object_name": "113997_3"
+ },
+ {
+ "object_id": 181825,
+ "object_name": "113997_2"
+ },
+ {
+ "object_id": 181826,
+ "object_name": "113997_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 261
+ },
+ "ver_date": "2015-01-02T22:05:42",
+ "ver_number": 16
+ },
+ "114047": {
+ "citation": {
+ "attr_id": 391,
+ "value": "16339003"
+ },
+ "class_id": 19,
+ "created": "2008-06-03T15:15:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 114047,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33741,
+ "object_name": "Saraga, Fernanda [Fernanda.Saraga at utoronto.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 80138,
+ "object_name": "Saraga F, Ng L, Skinner FK (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Hippocampal basket cell gap junction network dynamics (Saraga et al. 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "2 cell network of hippocampal basket cells connected by gap junctions. Paper explores how distal gap junctions and active dendrites can tune network dynamics."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114047",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Gap junctions"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "CA1 basket cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fernanda.saraga@gmail.com"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181667,
+ "object_name": "114047"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 259
+ },
+ "ver_date": "2014-02-14T17:06:12",
+ "ver_number": 10
+ },
+ "114108": {
+ "biosimulations": {
+ "value": "modeldb-114108"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Wu SN, Chen BS, Lin MW, Liu YC. Contribution of slowly inactivating potassium current to delayed firing of action potentials in NG108-15 neuronal cells: Experimental and theoretical studies. J Theor Biol 2008;252:711-21"
+ },
+ "class_id": 19,
+ "created": "2008-06-06T05:35:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 114108,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 114111,
+ "object_name": "Chen, Bing-Shuo"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114110,
+ "object_name": "Wu SN, Chen BS, Lin MW, Liu YC (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Effect of slowly inactivating IKdr to delayed firing of action potentials (Wu et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88207,
+ "object_name": "Neuroblastoma"
+ },
+ {
+ "object_id": 114112,
+ "object_name": "NG108-15 neuronal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The properties of slowly inactivating delayed-rectifier K+ current (IKdr) were investigated in NG108-15 neuronal cells differentiated with long-term exposure to dibutyryl cyclic AMP. \r\n...\r\nThe computer model, in which state-dependent inactivation of IKdr was incorporated, was also implemented to predict the firing behavior present in NG108-15 cells. \r\n...\r\nOur theoretical work and the experimental results led us to propose a pivotal role of slowly inactivating IKdr in delayed firing of APs in NG108-15 cells. The results also suggest that aconitine modulation of IKdr gating is an important molecular mechanism through which it can contribute to neuronal firing.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114108",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sheng-Nan Wu, Bing-Shuo Chen"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2008-06-06T10:12:48",
+ "ver_number": 8
+ },
+ "114230": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Zheng M, Friesen WO, Iwasaki T (2007) Systems-level modeling of neuronal circuits for leech swimming.modeling of neuronal circuits for leech swimming.J Comput Neurosci 22:21-38"
+ },
+ "class_id": 19,
+ "created": "2008-06-12T07:34:19",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 114230,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 93156,
+ "object_name": "Zheng M, Friesen WO, Iwasaki T (2007)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Systems-level modeling of neuronal circuits for leech swimming (Zheng et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"This paper describes a mathematical model of the neuronal central pattern generator (CPG) that controls the rhythmic body motion of the swimming leech. The systems approach is employed to capture the neuronal dynamics essential for generating coordinated oscillations of cell membrane potentials by a simple CPG architecture with a minimal number of parameters. \r\n... parameter estimation leads to predictions regarding the synaptic coupling strength and intrinsic period gradient along the nerve cord, the latter of which agrees qualitatively with experimental observations.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114230",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114272,
+ "object_name": "Hirudinea (leech)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:21:46.24",
+ "ver_number": 9
+ },
+ "114242": {
+ "class_id": 19,
+ "created": "2008-06-17T12:24:19",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 114242,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 115423,
+ "object_name": "Touboul J, Brette R (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Brette-Gerstner model (Touboul and Brette 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Brian code to simulate the Brette-Gerstner model and reproduce the figures of Touboul and Brette, Biol Cyber (2008)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114242",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "brette@di.ens.fr"
+ },
+ "ver_date": "2017-07-28T11:57:10.047",
+ "ver_number": 4
+ },
+ "114310": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 18483611"
+ },
+ "class_id": 19,
+ "created": "2008-06-25T10:50:05",
+ "gitrepo": false,
+ "id": 114310,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114312,
+ "object_name": "Donohue, Duncan [duncan_donohue at hotmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114311,
+ "object_name": "Donohue DE, Ascoli GA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ }
+ ]
+ },
+ "name": "A comparative computer simulation of dendritic morphology (Donohue and Ascoli 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Morphological aspects of dendritic branching such branch lengths, taper rates,ratios of daughter radii, and bifurcation probabilities are measured from real cells. These morphometrics are then resampled to create virtual trees based on the current branch order, radius, path distance to the soma, or combination of the three."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114310",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Donohue, Duncan "
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Morphological"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "duncan_donohue@hotmail.com"
+ },
+ "ver_date": "2008-06-25T13:35:34",
+ "ver_number": 7
+ },
+ "114337": {
+ "class_id": 19,
+ "created": "2008-07-08T17:25:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ },
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122811,
+ "object_name": "Cav3.3 CACNA1I"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 114337,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114338,
+ "object_name": "Xu J, Clancy CE (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Ionic mechanisms of bursting in CA3 pyramidal neurons (Xu and Clancy 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We present a single-compartment model of a CA3 hippocampal pyramidal neuron based on recent experimental data. We then use the model to determine the roles of primary depolarizing currents in burst generation.\r\nThe single compartment\r\nmodel incorporates accurate representations of sodium (Na+) channels (NaV1.1) and T-type calcium (Ca2+) channel subtypes\r\n(CaV3.1, CaV3.2, and CaV3.3).\r\nOur simulations predict the importance of Na+ and T-type Ca2+ channels in hippocampal\r\npyramidal cell bursting and reveal the distinct contribution of each subtype to burst morphology.\r\nWe also performed fastslow\r\nanalysis in a reduced comparable model, which shows that our model burst is generated as a result of the interaction\r\nof two slow variables, the T-type Ca2+ channel activation gate and the Ca2+-dependent potassium (K+) channel activation\r\ngate.\r\nThe model reproduces a range of experimentally observed phenomena including afterdepolarizing potentials, spike widening at the end of the burst, and rebound.\r\nFinally, we use the model to simulate the effects of two epilepsy-linked\r\nmutations: R1648H in NaV1.1 and C456S in CaV3.2, both of which result in increased cellular excitability.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114337",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 65
+ },
+ "ver_date": "2009-07-13T11:31:33",
+ "ver_number": 4
+ },
+ "114342": {
+ "class_id": 19,
+ "created": "2008-07-09T16:35:18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 114342,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114341,
+ "object_name": "Crook SM, Dur-E-Ahmad M, Baer SM (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Activity dependent changes in dendritic spine density and spine structure (Crook et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In this work, we extend previous modeling studies [27] by combining a model for activity-dependent spine density with one for\r\ncalcium-mediated spine stem restructuring.\r\n... Additional equations characterize the change in spine density along\r\nthe dendrite, the current balance equation for an individual spine\r\nhead, the change in calcium concentration in the spine head, and the\r\ndynamics of spine stem resistance.\r\n\r\nWe use computational studies to investigate the changes in spine\r\ndensity and structure for differing synaptic inputs and demonstrate\r\nthe effects of these changes on the input-output properties of the\r\ndendritic branch.\r\n... \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114342",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 77
+ },
+ "ver_date": "2008-07-11T13:45:35",
+ "ver_number": 10
+ },
+ "114355": {
+ "class_id": 19,
+ "created": "2008-07-14T15:56:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 114355,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 84833,
+ "object_name": "Rabinowitch I, Segev I (2006)"
+ },
+ {
+ "object_id": 114356,
+ "object_name": "Rabinowitch I, Segev I (2006)"
+ },
+ {
+ "object_id": 114357,
+ "object_name": "Rabinowitch I, Segev I (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Homeostatic synaptic plasticity (Rabinowitch and Segev 2006a,b)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "(2006a): \"We investigated analytically and numerically the interplay between two opposing forms of synaptic plasticity: positive-feedback, long-term potentiation/depression (LTP/LTD), and negative-feedback, homeostatic synaptic plasticity (HSP). A detailed model of a CA1 pyramidal neuron, with numerous HSP-modifiable dendritic synapses, demonstrates that HSP may have an important role in selecting which spatial patterns of LTP/LTD are to last.\r\n...\r\nDespite the negative-feedback nature of HSP, under both local and global HSP, numerous synaptic \r\npotentiations/depressions can persist. These experimentally testable results imply that HSP could be significantly involved in shaping the spatial distribution of synaptic weights in the dendrites and not just normalizing it, as is currently believed.\"\r\n(2006b): \"Homeostatic synaptic plasticity (HSP) is an important mechanism attributed with the slow regulation of the neuron's activity. Whenever activity is chronically enhanced, HSP weakens the weights of the synapses in the dendrites and vice versa. Because dendritic morphology and its electrical properties partition the dendritic tree into functional compartments, we set out to explore the interplay between HSP and dendritic compartmentalization.\r\n...\r\nThe spatial distribution of synaptic weights throughout the dendrites will markedly differ under the local versus global HSP mechanisms. We suggest an experimental paradigm to unravel which type of HSP mechanism operates in the dendritic tree. The answer to this question will have important implications to our understanding of the functional organization of the neuron.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114355",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 85
+ },
+ "ver_date": "2013-12-10T15:24:50",
+ "ver_number": 17
+ },
+ "114359": {
+ "class_id": 19,
+ "created": "2008-07-16T05:20:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 114359,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97998,
+ "object_name": "van Elburg, Ronald A.J. [R.van.Elburg at ai.rug.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127095,
+ "object_name": "van Elburg RA, van Ooyen A (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Impact of dendritic size and topology on pyramidal cell burst firing (van Elburg and van Ooyen 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The code provided here was written to systematically investigate which of the\r\nphysical parameters controlled by dendritic morphology underlies the differences\r\nin spiking behaviour observed in different realizations of the\r\n'ping-pong'-model. Structurally varying dendritic topology and length in a\r\nsimplified model allows us to separate out the physical parameters derived from\r\nmorphology underlying burst firing.\r\nTo perform the parameter scans we created a new NEURON tool the\r\nMultipleRunControl which can be used to easily set up a parameter scan and write\r\nthe simulation results to file.\r\nUsing this code we found that not input conductance but the arrival time of the\r\nreturn current, as measured provisionally by the average electrotonic path\r\nlength, determines whether the pyramidal cell (with ping-pong model dynamics)\r\nwill burst or fire single spikes."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114359",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2016-05-26T17:06:15.137",
+ "ver_number": 29
+ },
+ "114365": {
+ "class_id": 19,
+ "created": "2008-07-23T15:07:20",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 114365,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114366,
+ "object_name": "Urakubo H, Honda M, Froemke RC, Kuroda S (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 18747,
+ "object_name": "GENESIS (web link to model)"
+ }
+ ]
+ },
+ "name": "An allosteric kinetics of NMDARs in STDP (Urakubo et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We developed a detailed biophysical model of STDP and found\r\nthat the model required spike timing-dependent distinct suppression of NMDARs by Ca2+-calmodulin.\r\n\r\nThis led us to predict an allosteric\r\nkinetics of NMDARs: a slow and rapid suppression of NMDARs by Ca2+-calmodulin with prespiking -> postspiking and postspiking -> prespiking, respectively.\r\n\r\nWe found that the allosteric kinetics, but not the conventional kinetics, is consistent with specific features of\r\namplitudes and peak time of NMDAR-mediated EPSPs in experiments.\r\n...\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114365",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T13:45:01.107",
+ "ver_number": 5
+ },
+ "114394": {
+ "class_id": 19,
+ "created": "2008-07-28T08:01:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 114394,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114397,
+ "object_name": "Kole, Maarten [m.kole at nin.knaw.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114396,
+ "object_name": "Kole MH, Ilschner SU, Kampa BM, Williams SR, Ruben PC, Stuart GJ (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "114394",
+ "name": "ModelView"
+ }
+ ],
+ "default": "114394"
+ },
+ "name": "Na+ channel dependence of AP initiation in cortical pyramidal neuron (Kole et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this simulation action potential initiation, action potential properties and the role of axon initial segment Na+ channels are investigated in a realistic model of a layer 5 pyramidal neuron axon initial segment. The main Na+ channel properties were constrained by experimental data and the axon initial segment was reconstructed. Model parameters were constrained by direct recordings at the axon initial segment."
+ },
+ "opensourcebrain": {
+ "value": "rothmanetalkoleetalpyrcell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114394",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kole, Maarten "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "maarten.kole@anu.edu.au"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 293
+ },
+ "ver_date": "2017-03-18T10:03:31.647",
+ "ver_number": 13
+ },
+ "114424": {
+ "biosimulations": {
+ "value": "modeldb-114424"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID 18080179"
+ },
+ "class_id": 19,
+ "created": "2008-07-31T00:05:57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 114424,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114386,
+ "object_name": "Huss M, Wang D, Tran\u00e9 C, Wikstr\u00f6m M, Hellgren Kotaleski J (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "A simplified model of NMDA oscillations in lamprey locomotor neurons (Huss et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ },
+ {
+ "object_id": 114428,
+ "object_name": "Spinal lamprey neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using experiments in conjunction with this simplified model, we sought to understand the basic mechanisms behind NMDA-induced oscillations in lamprey locomotor neurons, specifically (a) how the oscillation frequency depends on NMDA concentration and why, and (b) what the minimal number of components for generating NMDA oscillations is (in vitro and in the model)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114424",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Mikael Huss"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Spinal lamprey neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mikael.huss@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T13:46:05.03",
+ "ver_number": 9
+ },
+ "114450": {
+ "biosimulations": {
+ "value": "modeldb-114450"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Huang et al., The synergistic inhibitory actions of oxcarbazepine on voltage-gated sodium and potassium currents in differentiated NG108-15 neuronal cells and model neurons. Int J Neuropsychopharmacol 2008;11:597-610."
+ },
+ "class_id": 19,
+ "created": "2008-08-05T01:49:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 114450,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114454,
+ "object_name": "Huang CW, Huang CC, Lin MW, Tsai JJ, Wu SN (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Synergistic inhibitory action of oxcarbazepine on INa and IK (Huang et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114112,
+ "object_name": "NG108-15 neuronal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Oxcarbazepine (OXC), one of the newer anti-epileptic drugs, has been demonstrating its efficacy on wide-spectrum neuropsychiatric disorders. \r\n... With the aid of patch-clamp technology, we first investigated the effects of OXC on ion currents in NG108-15 neuronal cells differentiated with cyclic AMP. \r\n\r\nWe found OXC ... caused a reversible reduction in the amplitude of voltage-gated Na+ current (INa) ...\r\nand produce(d) a significant prolongation in the recovery of INa inactivation. \r\n\r\n...\r\nMoreover, OXC could suppress the amplitude of delayed rectifier K+ current (IK(DR)), with no effect on M-type K+ current (IK(M)). \r\n\r\n...\r\nFurthermore, the simulations, based on hippocampal pyramidal neurons (Pinsky-Rinzel model) and a network of the Hodgkin-Huxley model, were analysed to investigate the effect of OXC on action potentials. \r\n\r\nTaken together, our results suggest that the synergistic blocking effects on INa and IK(DR) may contribute to the underlying mechanisms through which OXC affects neuronal function in vivo.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114450",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2008-08-05T11:52:06",
+ "ver_number": 4
+ },
+ "114451": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Yen-Ching Liu et al., The mechanisms of propofol-induced block on ion currents in differentiated H9c2 cardiac cells. Eur. J. Pharmacol. 2008;590:93-98."
+ },
+ "class_id": 19,
+ "created": "2008-08-05T04:08:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 114451,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114456,
+ "object_name": "Liu YC, Wang YJ, Wu SN (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Efffect of propofol on potassium current in cardiac H9c2 cells (Liu et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nThe effects \r\nof propofol, an intravenous anesthetic agent with a distinct chemical structure, \r\non ion currents of differentiated clonal cardiac (H9c2) cells were investigated \r\nin this study. \r\n\r\nPropofol ... suppressed the amplitude of delayed \r\nrectifier K(+) current (I(K(DR))) in a concentration-dependent manner with \r\nan IC(50) value of 36 muM. \r\n...\r\nPropofol (30 muM) had no effect on erg-mediated K(+) \r\ncurrent in these cells; however, it suppressed L-type Ca(2+) current (I(Ca,L)) \r\nof cardiac and skeletal types to a similar extent. \r\n...\r\nNumerical \r\nsimulations of I(K(DR)) based on a Markovian model reproduce the \r\nexperimental results and show that propofol-induced blockade of I(K(DR)) \r\nis associated with an decrease in forward rate of the activation process and \r\nan increase in transitional rate into the inactivated state. \r\n\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114451",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yen-Ching Liu"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2015-07-26T13:47:25.767",
+ "ver_number": 5
+ },
+ "114452": {
+ "biosimulations": {
+ "value": "modeldb-114452"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "18052535"
+ },
+ "class_id": 19,
+ "created": "2008-08-05T08:48:12",
+ "gitrepo": false,
+ "id": 114452,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114553,
+ "object_name": "Graupner, Michael [michael.graupner at ens.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114458,
+ "object_name": "Graupner M, Brunel N (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "CaMKII system exhibiting bistability with respect to calcium (Graupner and Brunel 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We present a detailed biochemical model of the CaMKII autophosphorylation and the protein signaling cascade governing the CaMKII dephosphorylation.\r\n... it is shown that the CaMKII system can qualitatively reproduce results of plasticity outcomes in response to spike-timing dependent plasticity (STDP) and presynaptic stimulation protocols.\r\nThis shows that the CaMKII protein network can account for both induction, through LTP/LTD-like transitions, and storage, due to its bistability, of synaptic changes.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114452",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Graupner, Michael"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.graupner@ens.fr"
+ },
+ "ver_date": "2008-08-21T10:04:03",
+ "ver_number": 14
+ },
+ "114637": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 114652,
+ "object_name": "2nd attempt to make a backup"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-08-14T22:50:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 114637,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114634,
+ "object_name": "Banitt Y, Martin KA, Segev I (2007)"
+ },
+ {
+ "object_id": 114962,
+ "object_name": "Anderson JC, Douglas RJ, Martin KA, Nelson JC (1994)"
+ },
+ {
+ "object_id": 114963,
+ "object_name": "Anderson JC, Douglas RJ, Martin KA, Nelson JC (1994)"
+ },
+ {
+ "object_id": 121120,
+ "object_name": "Banitt Y, Martin KA, Segev I (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "114637",
+ "name": "ModelView"
+ }
+ ],
+ "default": "114637"
+ },
+ "name": "Contrast invariance by LGN synaptic depression (Banitt et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Simple cells in layer 4 of the primary visual cortex of the cat show contrast-invariant orientation tuning, in which the amplitude of the\r\npeak response is proportional to the stimulus contrast but the width of the tuning curve hardly changes with contrast. \r\n\r\nThis study uses a\r\ndetailed model of spiny stellate cells (SSCs) from cat area 17 to explain this property. \r\n\r\nThe model integrates our experimental data,\r\nincluding morphological and intrinsic membrane properties and the number and spatial distribution of four major synaptic input\r\nsources of the SSC: the dorsal lateral geniculate nucleus (dLGN) and three cortical sources. \r\n\r\n...\r\n\r\nThe model response is in close\r\nagreement with experimental results, in terms of both output spikes and membrane voltage (amplitude and fluctuations), with reasonable\r\nexceptions given that recurrent connections were not incorporated.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114637",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181867,
+ "object_name": "114637"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:49:42.677",
+ "ver_number": 15
+ },
+ "114639": {
+ "citation": {
+ "attr_id": 391,
+ "value": "18650326"
+ },
+ "class_id": 19,
+ "created": "2008-08-15T13:34:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 88212,
+ "object_name": "KCNQ1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 114639,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114640,
+ "object_name": "Gunay, Cengiz [cgunay at emory.edu]"
+ },
+ {
+ "object_id": 114641,
+ "object_name": "Edgerton, Jeremy R. [jedgert at emory.edu]"
+ },
+ {
+ "object_id": 114642,
+ "object_name": "Hanson, Jesse E."
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114633,
+ "object_name": "G\u00fcnay C, Edgerton JR, Jaeger D (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Globus pallidus multi-compartmental model neuron with realistic morphology (Gunay et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Globus pallidus (GP) neurons recorded in brain slices show significant variability in intrinsic electrophysiological properties. \r\n\r\nTo investigate how this variability arises, we manipulated the biophysical properties of GP neurons using computer simulations. \r\n\r\n\r\n...\r\nOur results indicated that most of the experimental variability could be matched by varying conductance densities, which we confirmed with additional partial block experiments. \r\n\r\nFurther analysis resulted in two key observations: (1) each voltage-gated conductance had effects on multiple measures such as action potential waveform and spontaneous or stimulated spike rates; and (2) the effect of each conductance was highly dependent on the background context of other conductances present. \r\n\r\nIn some cases, such interactions could reverse the effect of the density of one conductance on important excitability measures. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114639",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Kv2, Kv3"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gunay, Cengiz \r\nEdgerton, Jeremy R. \r\nHanson, Jesse E."
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cgunay@emory.edu"
+ },
+ "ver_date": "2008-08-16T06:55:20",
+ "ver_number": 6
+ },
+ "114643": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 114653,
+ "object_name": "local backup copy"
+ }
+ ]
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "18701064"
+ },
+ "class_id": 19,
+ "created": "2008-08-17T08:38:56",
+ "gitrepo": false,
+ "id": 114643,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114645,
+ "object_name": "Brette R, Piwkowska Z, Monier C, Rudolph-Lilith M, Fournier J, Levy M, Fr\u00e9gnac Y, Bal T, Destexhe A (2008)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 114648,
+ "object_name": "Scilab (web link to model)"
+ }
+ ]
+ },
+ "name": "High-Res. Recordings Using a Real-Time Computational Model of the Electrode (Brette et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Intracellular recordings of neuronal membrane potential are a central tool in neurophysiology.\r\n...\r\nWe introduce a computer-aided technique, Active Electrode Compensation (AEC), based on a digital model of the electrode interfaced in real time with the electrophysiological setup. \r\n...\r\nAEC should be particularly useful to characterize fast neuronal phenomena intracellularly in vivo.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114643",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2019-02-15T15:46:55.747",
+ "ver_number": 10
+ },
+ "114654": {
+ "citation": {
+ "attr_id": 391,
+ "value": "R.D. Traub, S.J. Middleton, T. Knopfel, M.A. Whittington. Model of very fast (>75 Hz) network oscillations generated by electrical coupling between the proximal axons of cerebellar Purkinje cells, under review."
+ },
+ "class_id": 19,
+ "created": "2008-08-22T14:23:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 114654,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ },
+ {
+ "object_id": 114662,
+ "object_name": "Middleton, S. J. "
+ },
+ {
+ "object_id": 114663,
+ "object_name": "Knopfel, T."
+ },
+ {
+ "object_id": 114664,
+ "object_name": "Whittington, M. A. "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126953,
+ "object_name": "Traub RD, Middleton SJ, Knopfel T, Whittington MA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Axonal gap junctions produce fast oscillations in cerebellar Purkinje cells (Traub et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Examines how electrical coupling between proximal axons produces fast oscillations in cerebellar Purkinje cells.\r\nTraub RD, Middleton SJ, Knopfel T, Whittington MA (2008) Model of very fast (>75 Hz) network oscillations generated by electrical coupling between the proximal axons of cerebellar Purkinje cells. European Journal of Neuroscience."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114654",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Middleton, S.J.\r\nKnopfel, T.\r\nWhittington, M.A."
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "ver_date": "2015-01-26T17:55:40",
+ "ver_number": 9
+ },
+ "114655": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Weiler N, Wood L, Yu J, Solla SA, Shepherd GMG (2008) Top-down laminar organization of the excitatory network in motor cortex. Nat Neurosci 11:360-366"
+ },
+ "class_id": 19,
+ "created": "2008-08-23T10:19:23",
+ "gitrepo": false,
+ "id": 114655,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114659,
+ "object_name": "Shepherd, Gordon MG [g-shepherd at northwestern.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114658,
+ "object_name": "Weiler N, Wood L, Yu J, Solla SA, Shepherd GM (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Laminar connectivity matrix simulation (Weiler et al 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A routine that simulates the flow of activity within and across laminar levels in the local pyramidal neuron network, based on a connectivity matrix (W) measured by laser scanning photostimulation in mouse somatic motor cortex, and a very simple neural network simulation."
+ },
+ "opensourcebrain": {
+ "value": "weileretal08-laminarcortex"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114655",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Connectivity matrix"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Shepherd, Gordon MG"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortical pyramidal neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "g-shepherd@northwestern.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 117
+ },
+ "ver_date": "2011-03-07T15:41:11",
+ "ver_number": 6
+ },
+ "114665": {
+ "class_id": 19,
+ "created": "2008-08-26T04:44:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 114665,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116150,
+ "object_name": "Migliore M, Inzirillo C, Shepherd GM (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Olfactory bulb mitral and granule cell column formation (Migliore et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In the olfactory bulb, the processing units for odor discrimination are believed \r\nto involve dendrodendritic synaptic interactions between mitral and granule cells. \r\nThere is increasing anatomical evidence that these cells are organized in columns, \r\nand that the columns processing a given odor are arranged in widely distributed arrays. \r\nExperimental evidence is lacking on the underlying learning mechanisms for how these \r\ncolumns and arrays are formed. \r\nWe have used a simplified realistic circuit model to test the hypothesis that \r\ndistributed connectivity can self-organize through an activity-dependent dendrodendritic \r\nsynaptic mechanism. \r\nThe results point to action potentials propagating in the mitral cell lateral dendrites \r\nas playing a critical role in this mechanism, and suggest a novel and robust learning \r\nmechanism for the development of distributed processing units in a cortical structure.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114665",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 311
+ },
+ "ver_date": "2018-10-17T16:05:38.683",
+ "ver_number": 15
+ },
+ "114685": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 115435,
+ "object_name": "dev"
+ }
+ ]
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Johnson MD and McIntyre CC. (2008) \"Quantifying the neural elements activated and inhibited by globus pallidus deep brain stimulation.\" J. Neurophys."
+ },
+ "class_id": 19,
+ "created": "2008-09-08T15:47:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 114685,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114686,
+ "object_name": "Johnson, Matthew D [johnsom11 at ccf.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114671,
+ "object_name": "Johnson MD, McIntyre CC (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "114685_1",
+ "name": "Short test run of the GPi neuron similar to Fig 1A"
+ },
+ {
+ "id": "114685_2",
+ "name": "Sample run for the current injections that created Fig 2C"
+ }
+ ],
+ "default": "114685_1"
+ },
+ "name": "GPi/GPe neuron models (Johnson and McIntyre 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model files for two types of non-human primate neurons used in the paper: simplified versions of 1) a GPi neuron and 2) a GPe axon collateralizing in GPi en route to STN."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114685",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Johnson, Matthew D "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "johnsom11@ccf.org"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181697,
+ "object_name": "114685_1"
+ },
+ {
+ "object_id": 181698,
+ "object_name": "114685_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 252
+ },
+ "ver_date": "2015-01-02T22:01:59",
+ "ver_number": 16
+ },
+ "114735": {
+ "citation": {
+ "attr_id": 391,
+ "value": "18614686"
+ },
+ "class_id": 19,
+ "created": "2008-09-16T02:46:18",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 114735,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114736,
+ "object_name": "Tseng, Shin-Hua "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114731,
+ "object_name": "Tseng SH, Tsai LY, Yeh SR (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "114735",
+ "name": "ModelView"
+ }
+ ],
+ "default": "114735"
+ },
+ "name": "High frequency oscillations induced in three gap-junction coupled neurons (Tseng et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we showed experimentally that high frequency oscillations (up to 600 Hz) were easily induced in a purely gap-junction coupled network by simple two stimuli with very short interval. The root cause is that the second elicited spike suffered from slow propagation speed and failure to transmit through a low-conductance junction. Similiar results were also obtained in these simulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/114735",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tseng, Shin-Hua"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neurons with Hodgkin-Huxley model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "g884275@yahoo.com.tw"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181865,
+ "object_name": "114735"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 258
+ },
+ "ver_date": "2014-02-14T17:05:54",
+ "ver_number": 13
+ },
+ "115356": {
+ "class_id": 19,
+ "created": "2008-09-19T09:21:36",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 112844,
+ "object_name": "I Q"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 115356,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125153,
+ "object_name": "Horstmann, Marie-Therese [mhorstma at uni-bonn.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114720,
+ "object_name": "Royeck M, Horstmann MT, Remy S, Reitze M, Yaari Y, Beck H (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Axonal NaV1.6 Sodium Channels in AP Initiation of CA1 Pyramidal Neurons (Royeck et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\n\r\nWe show that the Na+ channel NaV1.6 displays a striking aggregation at the AIS\r\nof cortical neurons.\r\n\r\n\r\n...\r\nIn combination with simulations using a realistic\r\ncomputer model of a CA1 pyramidal cell, our results imply that a hyperpolarized\r\nvoltage-dependence of activation of AIS NaV1.6 channels is important both in\r\ndetermining spike threshold and localizing spike initiation to the AIS. \r\n\r\n...\r\nThese results suggest that NaV1.6 subunits at the AIS contribute significantly to\r\nits role as spike trigger zone and shape repetitive discharge properties of CA1 neurons.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/115356",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181191,
+ "object_name": "115356"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 157
+ },
+ "ver_date": "2014-01-20T15:55:02",
+ "ver_number": 12
+ },
+ "115357": {
+ "class_id": 19,
+ "created": "2008-09-19T14:26:08",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 115357,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97998,
+ "object_name": "van Elburg, Ronald A.J. [R.van.Elburg at ai.rug.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 121112,
+ "object_name": "van Elburg RA, van Ooyen A (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "115357_1",
+ "name": "++"
+ },
+ {
+ "id": "115357_2",
+ "name": "+-"
+ },
+ {
+ "id": "115357_3",
+ "name": "-+"
+ },
+ {
+ "id": "115357_4",
+ "name": "--"
+ }
+ ],
+ "default": "115357_1"
+ },
+ "name": "Generalized Carnevale-Hines algorithm (van Elburg and van Ooyen 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Demo illustrating the behaviour of the integrate-and-fire model in the parameter regime relevant for the generalized event-based Carnevale-Hines integration scheme. The demo includes the improved implementation of the IntFire4 mechanism.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/115357",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Integrate-and-fire"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 255
+ },
+ "ver_date": "2016-09-16T16:19:24.193",
+ "ver_number": 11
+ },
+ "115813": {
+ "class_id": 19,
+ "created": "2008-10-03T14:27:01",
+ "gitrepo": false,
+ "id": 115813,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112304,
+ "object_name": "Wang H, Fan J (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53430,
+ "object_name": "Emergent/PDP++"
+ }
+ ]
+ },
+ "name": "Human Attentional Networks: A Connectionist Model (Wang and Fan 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We describe a connectionist model of human attentional networks to explore the\r\npossible interplays among the networks from a computational\r\nperspective. This model is developed in the framework of\r\nleabra (local, error-driven, and associative, biologically realistic\r\nalgorithm) and simultaneously involves these attentional networks\r\nconnected in a biologically inspired way. ...\r\n\r\n\r\nWe evaluate the model by simulating the empirical data collected on normal human\r\nsubjects using the Attentional Network Test (ANT).\r\n\r\nThe simulation results fit the experimental data well.\r\n\r\nIn addition, we show that the same model, with a single parameter change that\r\naffects executive control, is able to simulate the empirical data collected\r\nfrom patients with schizophrenia.\r\n\r\nThis model represents a plausible connectionist explanation for the functional structure\r\nand interaction of human attentional networks.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/115813",
+ "ver_date": "2017-06-15T11:27:32.99",
+ "ver_number": 8
+ },
+ "115966": {
+ "class_id": 19,
+ "created": "2008-10-07T16:58:42",
+ "gitrepo": false,
+ "id": 115966,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 76195,
+ "object_name": "Yamazaki T, Tanaka S (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Neural modeling of an internal clock (Yamazaki and Tanaka 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We studied a simple random recurrent inhibitory network. Despite its simplicity, the dynamics was so rich that activity patterns of neurons\r\nevolved with time without recurrence due to random recurrent connections\r\namong neurons. The sequence of activity patterns was generated\r\nby the trigger of an external signal, and the generation was stable against\r\nnoise.... Therefore, a\r\ntime passage from the trigger of an external signal could be represented by\r\nthe sequence of activity patterns, suggesting that this model could work\r\nas an internal clock. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/115966",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2011-05-24T11:48:37",
+ "ver_number": 9
+ },
+ "115968": {
+ "class_id": 19,
+ "created": "2008-10-09T14:38:50",
+ "gitrepo": false,
+ "id": 115968,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 84168,
+ "object_name": "Izhikevich, Eugene [Eugene.Izhikevich at braincorporation.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 70550,
+ "object_name": "Izhikevich EM (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Polychronization: Computation With Spikes (Izhikevich 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We present a minimal spiking network that can polychronize, that is,\r\nexhibit reproducible time-locked but not synchronous firing patterns\r\nwith millisecond precision, as in synfire braids. \r\n\r\nThe network consists\r\nof cortical spiking neurons with axonal conduction delays and spiketiming-\r\ndependent plasticity (STDP); a ready-to-use MATLAB code is\r\nincluded. \r\n\r\nIt exhibits sleeplike oscillations, gamma (40 Hz) rhythms,\r\nconversion of firing rates to spike timings, and other interesting regimes.\r\n\r\n...\r\nTo our surprise, the number of\r\ncoexisting polychronous groups far exceeds the number of neurons in\r\nthe network, resulting in an unprecedented memory capacity of the\r\nsystem. \r\n\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/115968",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2014-08-29T08:48:53",
+ "ver_number": 9
+ },
+ "116053": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 116079,
+ "object_name": "smaller morphology file"
+ },
+ {
+ "object_id": 116082,
+ "object_name": "simulation"
+ },
+ {
+ "object_id": 116083,
+ "object_name": "pyramidal morphologies file"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-10-17T18:49:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 116053,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116012,
+ "object_name": "Helmstaedter M, Sakmann B, Feldmeyer D (2009)"
+ },
+ {
+ "object_id": 116044,
+ "object_name": "Helmstaedter M, Sakmann B, Feldmeyer D (2009)"
+ },
+ {
+ "object_id": 116045,
+ "object_name": "Helmstaedter M, Sakmann B, Feldmeyer D (2009)"
+ },
+ {
+ "object_id": 116056,
+ "object_name": "Helmstaedter M, Staiger JF, Sakmann B, Feldmeyer D (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Axonal Projection and Interneuron Types (Helmstaedter et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Interneurons in layer 2/3 (L2/3) of the somatosensory cortex show\r\n4 types of axonal projection patterns with reference to the laminae\r\nand borders of columns in rat barrel cortex (Helmstaedter et al.\r\n2008a). \r\n\r\nHere, we analyzed the dendritic geometry and electrical\r\nexcitability of these interneurons. \r\n\r\n...\r\nWe conclude that\r\n1) dendritic polarity is correlated to intrinsic electrical excitability,\r\nand 2) the axonal projection pattern represents an independent\r\nclassifier of interneurons.\r\n\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116053",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2008-10-17T19:32:44",
+ "ver_number": 7
+ },
+ "116084": {
+ "class_id": 19,
+ "created": "2008-10-24T19:36:49",
+ "gitrepo": false,
+ "id": 116084,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 80601,
+ "object_name": "Jarsky T, Roxin A, Kath WL, Spruston N (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron synaptic integration (Jarsky et al. 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The perforant-path projection to the hippocampus forms synapses in the apical tuft of CA1 pyramidal neurons. \r\n\r\nWe used computer modeling to examine the function of these distal synaptic inputs, which led to three predictions that we confirmed in experiments using rat hippocampal slices. \r\n\r\n...\r\n\r\nThis 'gating' of dendritic spike propagation may be an important activation mode of CA1 pyramidal neurons, and its modulation by neurotransmitters or long-term, activity-dependent plasticity may be an important feature of dendritic integration during mnemonic processing in the hippocampus.\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116084",
+ "ver_date": "2019-02-04T16:44:43.723",
+ "ver_number": 11
+ },
+ "116086": {
+ "class_id": 19,
+ "created": "2008-10-26T14:09:55",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116086,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 116941,
+ "object_name": "Pospischil, Martin "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97665,
+ "object_name": "Pospischil M, Piwkowska Z, Rudolph M, Bal T, Destexhe A (2007)"
+ },
+ {
+ "object_id": 114011,
+ "object_name": "Rudolph M, Pospischil M, Timofeev I, Destexhe A (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Code to calc. spike-trig. ave (STA) conduct. from Vm (Pospischil et al. 2007, Rudolph et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "PYTHON code to calculate spike-triggered average (STA) conductances from intracellular recordings, according to the method published by Pospischil et al., J Neurophysiol, 2007. The method consists of a maximum likelihood estimate of the conductance STA, from the voltage STA (which is calculated from the data). The method was tested using models and dynamic-clamp experiments; for details, see the original publication (Pospischil et al., 2007). The first application of this method to experimental data was from intracellular recordings in awake cat cerebral cortex (Rudolph et al., 2007)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116086",
+ "ver_date": "2016-09-16T16:24:09.297",
+ "ver_number": 11
+ },
+ "116094": {
+ "class_id": 19,
+ "created": "2008-10-28T17:23:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116094,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 105523,
+ "object_name": "David F, Linster C, Cleland TA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "116094_1",
+ "name": "Long Dendrite - Fig1bde"
+ },
+ {
+ "id": "116094_2",
+ "name": "Long Dendrite - Fig1fg"
+ },
+ {
+ "id": "116094_3",
+ "name": "Long Dendrite - Fig2ace"
+ },
+ {
+ "id": "116094_4",
+ "name": "Short Dendrite - Fig1cde"
+ },
+ {
+ "id": "116094_5",
+ "name": "Short Dendrite - Fig1fg"
+ },
+ {
+ "id": "116094_6",
+ "name": "Short Dendrite - Fig2bf"
+ },
+ {
+ "id": "116094_7",
+ "name": "Short Dendrite - Fig3"
+ },
+ {
+ "id": "116094_8",
+ "name": "Short Dendrite - Fig4abcd"
+ },
+ {
+ "id": "116094_9",
+ "name": "Short Dendrite - Fig4ef"
+ },
+ {
+ "id": "116094_10",
+ "name": "Short Dendrite - Fig5"
+ },
+ {
+ "id": "116094_11",
+ "name": "Short Dendrite - Fig6"
+ }
+ ],
+ "default": "116094_1"
+ },
+ "name": "Lateral dendrodenditic inhibition in the Olfactory Bulb (David et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Mitral cells, the principal output neurons of the olfactory bulb, receive direct synaptic activation from primary sensory neurons. Shunting inhibitory inputs delivered by granule cell interneurons onto mitral cell lateral dendrites are believed to influence spike timing and underlie coordinated field potential oscillations. Lateral dendritic shunt conductances delayed spiking to a degree dependent on both their electrotonic distance and phase of onset. Recurrent inhibition significantly narrowed the distribution of mitral cell spike times, illustrating a tendency towards coordinated synchronous activity. This result suggests an essential role for early mechanisms of temporal coordination in olfaction. The model was adapted from Davison et al, 2003, but include additional noise mechanisms, long lateral dendrite, and specific synaptic point processes."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116094",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181168,
+ "object_name": "116094_10"
+ },
+ {
+ "object_id": 181169,
+ "object_name": "116094_11"
+ },
+ {
+ "object_id": 181250,
+ "object_name": "116094_9"
+ },
+ {
+ "object_id": 181252,
+ "object_name": "116094_7"
+ },
+ {
+ "object_id": 181262,
+ "object_name": "116094_3"
+ },
+ {
+ "object_id": 181560,
+ "object_name": "116094_6"
+ },
+ {
+ "object_id": 181562,
+ "object_name": "116094_4"
+ },
+ {
+ "object_id": 181563,
+ "object_name": "116094_5"
+ },
+ {
+ "object_id": 181564,
+ "object_name": "116094_2"
+ },
+ {
+ "object_id": 181567,
+ "object_name": "116094_1"
+ },
+ {
+ "object_id": 181895,
+ "object_name": "116094_8"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 118
+ },
+ "ver_date": "2022-05-27T18:25:47.843",
+ "ver_number": 17
+ },
+ "116096": {
+ "class_id": 19,
+ "created": "2008-10-29T11:49:28",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116096,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 72076,
+ "object_name": "Badoual M, Zou Q, Davison AP, Rudolph M, Bal T, Fr\u00e9gnac Y, Destexhe A (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Biophysical and phenomenological models of spike-timing dependent plasticity (Badoual et al. 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Spike-timing dependent plasticity (STDP) is a form of associative synaptic modification which depends\r\non the respective timing of pre- and post-synaptic spikes. \r\n\r\nThe biophysical mechanisms underlying this\r\nform of plasticity are currently not known. \r\n\r\nWe present here a biophysical model which captures the\r\ncharacteristics of STDP, such as its frequency dependency, and the effects of spike pair or spike triplet\r\ninteractions. \r\n...\r\nA simplified phenomenological\r\nmodel is also derived...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116096",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181204,
+ "object_name": "116096_1"
+ },
+ {
+ "object_id": 181543,
+ "object_name": "116096_2"
+ },
+ {
+ "object_id": 181544,
+ "object_name": "116096_3"
+ },
+ {
+ "object_id": 181545,
+ "object_name": "116096_4"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 159
+ },
+ "ver_date": "2015-01-02T21:48:02",
+ "ver_number": 11
+ },
+ "116123": {
+ "biosimulations": {
+ "value": "modeldb-116123"
+ },
+ "class_id": 19,
+ "created": "2008-11-03T15:37:12",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 116123,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53570,
+ "object_name": "Prescott, Steven [steve.prescott at sickkids.ca]]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116122,
+ "object_name": "Prescott SA, De Koninck Y, Sejnowski TJ (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Dynamics of Spike Initiation (Prescott et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Transduction of graded synaptic input into trains of all-or-none action potentials (spikes) is a crucial step in neural coding.\r\n\r\nHodgkin identified three classes of neurons with qualitatively different analog-to-digital transduction properties. \r\n\r\nDespite widespread use of this classification scheme, a generalizable explanation of its biophysical basis has not been described. \r\n\r\nWe recorded from spinal sensory neurons representing each class and reproduced their transduction properties in a minimal\r\nmodel. With phase plane and bifurcation analysis, each class of excitability was shown to derive from distinct spike initiating dynamics. \r\n\r\nExcitability could be converted between all three classes by varying single parameters; moreover, several\r\nparameters, when varied one at a time, had functionally equivalent effects on excitability. From this, we conclude that the\r\nspike-initiating dynamics associated with each of Hodgkin\u2019s classes represent different outcomes in a nonlinear competition\r\nbetween oppositely directed, kinetically mismatched currents. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116123",
+ "ver_date": "2015-05-11T10:54:34.893",
+ "ver_number": 11
+ },
+ "116312": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 116832,
+ "object_name": "local backup of web linked model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-11-13T10:57:44",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116312,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116244,
+ "object_name": "Balkenius A, Kelber A, Balkenius C (2008)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Multimodal stimuli learning in hawkmoths (Balkenius et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The moth Macroglossum stellatarum can learn the color and sometimes the odor of a rewarding food\r\nsource.\r\n\r\nWe present data from 20 different experiments with different combinations of blue and yellow\r\nartificial flowers and the two odors, honeysuckle and lavender. \r\n\r\n... \r\nThree computational models were tested in the same experimental situations as the real\r\nmoths and their predictions were compared with the experimental data. \r\n\r\n...\r\nNeither the\r\nRescorla\u2013Wagner model nor a learning model with independent learning for each stimulus component\r\nwere able to explain the experimental data. \r\n\r\nWe present the new hawkmoth learning model, which\r\nassumes that the moth learns a template for the sensory attributes of the rewarding stimulus. \r\n\r\nThis\r\nmodel produces behavior that closely matches that of the real moth in all 20 experiments."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116312",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 116370,
+ "object_name": "Hawkmoth Deilephila elpenor"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249923,
+ "object_name": "Hawkmoth Deilephila elpenor"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:18:05.67",
+ "ver_number": 6
+ },
+ "116313": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 116368,
+ "object_name": "backup of web link"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2008-11-13T11:06:21",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116313,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116262,
+ "object_name": "Balkenius A, Kelber A, Balkenius C (2004)"
+ },
+ {
+ "object_id": 116369,
+ "object_name": "Balkenius A, Kelber A, Balkenius C (2002)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "A Model of Selection between Stimulus and Place Strategy in a Hawkmoth (Balkenius et al. 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In behavioral experiments, the hawkmoth Deilephila elpenor can learn both the \r\ncolor and the position of artificial flowers.\r\n\r\n...\r\n\r\nWe show how a computational model can reproduce the behavior in the experimental situation.\r\n\r\nThe aim of the model is to investigate which learning and behavior selection strategies are \r\nnecessary to reproduce the behavior observed in the experiment.\r\n\r\nThe model is based on behavioral data and the sensitivities of the moth photoreceptors. \r\n\r\nThe model consists of a number of interacting behavior systems that are triggered by \r\nspecific stimuli and control specific behaviors. \r\n\r\nThe ability of the moth to learn the colors of different flowers and the adaptive processes involved \r\nin the choice between stimulus-approach and place-approach strategies are reproduced very accurately by the model. \r\nThe model has implications both for further studies of the ecology of the animal and for robotic systems.\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116313",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 116370,
+ "object_name": "Hawkmoth Deilephila elpenor"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 72
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249923,
+ "object_name": "Hawkmoth Deilephila elpenor"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:18:23.933",
+ "ver_number": 11
+ },
+ "116386": {
+ "biosimulations": {
+ "value": "modeldb-116386"
+ },
+ "class_id": 19,
+ "created": "2008-11-14T12:24:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 116386,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53570,
+ "object_name": "Prescott, Steven [steve.prescott at sickkids.ca]]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 115982,
+ "object_name": "Prescott SA, Ratt\u00e9 S, De Koninck Y, Sejnowski TJ (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Pyramidal neurons switch from integrators to resonators (Prescott et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "During wakefulness, pyramidal neurons in the intact brain are bombarded by synaptic\r\ninput that causes tonic depolarization, increased membrane conductance (i.e. shunting), and\r\nnoisy fluctuations in membrane potential; by comparison, pyramidal neurons in acute slices\r\ntypically experience little background input.\r\n\r\nSuch differences in operating conditions can compromise extrapolation of in vitro data to explain \r\nneuronal operation in vivo.\r\n\r\n...\r\n\r\n in slice experiments, we show that\r\nCA1 hippocampal pyramidal cells switch from integrators to resonators, i.e. from class 1 to class\r\n2 excitability.\r\n\r\nThe switch is explained by increased outward current contributed by the M-type\r\npotassium current IM\r\n...\r\nThus, even so-called \u201cintrinsic\u201d properties may differ qualitatively between in vitro and in vivo conditions."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116386",
+ "ver_date": "2013-06-05T11:40:24",
+ "ver_number": 10
+ },
+ "116491": {
+ "class_id": 19,
+ "created": "2008-11-26T13:03:16",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116491,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 33739,
+ "object_name": "Davison, Andrew [Andrew.Davison at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116492,
+ "object_name": "Hines ML, Davison AP, Muller E (2009)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 154351,
+ "object_name": "NeuroML"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "NEURON + Python (Hines et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The NEURON simulation program now allows Python to be used alone or in\r\ncombination with NEURON's traditional Hoc interpreter. Adding Python to\r\nNEURON has the immediate benefit of making available a very extensive\r\nsuite of analysis tools written for engineering and science. It also\r\ncatalyzes NEURON software development by offering users a modern programming\r\ntool that is recognized for its flexibility and power to create and \r\nmaintain complex programs. At the same time, nothing is lost because\r\nall existing models written in Hoc, including GUI tools, continue to\r\nwork without change and are also available within the Python context.\r\nAn example of the benefits of Python availability is the use of the xml\r\nmodule in implementing NEURON's Import3D and CellBuild tools to read MorphML and\r\nNeuroML model specifications."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116491",
+ "ver_date": "2016-09-16T16:28:05.023",
+ "ver_number": 10
+ },
+ "116567": {
+ "class_id": 19,
+ "created": "2008-12-01T17:52:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116567,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116495,
+ "object_name": "Haj\u00f3s M, Hoffmann WE, Orb\u00e1n G, Kiss T, Erdi P (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Modulation of septo-hippocampal theta activity by GABAA receptors (Hajos et al. 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Theta frequency oscillation of the septo-hippocampal system has been considered as a prominent activity associated with cognitive function and affective processes.\r\n\r\n...\r\n\r\nIn the present experiments we applied a combination of computational and physiological techniques to explore the functional role of GABAA receptors in theta oscillation.\r\n\r\n...\r\n\r\nIn parallel to these experimental observations, a computational model has been constructed by implementing a septal GABA neuron model with a CA1 hippocampal model containing three types of neurons (including oriens and basket interneurons and pyramidal cells; latter modeled by multicompartmental techniques; for detailed model description with network parameters see online addendum: http://geza.kzoo.edu/theta).\r\n\r\nThis connectivity made the network capable of simulating the responses of the septo-hippocampal circuitry to the modulation of GABAA transmission, and the presently described computational model proved suitable to reveal several aspects of pharmacological modulation of GABAA receptors.\r\n\r\n In addition, computational findings indicated different roles of distinctively located GABAA receptors in theta generation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116567",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-06-29T14:38:35.78",
+ "ver_number": 11
+ },
+ "116575": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Crisp KM (2009) Multiple spike initiation zones in a neuron implicated in learning in the leech: a computational model. Invert Neurosci, in press"
+ },
+ "class_id": 19,
+ "created": "2008-12-04T17:08:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 116575,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 102284,
+ "object_name": "Crisp, Kevin [crisp at stolaf.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116578,
+ "object_name": "Crisp KM (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "A Model of Multiple Spike Initiation Zones in the Leech C-interneuron (Crisp 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116579,
+ "object_name": "Leech C interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The leech C-interneuron and its electrical synapse with the S-interneuron exhibit unusual properties: an asymmetric delay when impulses travel from one soma to the other, and graded C-interneuron impulse amplitudes under elevated divalent cation concentrations. These properties have been simulated using a SNNAP model in which the C-interneuron has multiple, independent spike initiation zones associated with individual electrical junctions with the C-interneuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116575",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Electrical Synapse"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Leech C-interneuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "crisp@stolaf.edu"
+ },
+ "ver_date": "2008-12-08T11:29:47",
+ "ver_number": 9
+ },
+ "116606": {
+ "citation": {
+ "attr_id": 391,
+ "value": "J Neurophysiol 99:814-30"
+ },
+ "class_id": 19,
+ "created": "2008-12-07T22:23:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116606,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116583,
+ "object_name": "Hurwitz I, Ophir A, Korngreen A, Koester J, Susswein AJ (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Currents contributing to decision making in neurons B31-B32 of Aplysia (Hurwitz et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116700,
+ "object_name": "Aplysia B31/B32 neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Biophysical properties of neurons contributing to the ability of an animal to decide whether or not to respond were examined. \r\n\r\nB31/B32, two pairs of bilaterally symmetrical Aplysia neurons, are major participants in deciding to initiate a buccal motor program, the neural correlate of a consummatory feeding response. \r\n\r\nB31/B32 respond to an adequate stimulus after a delay, during which time additional stimuli influence the decision to respond. \r\n\r\nB31/B32 then respond with a ramp depolarization followed by a sustained soma depolarization and axon spiking that is the expression of a commitment to respond to food. \r\n\r\nFour currents contributing to decision making in B31/B32 were characterized, and their functional effects were determined, in current- and voltage-clamp experiments and with simulations. ...\r\n\r\nHodgkin-Huxley kinetic analyses were performed on the outward currents. \r\n\r\nSimulations using equations from these analyses showed that IK-V and IK-A slow the ramp depolarization preceding the sustained depolarization. \r\n\r\nThe three outward currents contribute to braking the B31/B32 depolarization and keeping the sustained depolarization at a constant voltage. \r\n\r\nThe currents identified are sufficient to explain the properties of B31/B32 that play a role in generating the decision to feed.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116606",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249921,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:08:25.35",
+ "ver_number": 11
+ },
+ "116740": {
+ "class_id": 19,
+ "created": "2008-12-10T18:05:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116740,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116741,
+ "object_name": "Nakhoul, Hani [hnakho at lsuhsc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 8231,
+ "object_name": "Aradi I, Holmes WR (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dentate gyrus granule cell: calcium and calcium-dependent conductances (Aradi and Holmes 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We have constructed a detailed model of a hippocampal dentate granule (DG) cell that includes nine different channel types. \r\nChannel densities and distributions were chosen to reproduce reported physiological responses observed in normal solution and when blockers were applied. \r\n\r\nThe model was used to explore the contribution of each channel type to spiking behavior with particular emphasis on the mechanisms underlying postspike events. \r\n\r\n...\r\nThe model was used to predict changes in channel densities that could lead to epileptogenic burst discharges and to predict the effect of altered buffering capacity on firing behavior. \r\n\r\nWe conclude that the clustered spatial distributions of calcium related channels, the presence of slow delayed rectifier potassium currents in dendrites, and calcium buffering properties, together, might explain the resistance of DG cells to the development of epileptogenic burst discharges."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116740",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Nakhoul, Hani"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181479,
+ "object_name": "116740_1"
+ },
+ {
+ "object_id": 181711,
+ "object_name": "116740_2"
+ },
+ {
+ "object_id": 181712,
+ "object_name": "116740_3"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 221
+ },
+ "ver_date": "2015-01-02T22:40:25",
+ "ver_number": 10
+ },
+ "116769": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Calcium transients in a dendritic spine of a CA1 pyramidal cell"
+ },
+ "class_id": 19,
+ "created": "2008-12-16T10:00:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 116769,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116805,
+ "object_name": "Mueller, Asa [asa.mueller at fmi.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116770,
+ "object_name": "Grunditz A, Holbro N, Tian L, Zuo Y, Oertner TG (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "116769",
+ "name": "ModelView"
+ }
+ ],
+ "default": "116769"
+ },
+ "name": "Spine neck plasticity controls postsynaptic calcium signals (Grunditz et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was set up to dissect the relative contribution of different channels to \r\nthe spine calcium transients measured at single spines.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116769",
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "R-type VGCC"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "asa.mueller@fmi.ch"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181300,
+ "object_name": "116769"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 494
+ },
+ "ver_date": "2017-06-21T14:35:29.77",
+ "ver_number": 13
+ },
+ "116806": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Tadashi Yamazaki and Shigeru Tanaka, Robust Reservoir Generation by Correlation-Based Learning, Advances in Artificial Neural Systems, vol. 2009, Article ID 467128, 7 pages, 2009. doi:10.1155/2009/467128 http://www.hindawi.com/GetArticle.aspx?doi=10.1155/2009/467128"
+ },
+ "class_id": 19,
+ "created": "2008-12-17T02:10:40",
+ "gitrepo": false,
+ "id": 116806,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116808,
+ "object_name": "Yamazaki T, Tanaka S (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Robust Reservoir Generation by Correlation-Based Learning (Yamazaki & Tanaka 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Reservoir computing (RC) is a new framework for neural computation. \r\nA reservoir is usually a recurrent neural network with fixed random connections. \r\n\r\nIn this article, we propose an RC model in which the connections in the reservoir are modifiable. \r\n\r\n...\r\nWe apply our RC model to trace eyeblink conditioning. \r\n\r\nThe reservoir bridged the gap of an interstimulus interval between the conditioned and unconditioned stimuli, and a readout neuron was able to learn and express the timed conditioned response.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116806",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tyam@brain.riken.jp"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 73
+ },
+ "ver_date": "2011-05-24T13:36:01",
+ "ver_number": 4
+ },
+ "116830": {
+ "class_id": 19,
+ "created": "2008-12-23T17:37:05",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 116830,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116827,
+ "object_name": "Lytton WW, Orman R, Stewart M (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Broadening of activity with flow across neural structures (Lytton et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Synfire chains have long been suggested as a substrate for perception and information processing in the nervous system. \r\n\r\nHowever, embedding activation chains in a densely connected nervous matrix risks spread of signal that will obscure or obliterate the message. \r\n\r\nWe used computer modeling and physiological measurements in rat hippocampus to assess this problem of activity broadening.\r\n\r\nWe simulated a series of neural modules with feedforward propagation and random connectivity within each module and from one module to the next. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116830",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@YALE.EDU"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181440,
+ "object_name": "116830"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 160
+ },
+ "ver_date": "2022-05-27T10:12:31.607",
+ "ver_number": 9
+ },
+ "116835": {
+ "class_id": 19,
+ "created": "2009-01-07T10:52:15",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116835,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116853,
+ "object_name": "Diwakar, Shyam [shyam at amrita.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116743,
+ "object_name": "Diwakar S, Magistretti J, Goldfarb M, Naldi G, D'Angelo E (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "116835",
+ "name": "ModelView"
+ }
+ ],
+ "default": "116835"
+ },
+ "name": "Multicompartmental cerebellar granule cell model (Diwakar et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A detailed multicompartmental model was used to study neuronal electroresponsiveness of cerebellar granule cells in rats. Here we show that, in cerebellar granule cells, Na+ channels are enriched in the axon, especially in the hillock, but almost absent from soma and dendrites. Numerical simulations indicated that granule cells have a compact electrotonic structure allowing EPSPs to diffuse with little attenuation from dendrites to axon. The spike arose almost simultaneously along the whole axonal ascending branch and invaded the hillock, whose activation promoted spike back-propagation with marginal delay (<200 micros) and attenuation (<20 mV) into the somato-dendritic compartment. For details check the cited article."
+ },
+ "opensourcebrain": {
+ "value": "multicompgrc"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116835",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Diwakar, Shyam \r\nshyam@unipv.it"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181439,
+ "object_name": "116835"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 287
+ },
+ "ver_date": "2022-11-04T12:59:59.36",
+ "ver_number": 14
+ },
+ "116837": {
+ "class_id": 19,
+ "created": "2009-01-07T11:32:27",
+ "gitrepo": false,
+ "id": 116837,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 116857,
+ "object_name": "Biofeedback"
+ },
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116227,
+ "object_name": "Legenstein R, Pecevski D, Maass W (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 116856,
+ "object_name": "PCSIM"
+ }
+ ]
+ },
+ "name": "Reward modulated STDP (Legenstein et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nThis article provides tools for an analytic treatment of reward-modulated\r\nSTDP, which allows us to predict under which conditions reward-modulated STDP will achieve a desired learning\r\neffect.\r\n\r\nThese analytical results imply that neurons can learn through reward-modulated STDP to classify not only spatial but\r\nalso temporal firing patterns of presynaptic neurons. \r\n\r\nThey also can learn to respond to specific presynaptic firing patterns\r\nwith particular spike patterns. \r\n\r\nFinally, the resulting learning theory predicts that even difficult credit-assignment problems,\r\nwhere it is very hard to tell which synaptic weights should be modified in order to increase the global reward for the system,\r\ncan be solved in a self-organizing manner through reward-modulated STDP. \r\n\r\nThis yields an explanation for a fundamental\r\nexperimental result on biofeedback in monkeys by Fetz and Baker. \r\n\r\nIn this experiment monkeys were rewarded for\r\nincreasing the firing rate of a particular neuron in the cortex and were able to solve this extremely difficult credit assignment\r\nproblem. \r\n...\r\nIn addition our model\r\ndemonstrates that reward-modulated STDP can be applied to all synapses in a large recurrent neural network without\r\nendangering the stability of the network dynamics.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116837",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@YALE.EDU"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2009-02-16T14:02:18",
+ "ver_number": 8
+ },
+ "116838": {
+ "class_id": 19,
+ "created": "2009-01-07T13:34:08",
+ "gitrepo": true,
+ "id": 116838,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116840,
+ "object_name": "Lytton WW, Neymotin SA, Hines ML (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "The virtual slice setup (Lytton et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In an effort to design a simulation environment that is more similar to that of neurophysiology, we introduce a virtual slice setup in the NEURON simulator. \r\n\r\nThe virtual slice setup runs continuously and permits parameter changes, including changes to synaptic weights and time course and to intrinsic cell properties. \r\n\r\nThe virtual slice setup permits shocks to be applied at chosen locations and activity to be sampled intra- or extracellularly from chosen locations. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116838",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@YALE.EDU"
+ },
+ "ver_date": "2023-04-30T15:20:30.08",
+ "ver_number": 12
+ },
+ "116862": {
+ "class_id": 19,
+ "created": "2009-01-13T16:08:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116862,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116863,
+ "object_name": "Zhu, J. Julius [jjzhu at virginia.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4092,
+ "object_name": "Zhu JJ, Uhlrich DJ, Lytton WW (1999)"
+ },
+ {
+ "object_id": 10341,
+ "object_name": "Zhu JJ, Lytton WW, Xue JT, Uhlrich DJ (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Thalamic interneuron multicompartment model (Zhu et al. 1999)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an attempt to recreate a set of simulations originally performed in 1994 under NEURON version 3 and last tested in 1999. When I ran it now it did not behave exactly the same as previously which I suspect is due to some minor mod file changes on my side rather than due to any differences among versions. \r\n\r\nAfter playing around with the parameters a little bit I was able to get something that looks generally like a physiological trace in \r\nJ Neurophysiol, 81:702--711, 1999, fig. 8b top trace. \r\n\r\nThis sad preface is simply offered in order to encourage anyone who is interested in this model to make and post fixes. I'm happy to help out.\r\n\r\nSimulation by JJ Zhu\r\n\r\nTo run\r\nnrnivmodl\r\nnrngui.hoc\r\n\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116862",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "IH"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "JJ Zhu"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "thalamic interneuron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T10:19:11.143",
+ "ver_number": 13
+ },
+ "116867": {
+ "biosimulations": {
+ "value": "modeldb-116867"
+ },
+ "class_id": 19,
+ "created": "2009-01-16T11:49:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 116867,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 49493,
+ "object_name": "Rubin JE, Terman D (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "High frequency stimulation of the Subthalamic Nucleus (Rubin and Terman 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Using a computational model, this paper considers the hypothesis that DBS works by replacing pathologically rhythmic\r\nbasal ganglia output with tonic, high frequency firing.\r\n\r\nIn our simulations of parkinsonian conditions, rhythmic inhibition from GPi to the thalamus compromises the ability of thalamocortical relay (TC) cells to respond to depolarizing inputs, such as sensorimotor signals.\r\n\r\nHigh frequency stimulation of STN regularizes GPi firing, and this restores TC responsiveness, despite the increased frequency and amplitude of GPi inhibition to thalamus that result.\r\n\r\nWe provide a mathematical phase plane analysis of the mechanisms that determine TC relay capabilities in\r\nnormal, parkinsonian, and DBS states in a reduced model.\r\n\r\nThis analysis highlights the differences in deinactivation of the low-threshold calcium T -current that we observe in TC cells in these different conditions. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116867",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2009-01-20T15:26:00",
+ "ver_number": 11
+ },
+ "116870": {
+ "class_id": 19,
+ "created": "2009-01-18T16:14:02",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116870,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 116941,
+ "object_name": "Pospischil, Martin "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116937,
+ "object_name": "Pospischil M, Piwkowska Z, Bal T, Destexhe A (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Python demo of the VmT method to extract conductances from single Vm traces (Pospischil et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This python code implements a method to estimate synaptic conductances from single membrane potential traces (the \"VmT method\"), as described in Pospischil et al. (2009). The method uses a maximum likelihood procedure and was successfully tested using models and dynamic-clamp experiments in vitro (see paper for details)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116870",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Pospischil, Martin and Destexhe, Alain "
+ },
+ "ver_date": "2016-09-16T16:49:45.063",
+ "ver_number": 7
+ },
+ "116871": {
+ "class_id": 19,
+ "created": "2009-01-19T11:18:34",
+ "gitrepo": false,
+ "id": 116871,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116872,
+ "object_name": "Shanahan, Murray [m.shanahan at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116074,
+ "object_name": "Shanahan M (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A spiking model of cortical broadcast and competition (Shanahan 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"This paper presents a computer model of cortical broadcast and competition based on spiking neurons and inspired by\r\nthe hypothesis of a global neuronal workspace underlying conscious information processing in the human brain. In the\r\nmodel, the hypothesised workspace is realised by a collection of recurrently interconnected regions capable of sustaining\r\nand disseminating a reverberating spatial pattern of activation. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116871",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 76
+ },
+ "ver_date": "2009-01-19T11:38:25",
+ "ver_number": 3
+ },
+ "116901": {
+ "class_id": 19,
+ "created": "2009-01-19T14:11:01",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116901,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116906,
+ "object_name": "Carver, Sean [sean.carver at jhu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 242018,
+ "object_name": "Synaptic Convergence"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116905,
+ "object_name": "Carver S, Roth E, Cowan NJ, Fortune ES (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Synaptic plasticity can produce and enhance direction selectivity (Carver et al, 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88204,
+ "object_name": "Electric fish midbrain torus semicircularis neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We propose a parsimonious model of motion processing that generates direction selective responses using short-term synaptic depression and can reproduce salient features of direction selectivity found in a population of neurons in the midbrain of the weakly electric fish Eigenmannia virescens. \r\n\r\nThe model achieves direction selectivity with an elementary Reichardt motion detector: information from spatially separated receptive fields converges onto a neuron via dynamically different pathways. \r\n\r\nIn the model, these differences arise from convergence of information through distinct synapses that either exhibit or do not exhibit short-term synaptic depression\u2014short-term depression produces phase-advances relative to nondepressing synapses. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116901",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Direction Selectivity"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sean.carver@jhu.edu"
+ },
+ "ver_date": "2018-06-06T17:24:19.097",
+ "ver_number": 6
+ },
+ "116945": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Spike frequency adaptation mediates looming stimulus selectivity in a collision-detecting neuron; Peron and Gabbiani; Nature Neuroscience, in press (2009)."
+ },
+ "class_id": 19,
+ "created": "2009-01-26T07:40:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116945,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33804,
+ "object_name": "Gabbiani, F"
+ },
+ {
+ "object_id": 116947,
+ "object_name": "Peron, Simon [perons at janelia.hhmi.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116950,
+ "object_name": "Peron S, Gabbiani F (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spike frequency adaptation in the LGMD (Peron and Gabbiani 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116948,
+ "object_name": "Locust Lobula Giant Movement Detector (LGMD) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is used in the referenced paper to demonstrate that a model of an SK-like calcium-sensitive potassium (KCa) conductance can replicate the spike frequency adaptation (SFA) of the locust lobula giant movement detector (LGMD) neuron. The model simulates current injection experiments with and without KCa block in the LGMD, as well as visual stimulation experiments with and without KCa block."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116945",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spike Frequency Adaptatio"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Peron, Simon "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Lobula Giant Movement Detector (LGMD)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "perons@janelia.hhmi.org"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:50:23.767",
+ "ver_number": 8
+ },
+ "116956": {
+ "class_id": 19,
+ "created": "2009-01-27T11:35:27",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116956,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ },
+ {
+ "object_id": 116982,
+ "object_name": "Torben-Nielsen, Ben [btorbennielsen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 150219,
+ "object_name": "Reliability"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 25002,
+ "object_name": "Borst A, Haag J (1996)"
+ },
+ {
+ "object_id": 26661,
+ "object_name": "Haag J, Theunissen F, Borst A (1997)"
+ },
+ {
+ "object_id": 26663,
+ "object_name": "Haag J, Vermeulen A, Borst A (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "116956",
+ "name": "ModelView"
+ }
+ ],
+ "default": "116956"
+ },
+ "name": "Fly lobular plate VS cell (Borst and Haag 1996, et al. 1997, et al. 1999)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116967,
+ "object_name": "Fly lobular plate vertical system cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In a series of papers the authors conducted experiments to develop understanding and models of fly visual system HS, CS, and VS neurons. This model recreates the VS neurons from those papers with enough success to merit approval by Borst although some discrepancies remain (see readme)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116956",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 250
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 120613,
+ "object_name": "Drosophila (fruit fly)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:09:45.693",
+ "ver_number": 17
+ },
+ "116957": {
+ "citation": {
+ "attr_id": 391,
+ "value": "T. Nowotny, R. Levi and A. I. Selverston, Probing the Dynamics of Identified Neurons with a Data-Driven Modeling Approach, PLoS ONE 3(7): e2627. DOI:10.1371/journal.pone.0002627 (2008)"
+ },
+ "class_id": 19,
+ "created": "2009-01-27T13:18:27",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 116957,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116961,
+ "object_name": "Nowotny, Thomas [t.nowotny at sussex.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116601,
+ "object_name": "Nowotny T, Levi R, Selverston AI (2008)"
+ },
+ {
+ "object_id": 116960,
+ "object_name": "Ivanchenko MV, Thomas Nowotny , Selverston AI, Rabinovich MI (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Data-driven, HH-type model of the lateral pyloric (LP) cell in the STG (Nowotny et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 116963,
+ "object_name": "Stomatogastric Ganglion (STG) Lateral Pyloric (LP) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was developed using voltage clamp data and existing LP models to assemble an initial set of currents which were then adjusted by extensive fitting to a long data set of an isolated LP neuron. The main points of the work are\r\na) automatic fitting is difficult but works when the method is carefully adjusted to the problem (and the initial guess is good enough).\r\nb) The resulting model (in this case) made reasonable predictions for manipulations not included in the original data set, e.g., blocking some of the ionic currents.\r\nc) The model is reasonably robust against changes in parameters but the different parameters vary a lot in this respect.\r\nd) The model is suitable for use in a network and has been used for this purpose (Ivanchenko et al. 2008)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116957",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Parameter sensitivity"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I h"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Nowotny, Thomas "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "STG Lateral Pyloric (LP)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "t.nowotny@sussex.ac.uk"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 60
+ },
+ "ver_date": "2012-06-19T22:58:53",
+ "ver_number": 3
+ },
+ "116981": {
+ "class_id": 19,
+ "created": "2009-01-28T14:30:41",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 116981,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 86943,
+ "object_name": "Rall W (1964)"
+ },
+ {
+ "object_id": 101182,
+ "object_name": "Rall W (1964)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "116981_1",
+ "name": "Fig. 5--exc central vs. peripheral tree"
+ },
+ {
+ "id": "116981_2",
+ "name": "Fig. 5 inset--brief excitation"
+ },
+ {
+ "id": "116981_3",
+ "name": "Fig. 6--effect of location of excitatory input"
+ },
+ {
+ "id": "116981_4",
+ "name": "Fig. 7--effect of activation sequence"
+ },
+ {
+ "id": "116981_5",
+ "name": "Fig. 8--effect of inh location"
+ }
+ ],
+ "default": "116981_1"
+ },
+ "name": "Effects of synaptic location and timing on synaptic integration (Rall 1964)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Reproduces figures 5 - 8 from \r\nRall, W.\r\nTheoretical significance of dendritic trees for neuronal input-output relations.\r\nIn: Neural Theory and Modeling, ed. Reiss, R.F., Palo Alto: Stanford University Press (1964)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116981",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Simplified generalized neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181222,
+ "object_name": "116981_5"
+ },
+ {
+ "object_id": 181223,
+ "object_name": "116981_4"
+ },
+ {
+ "object_id": 181224,
+ "object_name": "116981_1"
+ },
+ {
+ "object_id": 181225,
+ "object_name": "116981_3"
+ },
+ {
+ "object_id": 181226,
+ "object_name": "116981_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 230
+ },
+ "ver_date": "2015-01-02T22:35:19",
+ "ver_number": 6
+ },
+ "116983": {
+ "class_id": 19,
+ "created": "2009-01-28T17:33:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 116983,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117202,
+ "object_name": "Marcelin B, Chauvi\u00e8re L, Becker A, Migliore M, Esclapez M, Bernard C (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "116983",
+ "name": "ModelView"
+ }
+ ],
+ "default": "116983"
+ },
+ "name": "CA1 pyramidal neuron: h channel-dependent deficit of theta oscill. resonance (Marcelin et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was used to confirm and support experimental data\r\nsuggesting that the neuronal/circuitry changes associated with temporal lobe epilepsy,\r\nincluding Ih-dependent inductive mechanisms, can disrupt hippocampal theta function.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/116983",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181858,
+ "object_name": "116983"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 175
+ },
+ "ver_date": "2014-02-06T16:13:00",
+ "ver_number": 7
+ },
+ "117204": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 18650346"
+ },
+ "class_id": 19,
+ "created": "2009-01-31T11:58:18",
+ "gitrepo": false,
+ "id": 117204,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117206,
+ "object_name": "Morita, Kenji [morita at p.u-tokyo.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114887,
+ "object_name": "Morita K (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Working memory circuit with branched dendrites (Morita 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a rate-coding model of the neocortical spatial working memory circuit incorporating multiple dendritic branches of the individual pyramidal cell in order to examine how nonlinear dendritic integration, combined with the nonuniform distribution of the external input, affects the behavior of the whole circuit."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117204",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "morita@brain.riken.jp"
+ },
+ "ver_date": "2009-02-04T09:34:47",
+ "ver_number": 10
+ },
+ "117207": {
+ "class_id": 19,
+ "created": "2009-02-03T18:46:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 117207,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117208,
+ "object_name": "Acker, Corey [acker at uchc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116977,
+ "object_name": "Acker CD, Antic SD (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Excitability of PFC Basal Dendrites (Acker and Antic 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\".. We\r\ncarried out multi-site voltage-sensitive dye imaging of membrane potential transients from thin basal\r\nbranches of prefrontal cortical pyramidal neurons before and after application of channel blockers. We\r\nfound that backpropagating action potentials (bAPs) are predominantly controlled by voltage-gated\r\nsodium and A-type potassium channels. In contrast, pharmacologically blocking the delayed rectifier\r\npotassium, voltage-gated calcium or Ih, conductance had little effect on dendritic action potential\r\npropagation. Optically recorded bAP waveforms were quantified and multicompartmental modeling\r\n(NEURON) was used to link the observed behavior with the underlying biophysical properties. The\r\nbest-fit model included a non-uniform sodium channel distribution with decreasing conductance with\r\ndistance from the soma, together with a non-uniform (increasing) A-type potassium conductance. AP\r\namplitudes decline with distance in this model, but to a lesser extent than previously thought. We used\r\nthis model to explore the mechanisms underlying two sets of published data involving high frequency\r\ntrains of action potentials, and the local generation of sodium spikelets. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117207",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 240
+ },
+ "ver_date": "2014-05-28T14:56:00",
+ "ver_number": 13
+ },
+ "117330": {
+ "class_id": 19,
+ "created": "2009-02-05T20:58:16",
+ "gitrepo": false,
+ "id": 117330,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117490,
+ "object_name": "Lundstrom BN, Famulare M, Sorensen LB, Spain WJ, Fairhall AL (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Hodgkin-Huxley simplifed 2D and 3D models (Lundstrom et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neuronal responses are often characterized by the\r\nfiring rate as a function of the stimulus mean, or the f\u2013I curve.\r\n\r\nWe introduce a novel classification of neurons into Types A,\r\nB−, and B+ according to how f\u2013I curves are modulated by\r\ninput fluctuations. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117330",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lundbr@u.washington.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 63
+ },
+ "ver_date": "2012-01-18T16:38:33",
+ "ver_number": 13
+ },
+ "117351": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 117359,
+ "object_name": "backup of web linked model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2009-02-12T18:35:17",
+ "gitrepo": false,
+ "id": 117351,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117358,
+ "object_name": "Gilmanov IR, Samigullin DV, Vyskocil F, Nikolsky EE, Bukharaeva EA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 117352,
+ "object_name": "Pascal (web link to model)"
+ }
+ ]
+ },
+ "name": "Quantal neurotransmitter release kinetics with fixed and mobile Ca2+ buffers (Gilmanov et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In this work, we used computer modeling of\r\nquanta release kinetics with various levels of calcium influx\r\nand in the presence of endogenous calcium buffers with\r\nvarying mobilities. \r\n\r\nThe results of this modeling revealed\r\nthe desynchronization of quanta release under low calcium\r\ninflux in the presence of an endogenous fixed calcium\r\nbuffer, with a diffusion coefficient much smaller than that\r\nof free Ca2+, and synchronization occurred upon adding a\r\nmobile buffer. This corresponds to changes in secretion\r\ntime course parameters found experimentally ...\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117351",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2009-02-12T19:10:33",
+ "ver_number": 4
+ },
+ "117361": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 19151930"
+ },
+ "class_id": 19,
+ "created": "2009-02-13T13:30:02",
+ "gitrepo": false,
+ "id": 117361,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117422,
+ "object_name": "Stewart, Robert [Robert.Stewart at pharm.ox.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117421,
+ "object_name": "Stewart RD, Bair W (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Numerical Integration of Izhikevich and HH model neurons (Stewart and Bair 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Parker-Sochacki method is a new technique for the numerical integration of differential equations applicable to many neuronal models.\r\nUsing this method, the solution order can be adapted according to the local conditions at each time step, enabling adaptive error control without changing the integration timestep. \r\nWe apply the Parker-Sochacki method to the Izhikevich \u2018simple\u2019 model and a Hodgkin-Huxley\r\ntype neuron, comparing the results with those obtained using the Runge-Kutta and Bulirsch-Stoer methods."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117361",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Stewart, Robert "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Robert.Stewart@pharm.ox.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2009-02-13T14:59:40",
+ "ver_number": 4
+ },
+ "117459": {
+ "class_id": 19,
+ "created": "2009-02-17T09:47:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 117459,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117488,
+ "object_name": "Cruz, Ginny [gcruz at monell.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117341,
+ "object_name": "Cruz GE, Sahley CL, Muller KJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Competition for AP initiation sites in a circuit controlling simple learning (Cruz et al. 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 102282,
+ "object_name": "Leech S cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The spatial and temporal patterns of action potential initiations were studied in a behaving leech preparation to determine the basis of increased firing that accompanies sensitization, a form of non-associative learning requiring the\r\nS-interneurons.\r\n\r\n...\r\nThe S-interneurons, one in each ganglion and linked by electrical synapses with both neighbors to form a chain, are interposed between sensory\r\nand motor neurons.\r\n\r\n...\r\n the single site with the largest initiation rate, the S-cell in the\r\nstimulated segment, suppressed initiations in adjacent ganglia.\r\n\r\nExperiments showed this was both because (1) it received the earliest, greatest input and (2) the delayed synaptic\r\ninput to the adjacent S-cells coincided with the action potential refractory period.\r\n\r\nA compartmental model of the S-cell and its inputs showed that a simple, intrinsic mechanism of inexcitability after each action potential may account for suppression of impulse initiations.\r\n\r\nThus, a non-synaptic competition between neurons alters synaptic integration in the chain.\r\n\r\nIn one mode, inputs to different sites sum independently, whereas in another, synaptic input to a single site precisely specifies the overall pattern of activity.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117459",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181520,
+ "object_name": "117459"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 202
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114272,
+ "object_name": "Hirudinea (leech)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:22:01.033",
+ "ver_number": 10
+ },
+ "117508": {
+ "class_id": 19,
+ "created": "2009-02-20T10:04:58",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122825,
+ "object_name": "nAChR alpha 7"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 117508,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117792,
+ "object_name": "Skorinkin, Andrei [askorink at yandex.ru]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117513,
+ "object_name": "Gay EA, Giniatullin R, Skorinkin A, Yakel JL (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 117353,
+ "object_name": "Pascal/Delphi"
+ }
+ ]
+ },
+ "name": "Rat alpha7 nAChR desensitization is modulated by W55 (Gay et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The rat alpha7 nicotinic acetylcholine receptor (nAChR) can undergo rapid onset of desensitization; however, the mechanisms of desensitization are largely unknown. \r\n\r\nThe contribution of a tryptophan (W) residue at position 55 of the rat alpha7 nAChR subunit, which lies within the beta2 strand, was studied by mutating it to other hydrophobic and/or aromatic amino acids, followed by voltage-clamp experiments in Xenopus oocytes. \r\n\r\nWhen mutated to alanine, the alpha7-W55A nAChR desensitized more slowly, and recovered from desensitization more rapidly, than wildtype alpha7 nAChRs. \r\n\r\nThe contribution of desensitization was validated by kinetic modelling. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117508",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T13:51:48.513",
+ "ver_number": 9
+ },
+ "117514": {
+ "class_id": 19,
+ "created": "2009-02-23T11:10:36",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 117514,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117579,
+ "object_name": "Kovacic, Gregor [kovacg at rpi.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117456,
+ "object_name": "Kovacic G, Tao L, Cai D, Shelley MJ (2008)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Reverse-time correlation analysis for idealized orientation tuning dynamics (Kovacic et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A theoretical analysis is presented of a\r\nreverse-time correlation method used in experimentally\r\ninvestigating orientation tuning dynamics of\r\nneurons in the primary visual cortex.\r\n\r\nAn exact mathematical\r\ncharacterization of the method is developed,\r\nand its connection with the Volterra\u2013Wiener nonlinear\r\nsystems theory is described.\r\n\r\nVarious mathematical\r\nconsequences and possible physiological implications\r\nof this analysis are illustrated using exactly solvable\r\nidealized models of orientation tuning.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117514",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 134
+ },
+ "ver_date": "2018-10-17T16:51:06.383",
+ "ver_number": 7
+ },
+ "117691": {
+ "class_id": 19,
+ "created": "2009-02-25T10:24:25",
+ "gitrepo": false,
+ "id": 117691,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117792,
+ "object_name": "Skorinkin, Andrei [askorink at yandex.ru]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117695,
+ "object_name": "Sokolova E, Skorinkin A, Moiseev I, Agrachev A, Nistri A, Giniatullin R (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 117353,
+ "object_name": "Pascal/Delphi"
+ }
+ ]
+ },
+ "name": "Experimental and modeling studies of desensitization of P2X3 receptors (Sokolova et al. 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The function of ATP-activated P2X3 receptors involved in pain sensation is modulated by desensitization, a phenomenon poorly understood.\r\n\r\nThe present study used patch-clamp recording from cultured rat or mouse sensory neurons and kinetic\r\nmodeling to clarify the properties of P2X3 receptor desensitization.\r\n\r\n...\r\nDesensitization properties were well accounted for by a cyclic model in which\r\nreceptors could be desensitized from either open or closed\r\nstates.\r\n\r\nRecovery was assumed to be a multistate process with distinct kinetics dependent on the agonist-dependent dissociation rate from desensitized receptors.\r\n\r\n...\r\nBy using subthreshold concentrations of an HAD (high-affinity desensitization)-potent agonist, it might be possible\r\nto generate sustained inhibition of P2X3 receptors for controlling\r\nchronic pain.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117691",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 220,
+ "object_name": "Sensory Receptors"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T13:56:49.367",
+ "ver_number": 7
+ },
+ "117810": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 117811,
+ "object_name": "backup of weblink code remoto"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2009-02-27T16:54:20",
+ "gitrepo": false,
+ "id": 117810,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117809,
+ "object_name": "Cisi RR, Kohn AF (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113428,
+ "object_name": "Java (web link to model)"
+ }
+ ]
+ },
+ "name": "Simulation system of spinal cord motor nuclei and assoc. nerves and muscles (Cisi and Kohn 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 275,
+ "object_name": "Spinal cord lumbar Interneuron 1a GLY cell"
+ },
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ },
+ {
+ "object_id": 117813,
+ "object_name": "Spinal cord motor neuron slow twitch"
+ },
+ {
+ "object_id": 117814,
+ "object_name": "Spinal cord motor neuron fatigue resistant"
+ },
+ {
+ "object_id": 117815,
+ "object_name": "Spinal cord motor neuron fast fatiguing"
+ },
+ {
+ "object_id": 117817,
+ "object_name": "Spinal cord Ib interneuron"
+ },
+ {
+ "object_id": 117818,
+ "object_name": "Spinal cord renshaw cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A Web-based simulation system of the spinal\r\ncord circuitry responsible for muscle control is described.\r\nThe simulator employs two-compartment motoneuron\r\nmodels for S, FR and FF types, with synaptic inputs acting\r\nthrough conductance variations. \r\n\r\nFour motoneuron pools\r\nwith their associated interneurons are represented in the\r\nsimulator, with the possibility of inclusion of more than\r\n2,000 neurons and 2,000,000 synapses. \r\n\r\n... \r\nInputs to the motoneuron pool come from populations of\r\ninterneurons (Ia reciprocal inhibitory interneurons, Ib\r\ninterneurons, and Renshaw cells) and from stochastic point\r\nprocesses associated with descending tracts. \r\n\r\n...\r\nThe generation of the H-reflex\r\nby the Ia-motoneuron pool system and its modulation\r\nby spinal cord interneurons is included in the simulation\r\nsystem.\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117810",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2009-03-02T11:38:45",
+ "ver_number": 7
+ },
+ "117966": {
+ "class_id": 19,
+ "created": "2009-03-04T06:03:28",
+ "gitrepo": false,
+ "id": 117966,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117967,
+ "object_name": "Mensi, Skander [skander.mensi at epfl.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 69692,
+ "object_name": "Jolivet R, Rauch A, L\u00fcscher HR, Gerstner W (2006)"
+ },
+ {
+ "object_id": 69707,
+ "object_name": "Jolivet R, Lewis TJ, Gerstner W (2004)"
+ },
+ {
+ "object_id": 115429,
+ "object_name": "Jolivet R, Kobayashi R, Rauch A, Naud R, Shinomoto S, Gerstner W (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spike Response Model simulator (Jolivet et al. 2004, 2006, 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The Spike Response Model (SRM) optimized on the experimental data in the Single-Neuron modelling Competition ( www.incf.org/community/competitions ) for edition 2007 and edition 2008. The Spike Response Model is a simplified model of neuronal excitability where current linearly integrates to an artificial threshold. After the spike, the threshold is augmented and the voltage follows a voltage kernel that is the average voltage trace during and after a spike. The parameters were chosen to best fit the observed spike times with a method outlined in Jolivet et al. (2006)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/117966",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Skander Mensi"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "simplified neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "skander.mensi@epfl.ch"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 137
+ },
+ "ver_date": "2009-03-04T12:49:21",
+ "ver_number": 24
+ },
+ "118014": {
+ "class_id": 19,
+ "created": "2009-03-10T09:28:41",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 118014,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117208,
+ "object_name": "Acker, Corey [acker at uchc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 93421,
+ "object_name": "Acker CD, White JA (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Roles of I(A) and morphology in AP prop. in CA1 pyramidal cell dendrites (Acker and White 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Using conductance-based models of CA1 pyramidal cells, we show that underlying \u201ctraveling wave attractors\u201d control action potential propagation in the apical dendrites. \r\n\r\nBy computing these attractors, we dissect and quantify the effects of IA channels and dendritic morphology on bAP amplitudes. \r\n\r\nWe find that non-uniform activation properties of IA can lead to backpropagation failure similar to that observed experimentally in these cells. \r\n... \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118014",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2009-03-10T15:36:20",
+ "ver_number": 5
+ },
+ "118020": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 118091,
+ "object_name": "backup of web-available model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2009-03-13T18:22:37",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 118020,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118022,
+ "object_name": "Clewley, Robert [rclewley at gsu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118021,
+ "object_name": "Clewley R, Rotstein HG, Kopell N (2005)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Reduction of nonlinear ODE systems possessing multiple scales (Clewley et al. 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We introduce a combined numerical and analytical technique that aids the identification of structure in a class of systems of nonlinear ordinary differential\r\nequations (ODEs) that are commonly applied in dynamical models of physical processes.\r\n... \r\nThese methods have been incorporated into a new software tool named Dssrt, which we demonstrate\r\non a limit cycle of a synaptically driven Hodgkin\u2013Huxley neuron model.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118020",
+ "ver_date": "2017-02-23T11:04:08.17",
+ "ver_number": 15
+ },
+ "118092": {
+ "citation": {
+ "attr_id": 391,
+ "value": "18425570"
+ },
+ "class_id": 19,
+ "created": "2009-03-17T05:48:37",
+ "gitrepo": false,
+ "id": 118092,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118093,
+ "object_name": "Mader, Wolfgang [wolfgang.mader at uni-ulm.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118002,
+ "object_name": "Stein W, Straub O, Ausborn J, Mader W, Wolf H (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118095,
+ "object_name": "MadSim"
+ }
+ ]
+ },
+ "name": "A model of the femur-tibia control system in stick insects (Stein et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 118094,
+ "object_name": "Stick insect nonspiking interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We studied the femur-tibia joint control system of the insect leg, and its switch between resistance reflex in posture control and \"active reaction\" in walking. The \"active reaction\" is basically a reversal of the resistance reflex. Both responses are elicited by the same sensory input and the same neuronal network (the femur-tibia network). \r\nThe femur-tibia network was modeled by fitting the responses of model neurons to those obtained in animals. Each implemented neuron has a physiological counterpart. The strengths of 16 interneuronal pathways that integrate sensory input were then assigned three different values and varied independently, generating a database of more than 43 million network variants. The uploaded version contains the model that best represented the resistance reflex. Please see the README for more help.\r\nWe demonstrate that the combinatorial code of interneuronal pathways determines motor output. A switch between different behaviors such as standing to walking can thus be achieved by altering the strengths of selected sensory integration pathways.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118092",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Mader, Wolfgang \r\nStein, Wolfgang "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "stick insect nonspiking interneuron"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "madSim"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wstein@neurobiologie.de"
+ },
+ "ver_date": "2009-03-19T15:03:54",
+ "ver_number": 11
+ },
+ "118098": {
+ "class_id": 19,
+ "created": "2009-03-18T02:59:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 118098,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118099,
+ "object_name": "Hemond P, Migliore M, Ascoli GA, Jaffe DB (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "118098",
+ "name": "ModelView"
+ }
+ ],
+ "default": "118098"
+ },
+ "name": "Ca3 pyramidal neuron: membrane response near rest (Hemond et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper, the model was used to show how the temporal summation of excitatory inputs in CA3 pyramidal neurons was affected by the presence of Ih in the dendrites in a frequency- and distance-dependent fashion."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118098",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181650,
+ "object_name": "118098"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 189
+ },
+ "ver_date": "2014-02-06T16:18:59",
+ "ver_number": 6
+ },
+ "118195": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 118196,
+ "object_name": "backup of web linked model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2009-03-18T17:06:13",
+ "gitrepo": false,
+ "id": 118195,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118194,
+ "object_name": "Bruce IC (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Evaluation of stochastic diff. eq. approximation of ion channel gating models (Bruce 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Fox and Lu derived an algorithm based on stochastic differential equations for approximating the kinetics of ion channel gating that is simpler and faster than \"exact\" algorithms for simulating Markov process models of channel gating.\r\n\r\nHowever, the approximation may not be sufficiently accurate to predict statistics of action potential generation in some cases.\r\n\r\nThe objective of this study was to develop a framework for analyzing the inaccuracies and determining their origin.\r\n\r\nSimulations of a patch of membrane with voltage-gated sodium and potassium channels were performed using an exact algorithm for the kinetics of channel gating and the approximate algorithm of Fox & Lu.\r\n...\r\nThe results indicate that: (i) the source of the inaccuracy is that the Fox & Lu algorithm does not adequately describe the combined behavior of the multiple activation particles in each sodium and potassium channel, and (ii) the accuracy does not improve with increasing numbers of channels."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118195",
+ "ver_date": "2009-03-18T17:25:28",
+ "ver_number": 8
+ },
+ "118199": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMC2596310"
+ },
+ "class_id": 19,
+ "created": "2009-03-20T11:39:05",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 118199,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118201,
+ "object_name": "Ziegler, Lorric "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 118207,
+ "object_name": "Maintenance"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118205,
+ "object_name": "Clopath C, Ziegler L, Vasilaki E, B\u00fcsing L, Gerstner W (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Tag Trigger Consolidation (Clopath and Ziegler et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model simulates different phases of LTP/D, i.e. the induction or early phase, the setting of synaptic tags, a trigger process for protein synthesis, and a slow transition leading to synaptic consolidation namely the late phase of synaptic plasticity. The model explains a large body of experimental data on synaptic tagging and capture, cross-tagging, and the late phases of LTP and LTD. Moreover, the model accounts for the dependence of LTP and LTD induction on voltage and presynaptic stimulation frequency."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118199",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Maintenance"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ziegler, Lorric"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lorric.ziegler@epfl.ch"
+ },
+ "ver_date": "2014-06-02T10:31:07",
+ "ver_number": 7
+ },
+ "118261": {
+ "class_id": 19,
+ "created": "2009-03-23T13:31:32",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 118261,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118017,
+ "object_name": "Ursino M, Cuppini C, Magosso E, Serino A, di Pellegrino G (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Multisensory integration in the superior colliculus: a neural network model (Ursino et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... The model includes three distinct neural areas:\r\ntwo unimodal areas (auditory and visual) are devoted to a\r\ntopological representation of external stimuli, and communicate\r\nvia synaptic connections with a third downstream\r\narea (in the SC) responsible for multisensory integration.\r\n\r\nThe present simulations show that the model, with a single\r\nset of parameters, can mimic various responses to different\r\ncombinations of external stimuli including the inverse\r\neffectiveness, both in terms of multisensory enhancement\r\nand contrast, the existence of within- and cross-modality\r\nsuppression between spatially disparate stimuli, a reduction\r\nof network settling time in response to cross-modal stimuli\r\ncompared with individual stimuli.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118261",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118308,
+ "object_name": "Superior colliculus"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T15:35:33.48",
+ "ver_number": 9
+ },
+ "118326": {
+ "class_id": 19,
+ "created": "2009-03-23T14:51:29",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 118326,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118260,
+ "object_name": "Ray S, Bhalla US (2008)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118327,
+ "object_name": "MOOSE/PyMOOSE (web link to method)"
+ }
+ ]
+ },
+ "name": "Moose/PyMOOSE: interoperable scripting in Python for MOOSE (Ray and Bhalla 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We report the integration of Python scripting with the Multi-scale Object Oriented Simulation Environment (MOOSE). MOOSE is a general-purpose simulation system for compartmental neuronal models and for models of signaling pathways based on chemical kinetics. We show how the Python-scripting version of MOOSE, PyMOOSE, combines the power of a compiled simulator with the versatility and ease of use of Python. ... \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118326",
+ "ver_date": "2017-06-22T17:13:59.57",
+ "ver_number": 11
+ },
+ "118389": {
+ "citation": {
+ "attr_id": 391,
+ "value": "J Neurosci, in press."
+ },
+ "class_id": 19,
+ "created": "2009-03-27T19:06:07",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 118389,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118393,
+ "object_name": "Hjorth, Johannes [hjorth at csc.kth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118390,
+ "object_name": "Hjorth J, Blackwell KT, Kotaleski JH (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Gap junction coupled network of striatal fast spiking interneurons (Hjorth et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Gap junctions between striatal FS neurons has very weak ability to synchronise spiking. Input uncorrelated between neighbouring neurons is shunted, while correlated input is not."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118389",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hjorth, Johannes "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Striatal fast spiking interneurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hjorth@kth.se"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2009-03-31T17:21:57",
+ "ver_number": 9
+ },
+ "118392": {
+ "citation": {
+ "attr_id": 391,
+ "value": "18266097"
+ },
+ "class_id": 19,
+ "created": "2009-03-30T12:41:23",
+ "gitrepo": false,
+ "id": 118392,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118698,
+ "object_name": "Varkonyi, Peter [vpeter at mit.bme.hu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 137847,
+ "object_name": "Phase Response Curves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116106,
+ "object_name": "V\u00e1rkonyi PL, Kiemel T, Hoffman K, Cohen AH, Holmes P (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Phase oscillator models for lamprey central pattern generators (Varkonyi et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "In our paper, Varkonyi et al. 2008, we derive phase oscillator models for the lamprey central pattern generator from two biophysically based segmental models. We\r\nstudy intersegmental coordination and show how these models can provide stable intersegmental phase lags observed in real animals.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118392",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Varkonyi, Peter "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vpeter@mit.bme.hu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 131
+ },
+ "ver_date": "2011-03-10T10:20:47",
+ "ver_number": 9
+ },
+ "118434": {
+ "class_id": 19,
+ "created": "2009-03-30T16:07:19",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 118434,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117798,
+ "object_name": "Kulvicius T, Tamosiunaite M, Ainge J, Dudchenko P, W\u00f6rg\u00f6tter F (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Odor supported place cell model and goal navigation in rodents (Kulvicius et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nHere we model odor supported place cells by using a simple feed-forward network and analyze the impact of olfactory cues on place cell formation and spatial navigation. \r\n\r\nThe obtained place cells are used to solve a goal navigation task by a novel mechanism based on self-marking by odor patches combined with a Q-learning algorithm. \r\n\r\nWe also analyze the impact of place cell remapping on goal directed behavior when switching between two environments. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118434",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:06:46.153",
+ "ver_number": 4
+ },
+ "118524": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 118528,
+ "object_name": "backup of web link to model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2009-04-01T16:21:16",
+ "gitrepo": false,
+ "id": 118524,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118527,
+ "object_name": "Wohrer A, Kornprobst P (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Virtual Retina: biological retina simulator, with contrast gain control (Wohrer and Kornprobst 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We propose a new retina simulation software, called Virtual Retina, which transforms a video into spike trains.\r\n\r\nOur goal is twofold: Allow large scale simulations (up to 100,000 neurons) in reasonable processing times and keep a strong biological plausibility, taking into account implementation constraints. \r\n\r\n...\r\nThis software will be an evolutionary tool for neuroscientists that need realistic large-scale input spike trains in subsequent treatments, and for educational purposes.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118524",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2009-04-01T16:45:30",
+ "ver_number": 7
+ },
+ "118554": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Yang, Z. et al (2009) Neural Computation 21(4):991-1018 and Hennig, M et al (2007) Neurocomputing, 70:1626-1629"
+ },
+ "class_id": 19,
+ "created": "2009-04-02T10:35:12",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 118554,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139659,
+ "object_name": "Hennig, Matthias H [mhhennig at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 245693,
+ "object_name": "Vestibular"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118605,
+ "object_name": "Yang Z, Hennig MH, Postlethwaite M, Forsythe ID, Graham BP (2009)"
+ },
+ {
+ "object_id": 118606,
+ "object_name": "Hennig MH, Postlethwaite M, Forsythe ID, Graham BP (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Calyx of Held, short term plasticity (Yang Z et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 85986,
+ "object_name": "Medial Nucleus of the Trapezoid Body (MNTB) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model investigates mechanisms contributing to short term plasticity at the calyx of Held, a giant glutamatergic synapse in the mammalian brainstem auditory system. It is a stochastic version of the model described in:\r\n \r\nHennig, M., Postlethwaite, M., Forsythe, I.D. and Graham, B.P. (2007). A biophysical model of short-term plasticity at the calyx of Held. \r\nNeurocomputing, 70:1626-1629.\r\n\r\nThis version introduces stochastic vesicle recycling and release. It has been used to investigate the information transmission\r\nproperties of this synapse, as detailed in:\r\n\r\nYang, Z., Hennig, M., Postlethwaite, M., Forsythe, I.D. and Graham, B.P. (2008). \r\nWide-band information transmission at the calyx of Held. Neural Computation, 21(4):991-1018.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118554",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "b.graham@cs.stir.ac.uk"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 80
+ },
+ "ver_date": "2018-10-18T15:36:00.393",
+ "ver_number": 7
+ },
+ "118631": {
+ "class_id": 19,
+ "created": "2009-04-03T05:55:57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 118631,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97968,
+ "object_name": "Giugliano, Michele [mgiugliano at gmail.com]"
+ },
+ {
+ "object_id": 118634,
+ "object_name": "Delattre, Vincent"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 66938,
+ "object_name": "Koendgen H, Geisler C, Wang XJ, Fusi S, Luescher HR, Giugliano M (2004)"
+ },
+ {
+ "object_id": 118633,
+ "object_name": "K\u00f6ndgen H, Geisler C, Fusi S, Wang XJ, L\u00fcscher HR, Giugliano M (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "118631",
+ "name": "ModelView"
+ }
+ ],
+ "default": "118631"
+ },
+ "name": "Response properties of neocort. neurons to temporally modulated noisy inputs (Koendgen et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neocortical neurons are classified by current\u2013frequency relationship. This is a static description and it may be inadequate to interpret neuronal responses to time-varying stimuli. \r\n\r\nTheoretical studies (Brunel et al., 2001; Fourcaud-Trocm\u00e9 et al. 2003; Fourcaud-Trocm\u00e9 and Brunel 2005; Naundorf et al. 2005) suggested that single-cell dynamical response properties are necessary to interpret ensemble responses to fast input transients. Further, it was shown that input-noise linearizes and boosts the response bandwidth, and that the interplay between the barrage of noisy synaptic currents and the spike-initiation mechanisms determine the dynamical properties of the firing rate. \r\n\r\nIn order to allow a reader to explore such simulations, we prepared a simple NEURON implementation of the experiments performed in K\u00f6ndgen et al., 2008 (see also Fourcaud-Trocm\u00e9 al. 2003; Fourcaud-Trocm\u00e9 and Brunel 2005).\r\n\r\nIn addition, we provide sample MATLAB routines for exploring the sandwich model proposed in K\u00f6ndgen et al., 2008, employing a simple frequdency-domain filtering.\r\n\r\nThe simulations and the MATLAB routines are based on the linear response properties of layer 5 pyramidal cells estimated by injecting a superposition of a small-amplitude sinusoidal wave and a background noise, as in K\u00f6ndgen et al., 2008."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118631",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Vincent Delattre"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181148,
+ "object_name": "118631"
+ }
+ ]
+ },
+ "ver_date": "2023-03-03T11:26:17.507",
+ "ver_number": 25
+ },
+ "118662": {
+ "class_id": 19,
+ "created": "2009-04-06T13:20:06",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 118662,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 48424,
+ "object_name": "Gouwens, Nathan W [nathan_gouwens at hms.harvard.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120524,
+ "object_name": "Gouwens NW, Wilson RI (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "118662_1",
+ "name": "Figure 4a cell 1"
+ },
+ {
+ "id": "118662_2",
+ "name": "Figure 4a cell 2"
+ },
+ {
+ "id": "118662_3",
+ "name": "Figure 4a cell 3"
+ },
+ {
+ "id": "118662_4",
+ "name": "Figure 4b dendrite 1"
+ },
+ {
+ "id": "118662_5",
+ "name": "Figure 4b dendrite 2"
+ },
+ {
+ "id": "118662_6",
+ "name": "Figure 4b dendrite 3"
+ }
+ ],
+ "default": "118662_1"
+ },
+ "name": "Drosophila projection neuron electrotonic structure (Gouwens and Wilson 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 120612,
+ "object_name": "Drosophila antennal lobe DM1 projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We address the issue of how electrical signals propagate in Drosophila neurons by modeling the electrotonic structure of the antennal lobe projection neurons innervating glomerulus DM1. The readme file contains instructions for running the model."
+ },
+ "opensourcebrain": {
+ "value": "drosophila_projection_neuron"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118662",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Drosophila antennal lobe DM1 projection neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nathan_gouwens@hms.harvard.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 226
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 120613,
+ "object_name": "Drosophila (fruit fly)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:10:01.623",
+ "ver_number": 22
+ },
+ "118759": {
+ "class_id": 19,
+ "created": "2009-04-09T15:44:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 118759,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118716,
+ "object_name": "Babich O, Matveev V, Harris AL, Shirokov R (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118760,
+ "object_name": "CalC Calcium Calculator (web link to model)"
+ }
+ ]
+ },
+ "name": "Permeation and inactivation of CaV1.2 Ca2+ channels (Babich et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The authors present data and a kinetics model of the CaV1.2 channel supporting the idea that Ca2+ block of the pore generates the U-shaped inactivation curve."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118759",
+ "ver_date": "2009-04-09T16:26:13",
+ "ver_number": 10
+ },
+ "118797": {
+ "class_id": 19,
+ "created": "2009-04-10T16:17:51",
+ "gitrepo": false,
+ "id": 118797,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118765,
+ "object_name": "Matveev V, Bertram R, Sherman A (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118760,
+ "object_name": "CalC Calcium Calculator (web link to model)"
+ }
+ ]
+ },
+ "name": "Facilitation model based on bound Ca2+ (Matveev et al. 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Facilitation is a transient stimulation-induced increase in synaptic response, a\r\nubiquitous form of short-term synaptic plasticity that can regulate\r\nsynaptic transmission on fast time scales. \r\n\r\nIn their pioneering work, Katz and Miledi and Rahamimoff demonstrated the dependence of\r\nfacilitation on presynaptic Ca2+ influx and proposed that facilitation\r\nresults from the accumulation of residual Ca2+ bound to vesicle\r\nrelease triggers. \r\n\r\nHowever, this bound Ca2+ hypothesis appears to contradict the evidence that \r\nfacilitation is reduced by exogenous Ca2+ buffers. \r\n\r\nThis conclusion led to a widely held view that facilitation\r\nmust depend solely on the accumulation of Ca2+ in free form. \r\n\r\nHere we consider a more realistic implementation of the bound Ca2+\r\nmechanism, taking into account spatial diffusion of Ca2+, and show\r\nthat a model with slow Ca2+ unbinding steps can retain sensitivity to\r\nfree residual Ca2+. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118797",
+ "ver_date": "2015-07-26T13:58:50.357",
+ "ver_number": 5
+ },
+ "118799": {
+ "class_id": 19,
+ "created": "2009-04-13T09:56:01",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 118799,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118701,
+ "object_name": "Oh M, Matveev V (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Loss of phase-locking in non-weakly coupled inhib. networks of type-I neurons (Oh and Matveev 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "...\r\nHere we examine the loss of\r\nsynchrony caused by an increase in inhibitory coupling\r\nin networks of type-I Morris\u2013Lecar model oscillators,\r\nwhich is characterized by a period-doubling cascade\r\nand leads to mode-locked states with alternation in the\r\nfiring order of the two cells, as reported recently by\r\nMaran and Canavier (J Comput Nerosci, 2008) for a\r\nnetwork of Wang-Buzs\u00e1ki model neurons. \r\n\r\nAlthough\r\nalternating-order firing has been previously reported as\r\na near-synchronous state, we show that the stable phase\r\ndifference between the spikes of the two Morris\u2013Lecar\r\ncells can constitute as much as 70% of the unperturbed\r\noscillation period. \r\n\r\nFurther, we examine the generality\r\nof this phenomenon for a class of type-I oscillators that\r\nare close to their excitation thresholds, and provide\r\nan intuitive geometric description of such \u201cleap-frog\u201d\r\ndynamics. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118799",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2013-06-05T11:45:18",
+ "ver_number": 8
+ },
+ "118894": {
+ "class_id": 19,
+ "created": "2009-04-13T13:59:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 118894,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118895,
+ "object_name": "Matveev, Victor V. [m a t v e e v at n j i t . e d u ]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118804,
+ "object_name": "Nguyen V, Mathias R, Smith GD (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118760,
+ "object_name": "CalC Calcium Calculator (web link to model)"
+ }
+ ]
+ },
+ "name": "Stochastic automata network Markov model descriptors of coupled Ca2+ channels (Nguyen et al. 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we present a formalism by which mathematical models for Ca2+-regulated Ca2+ release sites\r\nare derived from stochastic models of single-channel gating that include Ca2+ activation, Ca2+\r\ninactivation, or both. \r\n\r\nSuch models are stochastic automata networks (SANs) that involve a large\r\nnumber of functional transitions, that is, the transition probabilities of the infinitesimal generator\r\nmatrix of one of the automata (i.e., an individual channel) may depend on the local [Ca2+] and\r\nthus the state of the other channels. Simulation and analysis of the SAN descriptors representing\r\nhomogeneous clusters of intracellular Ca2+ channels show that (1) release site density can modify\r\nboth the steady-state open probability and stochastic excitability of Ca2+ release sites, (2) Ca2+\r\ninactivation is not a requirement for Ca2+ puffs or sparks, and (3) a single-channel model with a\r\nbell-shaped open probability curve does not lead to release site activity that is a biphasic function of\r\nrelease site density.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118894",
+ "ver_date": "2018-02-26T11:15:59.293",
+ "ver_number": 10
+ },
+ "118986": {
+ "class_id": 19,
+ "created": "2009-04-14T10:41:36",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 118986,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 119004,
+ "object_name": "Miceli F, Soldovieri MV, Lugli L, Bellini G, Ambrosino P, Migliore M, del Giudice EM, Ferrari F, Pascotto A, Taglialatela M (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "118986",
+ "name": "ModelView"
+ }
+ ],
+ "default": "118986"
+ },
+ "name": "CA1 pyramidal neurons: effects of a Kv7.2 mutation (Miceli et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from the paper:\r\nMiceli et al, Neutralization of a unique, negatively-charged residue in the voltage sensor \r\nof K(V)7.2 subunits in a sporadic case of benign familial neonatal seizures, Neurobiol Dis., in press (2009).\r\nIn this paper, the model revealed that the gating changes introduced by a mutation in K(v)7.2 \r\ngenes encoding for the neuronal KM current in a case of benign familial neonatal seizures,\r\nincreased cell firing frequency, thereby triggering the neuronal hyperexcitability which underlies the observed neonatal epileptic condition.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/118986",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181601,
+ "object_name": "118986"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 179
+ },
+ "ver_date": "2014-02-06T16:14:47",
+ "ver_number": 6
+ },
+ "119153": {
+ "class_id": 19,
+ "created": "2009-04-15T13:50:33",
+ "gitrepo": false,
+ "id": 119153,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118895,
+ "object_name": "Matveev, Victor V. [m a t v e e v at n j i t . e d u ]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117391,
+ "object_name": "Matveev V, Zucker RS, Sherman A (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118760,
+ "object_name": "CalC Calcium Calculator (web link to model)"
+ }
+ ]
+ },
+ "name": "Facilitation through buffer saturation (Matveev et al. 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Using computer simulations, we\r\nstudy the magnitude of synaptic facilitation (SF) that can be achieved by a buffer saturation mechanism (BSM), and explore its dependence on the\r\nendogenous buffering properties.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/119153",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2015-07-26T13:59:41.623",
+ "ver_number": 3
+ },
+ "119159": {
+ "class_id": 19,
+ "created": "2009-04-16T17:43:27",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 119159,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136491,
+ "object_name": "Talathi Sachin [talathi at ufl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116109,
+ "object_name": "Talathi SS, Hwang DU, Ditto WL (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "STDP promotes synchrony of inhibitory networks in the presence of heterogeneity (Talathi et al 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Recently Haas et al. (J Neurophysiol 96:\r\n3305\u20133313, 2006), observed a novel form of spike timing\r\ndependent plasticity (iSTDP) in GABAergic synaptic\r\ncouplings in layer II of the entorhinal cortex. Depending\r\non the relative timings of the presynaptic input at\r\ntime tpre and the postsynaptic excitation at time tpost,\r\nthe synapse is strengthened (delta_t = t(post) - t(pre) > 0) or\r\nweakened (delta_t < 0). The temporal dynamic range of\r\nthe observed STDP rule was found to lie in the higher\r\ngamma frequency band (> or = 40 Hz), a frequency range\r\nimportant for several vital neuronal tasks. In this paper\r\nwe study the function of this novel form of iSTDP in\r\nthe synchronization of the inhibitory neuronal network.\r\nIn particular we consider a network of two unidirectionally\r\ncoupled interneurons (UCI) and two mutually\r\ncoupled interneurons (MCI), in the presence of\r\nheterogeneity in the intrinsic firing rates of each coupled\r\nneuron. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/119159",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 68
+ },
+ "ver_date": "2017-06-27T12:25:53.48",
+ "ver_number": 20
+ },
+ "119214": {
+ "class_id": 19,
+ "created": "2009-04-17T18:55:45",
+ "gitrepo": false,
+ "id": 119214,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118895,
+ "object_name": "Matveev, Victor V. [m a t v e e v at n j i t . e d u ]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117390,
+ "object_name": "Matveev V, Sherman A, Zucker RS (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118760,
+ "object_name": "CalC Calcium Calculator (web link to model)"
+ }
+ ]
+ },
+ "name": "New and corrected simulations of synaptic facilitation (Matveev et al. 2002)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A three-dimensional presynaptic calcium diffusion model developed to account for characteristics of transmitter release\r\nwas modified to provide for binding of calcium to a receptor and subsequent triggering of exocytosis. \r\n\r\nWhen low affinity (20 FLM) and\r\nrapid kinetics were assumed for the calcium receptor triggering exocytosis, and stimulus parameters were selected to match those\r\nof experiments, the simulations predicted a virtual invariance of the time course of transmitter release to paired stimulation,\r\nstimulation with pulses of different amplitude, and stimulation in different calcium solutions. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/119214",
+ "ver_date": "2015-07-26T14:00:37.377",
+ "ver_number": 4
+ },
+ "119266": {
+ "class_id": 19,
+ "created": "2009-04-21T11:03:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 119266,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118967,
+ "object_name": "Markaki M, Orphanoudakis S, Poirazi P (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "119266",
+ "name": "ModelView"
+ }
+ ],
+ "default": "119266"
+ },
+ "name": "Modelling reduced excitability in aged CA1 neurons as a Ca-dependent process (Markaki et al. 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We use a multi-compartmental model of a CA1 pyramidal cell to study changes in hippocampal excitability that result from aging-induced alterations in calcium-dependent membrane mechanisms.\r\n\r\nThe model incorporates N- and L-type calcium channels which are respectively coupled to fast and slow afterhyperpolarization potassium channels.\r\n\r\nModel parameters are calibrated using physiological data.\r\n\r\nComputer simulations reproduce the decreased excitability of aged CA1 cells, which results from increased internal calcium accumulation, subsequently larger postburst slow afterhyperpolarization, and enhanced spike frequency adaptation.\r\n\r\nWe find that aging-induced alterations in CA1 excitability can be modelled with simple coupling mechanisms that selectively link specific types of calcium channels to specific calcium-dependent potassium channels.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/119266",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181267,
+ "object_name": "119266"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 284
+ },
+ "ver_date": "2013-12-10T15:26:58",
+ "ver_number": 14
+ },
+ "119283": {
+ "class_id": 19,
+ "created": "2009-04-24T10:13:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 119283,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 119280,
+ "object_name": "Ferrante, Michele [mferr133 at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ },
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 119284,
+ "object_name": "Ferrante M, Blackwell KT, Migliore M, Ascoli GA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "119283_1",
+ "name": "(1-4) Gray - Control"
+ },
+ {
+ "id": "119283_2",
+ "name": "(1) Black - Lamotrigine"
+ },
+ {
+ "id": "119283_3",
+ "name": "(2) Black - Diazepam"
+ },
+ {
+ "id": "119283_4",
+ "name": "(3) Black - Flindokalner"
+ },
+ {
+ "id": "119283_5",
+ "name": "(4) Black - Lamotrigine+Flindokalner"
+ }
+ ],
+ "default": "119283_1"
+ },
+ "name": "Computational neuropharmacology of CA1 pyramidal neuron (Ferrante et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper, the model was used to show how neuroactive drugs targeting different neuronal mechanisms affect the signal integration in CA1 pyramidal neuron. Ferrante M, Blackwell KT, Migliore M, Ascoli GA (2008)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/119283",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Comput. Neuropharmacology"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181584,
+ "object_name": "119283_1"
+ },
+ {
+ "object_id": 181586,
+ "object_name": "119283_2"
+ },
+ {
+ "object_id": 181587,
+ "object_name": "119283_5"
+ },
+ {
+ "object_id": 181588,
+ "object_name": "119283_4"
+ },
+ {
+ "object_id": 181902,
+ "object_name": "119283_3"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 204
+ },
+ "ver_date": "2015-01-02T21:54:38",
+ "ver_number": 9
+ },
+ "120115": {
+ "class_id": 19,
+ "created": "2009-04-24T16:45:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 120115,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118895,
+ "object_name": "Matveev, Victor V. [m a t v e e v at n j i t . e d u ]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 18315,
+ "object_name": "Yamada WM, Zucker RS (1992)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118760,
+ "object_name": "CalC Calcium Calculator (web link to model)"
+ }
+ ]
+ },
+ "name": "Transmitter release and Ca diffusion models (Yamada and Zucker 1992)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A three-dimensional presynaptic calcium diffusion model developed to account for characteristics of transmitter release was modified to provide for binding of calcium to a receptor and subsequent triggering of exocytosis. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120115",
+ "ver_date": "2015-07-26T14:01:17.05",
+ "ver_number": 4
+ },
+ "120117": {
+ "class_id": 19,
+ "created": "2009-04-27T17:21:54",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 120117,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 120118,
+ "object_name": "Andersson, Thomas [toma at math.su.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 3906,
+ "object_name": "Herzog RI, Cummins TR, Waxman SG (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "TTX-R Na+ current effect on cell response (Herzog et al 2001) (MATLAB)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Small dorsal root ganglion (DRG) neurons, which include nociceptors, express multiple voltage-gated sodium currents. In addition to a classical fast inactivating tetrodotoxin-sensitive (TTX-S) sodium current, many of these cells express a TTX-resistant (TTX-R) sodium current that activates near -70 mV and is persistent at negative potentials. To investigate the possible contributions of this TTX-R persistent (TTX-RP) current to neuronal excitability, we carried out computer simulations using the Neuron program with TTX-S and -RP currents, fit by the Hodgkin-Huxley model, that closely matched the currents recorded from small DRG neurons. ...\" See paper for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120117",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 138
+ },
+ "ver_date": "2009-04-29T11:36:02",
+ "ver_number": 10
+ },
+ "120137": {
+ "class_id": 19,
+ "created": "2009-05-01T15:22:21",
+ "gitrepo": false,
+ "id": 120137,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120136,
+ "object_name": "Marpeau F, Barua A, Josic K (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120138,
+ "object_name": "FORTRAN (web link to a model)"
+ }
+ ]
+ },
+ "name": "A finite volume method for stochastic integrate-and-fire models (Marpeau et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The stochastic integrate and fire neuron is\r\none of the most commonly used stochastic models\r\nin neuroscience.\r\n\r\nAlthough some cases are analytically\r\ntractable, a full analysis typically calls for numerical\r\nsimulations.\r\n\r\nWe present a fast and accurate finite volume\r\nmethod to approximate the solution of the associated\r\nFokker-Planck equation. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120137",
+ "ver_date": "2009-05-01T16:45:01",
+ "ver_number": 7
+ },
+ "120184": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Lee, C.-C., Anton, M., Poon, C.-S., and McRae G. J. (2009) \u00a1\u00a7The Unified Theory of Homosynaptic Short Term Depression and Facilitation\u00a1\u00a8, J. Comut. Neurosci, 26(3):459-473."
+ },
+ "class_id": 19,
+ "created": "2009-05-07T21:23:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 120184,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 120235,
+ "object_name": "Lee, Chuang-Chung [chchlee at alum.mit.edu]"
+ },
+ {
+ "object_id": 120236,
+ "object_name": "Anton, Mihai [mianton at mit.edu]"
+ },
+ {
+ "object_id": 120237,
+ "object_name": "Poon, Chi-Sang [cpoon at mit.edu]"
+ },
+ {
+ "object_id": 120238,
+ "object_name": "McRae, Gregory [mcrae at mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120173,
+ "object_name": "Lee CC, Anton M, Poon CS, McRae GJ (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "A kinetic model unifying presynaptic short-term facilitation and depression (Lee et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\n\r\nHere, we propose a unified theory of synaptic short-term plasticity based on realistic yet tractable and testable model descriptions of the underlying intracellular biochemical processes. \r\n\r\nAnalysis of the model equations leads to a closed-form solution of the resonance frequency, a function of several critical biophysical parameters, as the single key indicator of the propensity for synaptic facilitation or depression under repetitive stimuli. \r\n\r\nThis integrative model is supported by a broad range of transient and frequency response experimental data including those from facilitating, depressing or mixed-mode synapses. \r\n... the model provides the reasons behind the switching behavior between facilitation and depression observed in experiments. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120184",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lee, Chuang-Chung \r\nAnton, Mihai \r\nPoon, Chi-Sang \r\nMcRae, Gregory "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "chchlee@alum.mit.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2009-05-08T16:20:37",
+ "ver_number": 9
+ },
+ "120227": {
+ "class_id": 19,
+ "created": "2009-05-08T15:00:54",
+ "gitrepo": false,
+ "id": 120227,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120226,
+ "object_name": "Chandrasekaran L, Matveev V, Bose A (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Multistability of clustered states in a globally inhibitory network (Chandrasekaran et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We study a network of m identical excitatory cells projecting excitatory synaptic connections onto a single inhibitory interneuron, which is reciprocally coupled to all excitatory cells through inhibitory synapses possessing short-term synaptic depression.\r\n\r\nWe find that such a network with global inhibition possesses multiple stable activity patterns with distinct periods, characterized by the clustering of the excitatory cells into synchronized sub-populations.\r\n\r\nWe prove the existence and stability of n-cluster solutions in a m-cell network.\r\n\r\n... Implications for temporal coding and memory storage are discussed.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120227",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2009-05-08T15:59:10",
+ "ver_number": 5
+ },
+ "120243": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Huang CW, Cheng JT, Tsai JJ, Wu SN, Huang CC. Diabetic hyperglycemia aggravates seizures and status epilepticus-induced hippocampal damage. Neurotox Res (2009) 15:71-81."
+ },
+ "class_id": 19,
+ "created": "2009-05-11T11:34:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 120243,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120244,
+ "object_name": "Huang CW, Cheng JT, Tsai JJ, Wu SN, Huang CC (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Contribution of ATP-sensitive potassium channels in the neuronal network (Huang et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Epileptic seizures in diabetic hyperglycemia (DH) are not uncommon. \r\n\r\nThis study aimed to determine the acute behavioral, pathological, and electrophysiological effects of status epilepticus (SE) on diabetic animals. \r\n\r\n...\r\n\r\nWe also used a simulation model to evaluate intracellular adenosine triphosphate (ATP) and neuroexcitability.\r\n\r\n...\r\nIn the simulation, increased intracellular ATP concentration promoted action potential firing.\r\n\r\nThis finding that rats with DH had more brain damage after SE than rats without diabetes suggests the importance of intensively treating hyperglycemia and seizures in diabetic patients with epilepsy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120243",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2009-05-11T13:38:41",
+ "ver_number": 3
+ },
+ "120246": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Wang YJ, Chen BS, Lin MW, Lin AA, Peng H, Sung RJ, Wu SN. Time-dependent block of ultrarapid-delayed rectifier K(+) currents by aconitine, a potent cardiotoxin in heart-derived H9c2 myoblasts and in neonatal rat ventricular myocytes. Toxicol Sci (2008) 106:454-463."
+ },
+ "class_id": 19,
+ "created": "2009-05-12T10:01:51",
+ "gitrepo": false,
+ "id": 120246,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 116229,
+ "object_name": "Wang YJ, Chen BS, Lin MW, Lin AA, Peng H, Sung RJ, Wu SN (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Action potential of adult rat ventricle (Wang et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Aconitine (ACO), a highly toxic diterpenoid alkaloid, is recognized to have effects \r\non cardiac voltage-gated Na(+) channels. However, it remains unknown whether it has \r\nany effects on K(+) currents. The effects of ACO on ion currents in differentiated \r\nclonal cardiac (H9c2) cells and in cultured neonatal rat ventricular myocytes were \r\ninvestigated in this study. ...\" The rat action potential in this simulation was played back into the cell for experiments reported in this paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120246",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2009-05-12T10:51:34",
+ "ver_number": 3
+ },
+ "120320": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 120325,
+ "object_name": "local copy of web linked model"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2009-05-13T16:29:25",
+ "gitrepo": false,
+ "id": 120320,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 120323,
+ "object_name": "Le Novere, Nicolas [lenov at ebi.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120242,
+ "object_name": "Edelstein SJ, Schaad O, Henry E, Bertrand D, Changeux JP (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 55276,
+ "object_name": "Virtual Cell (web link to model)"
+ },
+ {
+ "object_id": 87474,
+ "object_name": "XML (web link to model)"
+ },
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ },
+ {
+ "object_id": 114648,
+ "object_name": "Scilab (web link to model)"
+ },
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ },
+ {
+ "object_id": 120322,
+ "object_name": "BioPAX (web link to model)"
+ },
+ {
+ "object_id": 125746,
+ "object_name": "SBML (web link to model)"
+ }
+ ]
+ },
+ "name": "A nicotinic acetylcholine receptor kinetic model (Edelstein et al. 1996)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Nicotinic acetylcholine receptors are transmembrane\r\noligomeric proteins that mediate interconversions\r\nbetween open and closed channel states under the\r\ncontrol of neurotransmitters. \r\n\r\n..\r\n\r\nIn order to represent the functional properties of such\r\nreceptors, we have developed a kinetic model that links\r\nconformational interconversion rates to agonist binding\r\nand extends the general principles of the Monod-\r\nWyman-Changeux model of allosteric transitions. \r\n\r\n...\r\nApplication of the model to the peripheral nicotinic acetylcholine receptor\r\n(nAChR) accounts for the main properties of ligand-gating,\r\nincluding single-channel events, and several new\r\nrelationships are predicted.\r\n...\r\nIn terms of future developments, the analysis presented here provides\r\na physical basis for constructing more biologically realistic\r\nmodels of synaptic modulation that may be applied to\r\nartificial neural networks.\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120320",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "ver_date": "2010-02-03T10:26:32",
+ "ver_number": 12
+ },
+ "120521": {
+ "class_id": 19,
+ "created": "2009-05-15T15:36:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 120521,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 120522,
+ "object_name": "Snitsarev, Vladislav [snitsavl at umdnj.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 10457,
+ "object_name": "Schild JH, Kunze DL (1997)"
+ },
+ {
+ "object_id": 12535,
+ "object_name": "Schild JH, Clark JW, Hay M, Mendelowitz D, Andresen MC, Kunze DL (1994)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Nodose sensory neuron (Schild et al. 1994, Schild and Kunze 1997)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a simulink implementation of the model described in Schild et al. 1994, and Schild and Kunze 1997 papers on Nodose sensory neurons. These papers describe the sensitivity these models have to their parameters and the match of the models to experimental data."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120521",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2009-05-15T15:49:10",
+ "ver_number": 2
+ },
+ "120692": {
+ "citation": {
+ "attr_id": 391,
+ "value": "6308260"
+ },
+ "class_id": 19,
+ "created": "2009-05-27T19:36:54",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 120692,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 95372,
+ "object_name": "Chapman JB, Johnson EA, Kootsey JM (1983)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "120692_1",
+ "name": "Figure 2-3"
+ },
+ {
+ "id": "120692_2",
+ "name": "Figure 4-6"
+ },
+ {
+ "id": "120692_3",
+ "name": "Figure 7"
+ },
+ {
+ "id": "120692_4",
+ "name": "Figure 8-10"
+ },
+ {
+ "id": "120692_5",
+ "name": "Figure 11-12"
+ }
+ ],
+ "default": "120692_1"
+ },
+ "name": "Sodium potassium ATPase pump (Chapman et al. 1983)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The electrochemical properties of a widely accepted six-step reaction scheme for the Na,K-ATPase have been studied by computer simulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120692",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "sodium pump"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Na/K pump"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "electrogenic pump"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.hines@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181257,
+ "object_name": "120692_5"
+ },
+ {
+ "object_id": 181258,
+ "object_name": "120692_4"
+ },
+ {
+ "object_id": 181259,
+ "object_name": "120692_3"
+ },
+ {
+ "object_id": 181260,
+ "object_name": "120692_2"
+ },
+ {
+ "object_id": 181261,
+ "object_name": "120692_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 608
+ },
+ "ver_date": "2015-01-02T22:39:23",
+ "ver_number": 15
+ },
+ "120783": {
+ "citation": {
+ "attr_id": 391,
+ "value": "GENERATING OSCILLATORY BURSTS FROM A NETWORK OF REGULAR SPIKING NEURONS WITHOUT INHIBITION, Journal of Computational Neuroscience"
+ },
+ "class_id": 19,
+ "created": "2009-06-01T14:09:10",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 120783,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 120784,
+ "object_name": "Lai, Dihui [dlai at artsci.wustl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120785,
+ "object_name": "Shao J, Lai D, Meyer U, Luksch H, Wessel R (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Generating oscillatory bursts from a network of regular spiking neurons (Shao et al. 2009)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Avian nucleus isthmi pars parvocellularis (Ipc) neurons are reciprocally connected with the tectal layer 10 (L10) neurons and respond with oscillatory bursts to visual stimulation. To elucidate mechanisms of oscillatory bursting in this network of regularly spiking neurons, we investigated an experimentally constrained model of coupled leaky integrate-and-fire neurons with spike-rate adaptation. The model reproduces the observed Ipc oscillatory bursting in response to simulated visual stimulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120783",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lai, Dihui "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dlai@artsci.wustl.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 62
+ },
+ "ver_date": "2018-10-17T16:52:10.497",
+ "ver_number": 32
+ },
+ "120798": {
+ "class_id": 19,
+ "created": "2009-06-05T11:48:19",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 120798,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ },
+ {
+ "object_id": 139419,
+ "object_name": "Stuart, Greg J. [greg.stuart at anu.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120797,
+ "object_name": "Palmer LM, Stuart GJ (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "120798_1",
+ "name": "Fig. 5B"
+ },
+ {
+ "id": "120798_2",
+ "name": "Fig. 5"
+ },
+ {
+ "id": "120798_3",
+ "name": "Suppl. Fig. 2 c"
+ }
+ ],
+ "default": "120798_1"
+ },
+ "name": "Membrane potential changes in dendritic spines during APs and synaptic input (Palmer & Stuart 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nFinally, we used simulations of our experimental observations in\r\nmorphologically realistic models to estimate spine neck resistance.\r\n\r\nThese simulations indicated that spine neck resistance ranges up\r\nto ~500 M Ohm.\r\n\r\nSpine neck resistances of this magnitude reduce somatic EPSPs by ~15%,\r\nindicating that the spine neck is unlikely to act as a physical device\r\nto significantly modify synaptic strength.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120798",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181281,
+ "object_name": "120798_1"
+ },
+ {
+ "object_id": 181282,
+ "object_name": "120798_2"
+ },
+ {
+ "object_id": 181283,
+ "object_name": "120798_3"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:06:15",
+ "ver_number": 22
+ },
+ "120835": {
+ "citation": {
+ "attr_id": 391,
+ "value": "19413992"
+ },
+ "class_id": 19,
+ "created": "2009-06-10T09:19:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 120835,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 120838,
+ "object_name": "Severi, Stefano [stefano.severi at unibo.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120825,
+ "object_name": "Severi S, Corsi C, Rocchetti M, Zaza A (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "A model of beta-adrenergic modulation of IKs in the guinea-pig ventricle (Severi et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Detailed understanding of IKs gating complexity may provide clues on the mechanisms of cardiac repolarization instability and the resulting arrhythmias. We developed and tested a kinetic Markov model to interpret physiologically relevant IKs properties, including pause-dependency and modulation by beta-adrenergic receptors (beta-AR). The model was developed from the Silva & Rudy formulation. Parameters were optimized on control and ISO experimental data, respectively."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120835",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Severi, Stefano "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stefano.severi@unibo.it"
+ },
+ "ver_date": "2018-02-26T11:20:46.567",
+ "ver_number": 7
+ },
+ "120907": {
+ "class_id": 19,
+ "created": "2009-06-10T16:57:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 120907,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 120908,
+ "object_name": "Munro, Erin [ecmun at math.bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126900,
+ "object_name": "Munro E, B\u00f6rgers C (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Mechanisms of very fast oscillations in axon networks coupled by gap junctions (Munro, Borgers 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Axons connected by gap junctions can produce very fast oscillations (VFOs, > 80 Hz) when stimulated randomly at a low rate. The models here explore the mechanisms of VFOs that can be seen in an axonal plexus, (Munro & Borgers, 2009): a large network model of an axonal plexus, small network models of axons connected by gap junctions, and an implementation of the model underlying figure 12 in Traub et al. (1999) .\r\n\r\nThe large network model consists of 3,072 5-compartment axons connected in a random network. The 5-compartment axons are the 5 axonal compartments from the CA3 pyramidal cell model in Traub et al. (1994) with a fixed somatic voltage. The random network has the same parameters as the random network in Traub et al. (1999), and axons are stimulated randomly via a Poisson process with a rate of 2/s/axon. \r\n\r\nThe small network models simulate waves propagating through small networks of axons connected by gap junctions to study how local connectivity affects the refractory period.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120907",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ecmun2002@yahoo.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2012-02-29T10:49:48",
+ "ver_number": 33
+ },
+ "120910": {
+ "class_id": 19,
+ "created": "2009-06-11T10:44:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 120910,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120900,
+ "object_name": "Vazquez Y, Mendez B, Trueta C, De-Miguel FF (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "120910",
+ "name": "ModelView"
+ }
+ ],
+ "default": "120910"
+ },
+ "name": "Electrically-coupled Retzius neurons (Vazquez et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 120911,
+ "object_name": "Leech Retzius neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Dendritic electrical coupling increases the number of effective synaptic inputs\r\nonto neurons by allowing the direct spread of synaptic potentials from one\r\nneuron to another. \r\n\r\nHere we studied the summation of excitatory postsynaptic potentials (EPSPs) produced \r\nlocally and arriving from the coupled neuron (transjunctional) in pairs of \r\nelectrically-coupled Retzius neurons of the leech.\r\n\r\nWe combined paired recordings of EPSPs, the production of artificial EPSPs\r\n(APSPs) in neuron pairs with different coupling coefficients and simulations of\r\nEPSPs produced in the coupled dendrites. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/120910",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181365,
+ "object_name": "120910"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 232
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114272,
+ "object_name": "Hirudinea (leech)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:22:17.283",
+ "ver_number": 6
+ },
+ "121060": {
+ "class_id": 19,
+ "created": "2009-06-12T08:45:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122824,
+ "object_name": "IRK"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 121060,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 121109,
+ "object_name": "Steephen, John Eric [johneric at duk.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 121063,
+ "object_name": "Steephen JE, Manchanda R (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Effects of KIR current inactivation in NAc Medium Spiny Neurons (Steephen and Manchanda 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112837,
+ "object_name": "Nucleus accumbens spiny projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Inward rectifying potassium (KIR) currents in medium spiny (MS) neurons of nucleus accumbens inactivate significantly in ~40% of the neurons but not in the rest, which may lead to differences in input processing by these two groups. \r\n\r\nUsing a 189-compartment computational model of the MS neuron, we investigate the influence of this property using injected current as well as spatiotemporally distributed synaptic inputs. \r\n\r\nOur study demonstrates that KIR current inactivation facilitates depolarization, firing frequency and firing onset in these neurons. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/121060",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Steephen, John Eric"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "johneric@iitb.ac.in"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181233,
+ "object_name": "121060"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 229
+ },
+ "ver_date": "2013-12-10T15:27:44",
+ "ver_number": 36
+ },
+ "121253": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 18566505 doi:10.1088/1741-2560/5/3/001"
+ },
+ "class_id": 19,
+ "created": "2009-06-18T20:57:57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 121253,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 121255,
+ "object_name": "Bellinger, Steven [Steve.Bellinger at asu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 121147,
+ "object_name": "Bellinger SC, Miyazawa G, Steinmetz PN (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "121253_1",
+ "name": "Short demo run"
+ },
+ {
+ "id": "121253_2",
+ "name": "fig 2b (2 hour run)"
+ }
+ ],
+ "default": "121253_1"
+ },
+ "name": "Submyelin Potassium accumulation in Subthalamic neuron (STN) axons (Bellinger et al. 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"To better understand the direct effects of DBS (Deep brain stimulation) on central neurons, a computational model of a myelinated axon has been constructed which includes the effects of K+ accumulation within the peri-axonal space.\r\nUsing best estimates of anatomic and electrogenic model parameters for in vivo STN axons, the model predicts a functional block along the axon due to K+ accumulation in the submyelin space.\r\n...\r\nThese results suggest that therapeutic DBS of the STN likely results in a functional block for many STN axons, although a subset of STN axons may also be activated at the stimulating frequency.\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/121253",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Depolarization block"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Bellinger, Steven"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Peter.Steinmetz@chw.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181242,
+ "object_name": "121253_1"
+ },
+ {
+ "object_id": 181244,
+ "object_name": "121253_2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:30:50",
+ "ver_number": 9
+ },
+ "121259": {
+ "class_id": 19,
+ "created": "2009-06-20T13:06:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 121259,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 121224,
+ "object_name": "Bogaard A, Parent J, Zochowski M, Booth V (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "121259_1",
+ "name": "homogenous network run"
+ },
+ {
+ "id": "121259_2",
+ "name": "heterogenous network run"
+ }
+ ],
+ "default": "121259_1"
+ },
+ "name": "Small world networks of Type I and Type II Excitable Neurons (Bogaard et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Implemented with NEURON 5.9, four model neurons with varying excitability properties affect the spatiotemporal patterning of small world networks of homogeneous and heterogeneous cell population."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/121259",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Modified CA1 pyramidal neuron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181286,
+ "object_name": "121259_2"
+ },
+ {
+ "object_id": 181287,
+ "object_name": "121259_1"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:30:32",
+ "ver_number": 18
+ },
+ "121600": {
+ "class_id": 19,
+ "created": "2009-06-24T12:01:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 121600,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 121601,
+ "object_name": "Meuth P, Meuth SG, Jacobi D, Broicher T, Pape HC, Budde T (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Thalamic neuron: Modeling rhythmic neuronal activity (Meuth et al. 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The authors use an in vitro cell model of a single acutely isolated thalamic neuron in the NEURON simulation environment to address and discuss questions in an undergraduate course. Topics covered include passive electrical properties, composition of action potentials, trains of action potentials, multicompartment modeling, and research topics. The paper includes detailed instructions on how to run the simulations in the appendix."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/121600",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-09-22T17:08:41.74",
+ "ver_number": 12
+ },
+ "121628": {
+ "class_id": 19,
+ "created": "2009-06-24T17:47:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 121628,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 121613,
+ "object_name": "Grisham W, Schottler NA, Krasne FB (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Software for teaching neurophysiology of neuronal circuits (Grisham et al. 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"To circumvent the many problems in teaching neurophysiology as a \u201cwet lab,\u201d we developed SWIMMY, a virtual fish that swims by moving its virtual tail by means of a virtual neural circuit.\r\n...\r\nUsing SWIMMY, students (1) review the basics of neurophysiology, (2) identify the neurons in the circuit, (3) ascertain the neurons\u2019 synaptic interconnections, (4) discover which cells generate the motor pattern of swimming, (5) discover how the rhythm is generated, and finally (6) use an animation that corresponds to the activity of the motoneurons to discover the behavioral effects produced by various lesions and explain them in terms of their neural underpinnings.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/121628",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "ver_date": "2009-06-24T17:48:48",
+ "ver_number": 3
+ },
+ "122329": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 136023,
+ "object_name": "original authors version"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2009-07-01T15:55:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 122329,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 122330,
+ "object_name": "Deister, Christopher [chris.deister at utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 122332,
+ "object_name": "Deister CA, Chan CS, Surmeier DJ, Wilson CJ (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "122329_1",
+ "name": "with SK soma"
+ },
+ {
+ "id": "122329_2",
+ "name": "no SK soma"
+ }
+ ],
+ "default": "122329_1"
+ },
+ "name": "Model of SK current`s influence on precision in Globus Pallidus Neurons (Deister et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In numerical simulations, the availability of both Na+ and A-type K+ channels during autonomous firing were reduced when SK channels were removed, and a nearly equal reduction in Na+ and K+ subthreshold-activated ion channel availability produced a large decrease in the neuron's slope conductance near threshold. \r\n\r\nThis change made the neuron more sensitive to intrinsically generated noise.\r\n\r\nIn vivo, this change would also enhance the sensitivity of GP (Globus Pallidus) neurons to small synaptic inputs.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/122329",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Noise Sensitivity"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Deister, Christopher"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181393,
+ "object_name": "122329_2"
+ },
+ {
+ "object_id": 181857,
+ "object_name": "122329_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 282
+ },
+ "ver_date": "2022-11-04T17:12:33.42",
+ "ver_number": 18
+ },
+ "122369": {
+ "class_id": 19,
+ "created": "2009-07-02T11:09:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 122369,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 122446,
+ "object_name": "Pirini, Marco [marco.pirini at unibo.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118365,
+ "object_name": "Pirini M, Rocchi L, Sensi M, Chiari L (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Investigation of different targets in deep brain stimulation for Parkinson`s (Pirini et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We investigated by a computational model of the basal ganglia the different network effects of deep brain stimulation (DBS) for Parkinson\u2019s disease (PD) in different target sites in the subthalamic nucleus (STN), the globus pallidus pars interna (GPi), and the globus pallidus pars externa (GPe). \r\n\r\nA cellular-based model of the basal ganglia system (BGS), based on the model proposed by Rubin and Terman (J Comput Neurosci 16:211\u2013235, 2004), was developed.\r\n...\r\nOur results suggest that DBS in the STN could functionally restore the TC relay activity, while DBS in the GPe and in the GPi could functionally over-activate and inhibit it, respectively.\r\n\r\nOur results are consistent with the experimental and the clinical evidences on the network effects of DBS.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/122369",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2009-07-07T10:07:43",
+ "ver_number": 12
+ },
+ "122442": {
+ "class_id": 19,
+ "created": "2009-07-03T16:08:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 122442,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 122444,
+ "object_name": "Devaux J, Gow A (2008)"
+ },
+ {
+ "object_id": 135904,
+ "object_name": "Gow A, Devaux J (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Tight junction model of CNS myelinated axons (Devaux and Gow 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Two models are included:\r\n1) a myelinated axon is represented by an equivalent circuit with a double cable design but includes a tight junction in parallel with the myelin membrane RC circuit (called double cable model, DCM).\r\n\r\n2) a myelinated axon is represented by an equivalent circuit with a double cable design but includes a tight junction in series with the myelin RC circuit (called tight junction model, TJM).\r\n\r\nThese models have been used to simulate data from compound action potentials measured in mouse optic nerve from Claudin 11-null mice in Fig. 6 of:\r\nDevaux, J.J. & Gow, A. (2008) Tight Junctions Potentiate The Insulative Properties Of Small CNS Myelinated Axons. J Cell Biol 183, 909-921.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/122442",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Myelin properties"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gow, Alexander\r\nDevaux, Jerome"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Oligodendrocyte"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "agow@med.wayne.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181319,
+ "object_name": "122442_1"
+ },
+ {
+ "object_id": 181320,
+ "object_name": "122442_2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:07:35",
+ "ver_number": 14
+ },
+ "123086": {
+ "class_id": 19,
+ "created": "2009-07-19T21:47:05",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 123086,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 123088,
+ "object_name": "Carpenter GA, Gaddam CS, Mingolla E (2007)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "CONFIGR: a vision-based model for long-range figure completion (Carpenter et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"CONFIGR (CONtour FIgure GRound) is a computational model based on\r\nprinciples of\r\nbiological vision that completes sparse and noisy image figures.\r\n\r\nWithin an integrated\r\nvision/recognition system, CONFIGR posits an initial recognition\r\nstage which identifies figure\r\npixels from spatially local input information.\r\n\r\nThe resulting, and typically incomplete, figure is\r\nfed back to the \u201cearly vision\u201d stage for long-range completion via\r\nfilling-in.\r\n\r\nThe reconstructed\r\nimage is then re-presented to the recognition system for global\r\nfunctions such as object\r\nrecognition.\r\n\r\n...\r\nMulti-scale simulations illustrate the\r\nvision/recognition system. \r\n\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123086",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-06-22T17:18:34.153",
+ "ver_number": 10
+ },
+ "123453": {
+ "class_id": 19,
+ "created": "2009-07-28T00:32:54",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122803,
+ "object_name": "Kv4.3 KCND3"
+ },
+ {
+ "object_id": 122808,
+ "object_name": "Kv3.3 KCNC3"
+ },
+ {
+ "object_id": 123580,
+ "object_name": "Kv3.4 KCNC4"
+ },
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 123453,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 82363,
+ "object_name": "Akemann, Walther [akemann at brain.riken.jp]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 123270,
+ "object_name": "Akemann W, Lundby A, Mutoh H, Kn\u00f6pfel T (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "123453",
+ "name": "ModelView"
+ }
+ ],
+ "default": "123453"
+ },
+ "name": "Effect of voltage sensitive fluorescent proteins on neuronal excitability (Akemann et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Fluorescent protein voltage sensors are recombinant proteins that are designed as genetically encoded cellular\r\nprobes of membrane potential using mechanisms of voltage-dependent modulation of fluorescence. \r\n\r\nSeveral such proteins,\r\nincluding VSFP2.3 and VSFP3.1, were recently reported with reliable function in mammalian cells. \r\n\r\n...\r\n\r\nExpression of these proteins in cell membranes is accompanied by additional dynamic membrane capacitance, ...\r\n\r\nWe used recordings of\r\nsensing currents and fluorescence responses of VSFP2.3 and of VSFP3.1 to derive kinetic models of the voltage-dependent\r\nsignaling of these proteins. \r\n\r\nUsing computational neuron simulations, we quantitatively investigated the perturbing effects of\r\nsensing capacitance on the input/output relationship in two central neuron models, a cerebellar Purkinje and a layer 5 pyramidal\r\nneuron. \r\n... \". The Purkinje cell model is included in ModelDB."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123453",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 228
+ },
+ "ver_date": "2017-03-18T10:04:05.28",
+ "ver_number": 13
+ },
+ "123623": {
+ "class_id": 19,
+ "created": "2009-07-30T09:40:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 123623,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 122785,
+ "object_name": "Pospischil M, Toledo-Rodriguez M, Monier C, Piwkowska Z, Bal T, Fr\u00e9gnac Y, Markram H, Destexhe A (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "123623_1",
+ "name": "Regular-spiking pyramidal cell"
+ },
+ {
+ "id": "123623_2",
+ "name": "Bursting pyramidal cell"
+ },
+ {
+ "id": "123623_3",
+ "name": "Repetitive bursting pyramidal cell"
+ },
+ {
+ "id": "123623_4",
+ "name": "LTS pyramidal cell"
+ },
+ {
+ "id": "123623_5",
+ "name": "Fast-spiking interneuron"
+ }
+ ],
+ "default": "123623_1"
+ },
+ "name": "Hodgkin-Huxley models of different classes of cortical neurons (Pospischil et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We review here the development of Hodgkin-\r\nHuxley (HH) type models of cerebral cortex and thalamic\r\nneurons for network simulations.\r\n\r\nThe intrinsic electrophysiological\r\nproperties of cortical neurons were analyzed from\r\nseveral preparations, and we selected the four most prominent\r\nelectrophysiological classes of neurons.\r\n\r\nThese four classes\r\nare 'fast spiking', 'regular spiking', 'intrinsically bursting'\r\nand 'low-threshold spike' cells. For each class, we fit 'minimal'\r\nHH type models to experimental data.\r\n...\""
+ },
+ "opensourcebrain": {
+ "value": "pospischiletal2008"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123623",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 262
+ },
+ "ver_date": "2016-05-26T15:44:10.18",
+ "ver_number": 18
+ },
+ "123815": {
+ "class_id": 19,
+ "created": "2009-08-18T11:40:42",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 123815,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33787,
+ "object_name": "Graham, Bruce [B.Graham at cs.stir.ac.uk]"
+ },
+ {
+ "object_id": 93425,
+ "object_name": "Cutsuridis, Vassilis [vcutsuridis at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 151331,
+ "object_name": "Storage/recall"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 123816,
+ "object_name": "Cutsuridis V, Cobb S, Graham BP (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "123815",
+ "name": "ModelView"
+ }
+ ],
+ "default": "123815"
+ },
+ "name": "Encoding and retrieval in a model of the hippocampal CA1 microcircuit (Cutsuridis et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This NEURON code implements a small network model (100 pyramidal cells\r\nand 4 types of inhibitory interneuron) of storage and recall of patterns\r\nin the CA1 region of the mammalian hippocampus. Patterns of PC activity\r\nare stored either by a predefined weight matrix generated by Hebbian learning,\r\nor by STDP at CA3 Schaffer collateral AMPA synapses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123815",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "many ionic currents"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "CA1 axo-axonic cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "b.graham@cs.stir.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T10:21:39.987",
+ "ver_number": 15
+ },
+ "123848": {
+ "citation": {
+ "attr_id": 391,
+ "value": "19682031"
+ },
+ "class_id": 19,
+ "created": "2009-08-25T20:28:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 123848,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123851,
+ "object_name": "Thomas, Evan [evan at evan-thomas.net]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 123849,
+ "object_name": "Thomas EA, Reid CA, Petrou S (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 123850,
+ "object_name": "parplex"
+ }
+ ]
+ },
+ "name": "Na channel mutations in the dentate gyrus (Thomas et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These are source files to generate the data in Figure 6 from\r\n\"Mossy fiber sprouting interacts with sodium channel\r\nmutations to increase dentate gyrus excitability\" Thomas EA, Reid CA, Petrou S,\r\nEpilepsia (2009)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123848",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Thomas, Evan "
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "parplex"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "evan@evan-thomas.net"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2009-08-26T10:38:11",
+ "ver_number": 3
+ },
+ "123897": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hu, W., C. Tian, et al. (2009). \"Distinct contributions of Na(v)1.6 and Na(v)1.2 in action potential initiation and backpropagation.\" Nat Neurosci 12(8): 996-1002."
+ },
+ "class_id": 19,
+ "created": "2009-09-02T22:21:16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92083,
+ "object_name": "Nav1.2 SCN2A"
+ },
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 123897,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123910,
+ "object_name": "Hu, Wenqin [huwenqin at ion.ac.cn]"
+ },
+ {
+ "object_id": 123911,
+ "object_name": "Hou, Han [hh at ion.ac.cn]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 123901,
+ "object_name": "Hu W, Tian C, Li T, Yang M, Hou H, Shu Y (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Action Potential initiation and backpropagation in Neocortical L5 Pyramidal Neuron (Hu et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...Previous computational studies have yielded conflicting conclusions\r\nabout the role of Na+ channel density and biophysical properties in\r\naction potential initiation as a result of inconsistent estimates of\r\nchannel density. Our modeling studies integrated the immunostaining\r\nand electrophysiological results and showed that the lowest\r\nthreshold for action potential initiation at the distal AIS was largely\r\ndetermined by the density of low-threshold Nav1.6 channels ... Distinct from the function of Nav1.6 channel, the Nav1.2 channel\r\nmay control action potential backpropagation because of its high\r\ndensity at the proximal AIS and high threshold. ... In conclusion, distal AIS accumulation of Nav1.6 channels determines\r\nthe low threshold for action potential initiation; whereas\r\nproximal AIS accumulation of Nav1.2 channels sets the threshold for\r\nthe generation of somatodendritic potentials and ensures action\r\npotential backpropagation to the soma and dendrites. Thus, Nav1.6\r\nand Nav1.2 channels serve distinct functions in action potential\r\ninitiation and backpropagation.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123897",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "AP"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Nav1.6; I Nav1.2"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hu, Wenqin \r\nHou, Han "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hh@ion.ac.cn"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181773,
+ "object_name": "123897_1"
+ },
+ {
+ "object_id": 181775,
+ "object_name": "123897_3"
+ },
+ {
+ "object_id": 181868,
+ "object_name": "123897_2"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 146
+ },
+ "ver_date": "2017-07-03T22:13:48.16",
+ "ver_number": 25
+ },
+ "123927": {
+ "class_id": 19,
+ "created": "2009-09-08T11:43:15",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 127284,
+ "object_name": "Nav SCN1B"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 123927,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125153,
+ "object_name": "Horstmann, Marie-Therese [mhorstma at uni-bonn.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142691,
+ "object_name": "Wimmer VC, Reid CA, Mitchell S, Richards KL, Scaf BB, Leaw BT, Hill EL, Royeck M, Horstmann MT, Cromer BA, Davies PJ, Xu R, Lerche H, Berkovic SF, Beck H, Petrou S (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "123927",
+ "name": "ModelView"
+ }
+ ],
+ "default": "123927"
+ },
+ "name": "Complex CA1-neuron to study AP initiation (Wimmer et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Complex model of a pyramidal CA1-neuron, adapted from Royeck, M., et al. Role of axonal NaV1.6 sodium channels in action potential\r\ninitiation of CA1 pyramidal neurons. Journal of neurophysiology 100, 2361-2380\r\n(2008).\r\nIt contains a biophysically realistic morphology comprising 265 compartments (829 segments) and 15 different distributed Ca2+- and/or voltage-dependent conductances."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123927",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Nav SCN1b"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Horstmann,Marie-Therese "
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181146,
+ "object_name": "123927"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 203
+ },
+ "ver_date": "2013-12-10T15:28:19",
+ "ver_number": 18
+ },
+ "123928": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Oscillations, Phase-of-Firing Coding and STDP: an efficient learning scheme. J Neurosc (in press)"
+ },
+ "class_id": 19,
+ "created": "2009-09-09T11:57:09",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 123928,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123929,
+ "object_name": "Masquelier, Tim [timothee.masquelier at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 123930,
+ "object_name": "Masquelier T, Hugues E, Deco G, Thorpe SJ (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Oscillations, phase-of-firing coding and STDP: an efficient learning scheme (Masquelier et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model demonstrates how a common oscillatory drive for a group of neurons formats and reliabilizes their spike times - through an activation-to-phase conversion - so that repeating activation patterns can be easily detected and learned by a downstream neuron equipped with STDP, and then recognized in just one oscillation cycle."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123928",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Masquelier, Tim "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timothee.masquelier@alum.mit.edu"
+ },
+ "ver_date": "2017-07-28T13:56:12.797",
+ "ver_number": 10
+ },
+ "123986": {
+ "class_id": 19,
+ "created": "2009-09-18T09:49:00",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 123986,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 123606,
+ "object_name": "Horcholle-Bossavit G, Quenet B, Foucart O (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Oscillation and coding in a proposed NN model of insect olfaction (Horcholle-Bossavit et al. 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"For the analysis of coding mechanisms in the insect olfactory system, a fully connected network of synchronously updated\r\nMcCulloch and Pitts neurons (MC-P type) was (previously) developed. ... Considering the update time as an intrinsic clock, this \u201cDynamic\r\nNeural Filter\u201d (DNF), which maps regions of input space into spatio-temporal sequences of neuronal activity, is able to produce\r\nexact binary codes extracted from the synchronized activities recorded at the level of projection neurons (PN) in the locust antennal\r\nlobe (AL) in response to different odors\r\n...\r\nWe find synaptic matrices which lead to both the emergence of robust oscillations and spatio-temporal patterns, using a\r\nformal criterion, based on a Normalized Euclidian Distance (NED), in order to measure the use of the temporal dimension as a\r\ncoding dimension by the DNF. Similarly to biological PN, the activity of excitatory neurons in the model can be both phase-locked\r\nto different cycles of oscillations which (is reminiscent of the) local field potential (LFP), and nevertheless exhibit dynamic behavior complex\r\nenough to be the basis of spatio-temporal codes.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123986",
+ "ver_date": "2018-10-17T16:07:02.91",
+ "ver_number": 11
+ },
+ "123987": {
+ "class_id": 19,
+ "created": "2009-09-18T10:51:04",
+ "gitrepo": false,
+ "id": 123987,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 123988,
+ "object_name": "Horcholle-Bossavit G, Quenet B (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Neural model of frog ventilatory rhythmogenesis (Horcholle-Bossavit and Quenet 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In the adult frog respiratory system, periods of rhythmic movements of the buccal floor are interspersed\r\nby lung ventilation episodes. \r\n\r\nThe ventilatory activity results from the interaction of two hypothesized\r\noscillators in the brainstem. \r\n\r\nHere, we model these oscillators with two coupled neural networks, whose\r\nco-activation results in the emergence of new dynamics. \r\n\r\n..\r\nThe biological interest of this formal model is illustrated by\r\nthe persistence of the relevant dynamical features when perturbations are introduced in the model, i.e.\r\ndynamic noises and architecture modifications. \r\n\r\nThe implementation of the networks with clock-driven\r\ncontinuous time neurones provides simulations with physiological time scales.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/123987",
+ "simPFid": {
+ "attr_id": 488,
+ "value": 125
+ },
+ "ver_date": "2009-09-18T11:04:50",
+ "ver_number": 4
+ },
+ "124043": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Synaptic integration in tuft dendrites of layer 5 pyramidal neurons: a new unifying principle. Larkum et al. 2009"
+ },
+ "class_id": 19,
+ "created": "2009-09-20T09:14:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 124043,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124046,
+ "object_name": "Polsky, Alon [alonpol at tx.technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124045,
+ "object_name": "Larkum ME, Nevian T, Sandler M, Polsky A, Schiller J (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "124043",
+ "name": "ModelView"
+ }
+ ],
+ "default": "124043"
+ },
+ "name": "Synaptic integration in tuft dendrites of layer 5 pyramidal neurons (Larkum et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulations used in the paper. Voltage responses to current injections in different tuft locations; NMDA and calcium spike generation. Summation of multiple input distribution."
+ },
+ "opensourcebrain": {
+ "value": "larkumetal2009"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/124043",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Polsky, Alon\r\nalonpol@tx.technion.ac.il"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "alonpol@tx.technion.ac.il"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181869,
+ "object_name": "124043"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T01:12:28",
+ "ver_number": 16
+ },
+ "124063": {
+ "citation": {
+ "attr_id": 391,
+ "value": "\"A Computational Study on the Role of Gap Junctions and Rod Ih Conductance in the Enhancement of the Dynamic Range of the Retina\". PLoS ONE 4(9): e6970. doi:10.1371/journal.pone.0006970"
+ },
+ "class_id": 19,
+ "created": "2009-09-28T03:14:10",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 124063,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124065,
+ "object_name": "Publio, Rodrigo [publio at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124064,
+ "object_name": "Publio R, Oliveira RF, Roque AC (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A network model of the vertebrate retina (Publio et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ },
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ },
+ {
+ "object_id": 7020,
+ "object_name": "Retina bipolar GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this work, we use a minimal conductance-based model of the ON rod pathways in the vertebrate retina to study the effects of electrical synaptic coupling via gap junctions among rods and among AII amacrine cells on the dynamic range of the retina. The model is also used to study the effects of the maximum conductance of rod hyperpolarization activated current Ih on the dynamic range of the retina, allowing a study of the interrelations between this intrinsic membrane parameter with those two retina connectivity characteristics."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/124063",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Dynamic Range"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Publio, Rodrigo\r\npublio@oist.jp"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "publio@oist.jp"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181394,
+ "object_name": "124063"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 142
+ },
+ "ver_date": "2015-01-02T22:52:22",
+ "ver_number": 12
+ },
+ "124111": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Girard, B., Tabareau, N., Pham, Q.C., Berthoz, A. and Slotine, J.-J. (2008). Where neuroscience and dynamic system theory meet autonomous robotics: a contracting basal ganglia model for action selection. Neural Networks, 21(4):628-641. [doi:10.1016/j.neunet.2008.03.009]"
+ },
+ "class_id": 19,
+ "created": "2009-09-29T06:57:05",
+ "gitrepo": false,
+ "id": 124111,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124115,
+ "object_name": "Girard, Benoit [girard at isir.upmc.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 65222,
+ "object_name": "Gurney K, Prescott TJ, Redgrave P (2001)"
+ },
+ {
+ "object_id": 116879,
+ "object_name": "Prescott TJ, Montes Gonz\u00e1lez FM, Gurney K, Humphries MD, Redgrave P (2006)"
+ },
+ {
+ "object_id": 124114,
+ "object_name": "Girard B, Tabareau N, Pham QC, Berthoz A, Slotine JJ (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A contracting model of the basal ganglia (Girard et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ },
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Basal ganglia model : selection processes between channels, dynamics controlled by contraction analysis, rate-coding model of neurons based on locally projected dynamical systems (lPDS)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/124111",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Girard, Benoit "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "benoit.girard@isir.fr"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2015-01-28T17:34:07",
+ "ver_number": 7
+ },
+ "124291": {
+ "class_id": 19,
+ "created": "2009-10-06T20:20:54",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 124291,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 119280,
+ "object_name": "Ferrante, Michele [mferr133 at bu.edu]"
+ },
+ {
+ "object_id": 124390,
+ "object_name": "Ascoli, Giorgio A [ascoli at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124297,
+ "object_name": "Ferrante M, Migliore M, Ascoli GA (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "124291",
+ "name": "ModelView"
+ }
+ ],
+ "default": "124291"
+ },
+ "name": "Dentate Gyrus Feed-forward inhibition (Ferrante et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 124389,
+ "object_name": "Dentate gyrus MOPP cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper, the model was used to show how that FFI can change a steeply sigmoidal input-output (I/O) curve into a double-sigmoid typical of buffer systems."
+ },
+ "opensourcebrain": {
+ "value": "dentate-gyrus-granule-cell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/124291",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "IK, f"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michele Migliore, Giorgio A. Ascoli"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "MOPP cell (interneuron)"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181436,
+ "object_name": "124291"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 219
+ },
+ "ver_date": "2014-02-06T17:15:23",
+ "ver_number": 26
+ },
+ "124329": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Rivest, F, Kalaska, J.F., Bengio, Y. (2009) Alternative time representation in dopamine models. Journal of Computational Neuroscience. http://dx/doi.org/10.1007/s10827-009-0191-1"
+ },
+ "class_id": 19,
+ "created": "2009-10-10T18:03:07",
+ "gitrepo": false,
+ "id": 124329,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124330,
+ "object_name": "Rivest F, Kalaska JF, Bengio Y (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ }
+ ]
+ },
+ "name": "Alternative time representation in dopamine models (Rivest et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Combines a long short-term memory (LSTM) model of the cortex to a temporal difference learning (TD) model of the basal ganglia. Code to run simulations similar to the published data: Rivest, F, Kalaska, J.F., Bengio, Y. (2009) Alternative time representation in dopamine models. Journal of Computational Neuroscience. \r\nSee http://dx.doi.org/10.1007/s10827-009-0191-1 for details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/124329",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rivest, Francois"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "francois.rivest@mail.mcgill.ca"
+ },
+ "ver_date": "2015-03-09T11:51:22.833",
+ "ver_number": 6
+ },
+ "124392": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Thomas EA, Reid CA, Berkovic SF, Petrou S (2009) Prediction by Modeling That Epilepsy May Be Caused by Very Small Functional Changes in Ion Channel Arch Neurol. 66(10):1225-1232"
+ },
+ "class_id": 19,
+ "created": "2009-10-14T20:43:04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 124392,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123851,
+ "object_name": "Thomas, Evan [evan at evan-thomas.net]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124332,
+ "object_name": "Thomas EA, Reid CA, Berkovic SF, Petrou S (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 123850,
+ "object_name": "parplex"
+ }
+ ]
+ },
+ "name": "Epilepsy may be caused by very small functional changes in ion channels (Thomas et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We used a previously published model of the dentate gyrus with varying degrees of mossy fibre sprouting.We preformed a sensitivity analysis where we systematically varied individual properties of ion channels. The results predict that genetic variations in the properties of sodium channels are likely to have the biggest impact on network excitability. Furthermore, these changes may be as small as 1mV, which is currently undetectable using standard experimental practices."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/124392",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "evan@evan-thomas.net"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2009-10-15T09:54:23",
+ "ver_number": 5
+ },
+ "124394": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Nevian T, Larkum ME, Polsky A, Schiller J. Properties of basal dendrites of layer 5 pyramidal neurons: a direct patch-clamp recording study. Nat Neurosci. 2007 Feb;10(2):206-214."
+ },
+ "class_id": 19,
+ "created": "2009-10-18T06:00:45",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 124394,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124046,
+ "object_name": "Polsky, Alon [alonpol at tx.technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117305,
+ "object_name": "Nevian T, Larkum ME, Polsky A, Schiller J (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "124394",
+ "name": "ModelView"
+ }
+ ],
+ "default": "124394"
+ },
+ "name": "Dendritic Na+ spike initiation and backpropagation of APs in active dendrites (Nevian et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON model used to create simulations shown in figure 6 of the paper. The model includes two point processes; one for dendritic spike initiation and the other for somatic action potential generation. The effect of filtering by imperfect recording electrode can be examined in somatic and dendritic locations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/124394",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "alonpol@tx.techion.acil"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181464,
+ "object_name": "124394"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 216
+ },
+ "ver_date": "2014-02-06T17:14:16",
+ "ver_number": 7
+ },
+ "124513": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 151457,
+ "object_name": "original"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2009-10-23T16:05:21",
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "corrected"
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 124513,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153194,
+ "object_name": "Bezaire, Marianne [mariannejcase at gmail.com]"
+ },
+ {
+ "object_id": 153195,
+ "object_name": "Morgan, Robert [polomav at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 51780,
+ "object_name": "Santhakumar V, Aradi I, Soltesz I (2005)"
+ },
+ {
+ "object_id": 85911,
+ "object_name": "Dyhrfjeld-Johnsen J, Santhakumar V, Morgan RJ, Huerta R, Tsimring L, Soltesz I (2007)"
+ },
+ {
+ "object_id": 114348,
+ "object_name": "Morgan RJ, Soltesz I (2008)"
+ },
+ {
+ "object_id": 114349,
+ "object_name": "Morgan RJ, Santhakumar V, Soltesz I (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dentate gyrus (Morgan et al. 2007, 2008, Santhakumar et al. 2005, Dyhrfjeld-Johnsen et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was implemented by Rob Morgan in the Soltesz lab at UC Irvine. It is a scaleable model of the rat dentate gyrus including four cell types. This model runs in serial (on a single processor) and has been published at the size of 50,000 granule cells (with proportional numbers of the other cells)."
+ },
+ "opensourcebrain": {
+ "value": "dentate"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/124513",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Morgan, Robert"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mariannejcase@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 220
+ },
+ "ver_date": "2023-01-30T14:33:08.13",
+ "ver_number": 20
+ },
+ "125125": {
+ "class_id": 19,
+ "created": "2009-11-18T17:03:44",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 125125,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124994,
+ "object_name": "Channell P, Fuwape I, Neiman AB, Shilnikov AL (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 125368,
+ "object_name": "CONTENT"
+ },
+ {
+ "object_id": 125369,
+ "object_name": "Dynamics Solver"
+ }
+ ]
+ },
+ "name": "Reduced leech heart interneuron (Channell et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52410,
+ "object_name": "Leech heart interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Spiking and bursting patterns of neurons are characterized by a high degree of variability.\r\n\r\nA single neuron can demonstrate endogenously various bursting patterns, changing in response to external disturbances\r\ndue to synapses, or to intrinsic factors such as channel noise.\r\n\r\nWe argue that in a model of the leech heart interneuron existing variations of bursting patterns are\r\nsignificantly enhanced by a small noise.\r\n\r\nIn the absence of noise this model shows periodic bursting with fixed\r\nnumbers of interspikes for most parameter values. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125125",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ashilnikov@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114272,
+ "object_name": "Hirudinea (leech)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:22:32.237",
+ "ver_number": 8
+ },
+ "125152": {
+ "class_id": 19,
+ "created": "2009-11-20T12:47:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 125152,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125153,
+ "object_name": "Horstmann, Marie-Therese [mhorstma at uni-bonn.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127446,
+ "object_name": "Uebachs M, Opitz T, Royeck M, Dickhof G, Horstmann MT, Isom LL, Beck H (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron to study INaP properties and repetitive firing (Uebachs et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A model of a CA1 pyramidal neuron containing a biophysically realistic morphology and 15 distributed voltage and Ca2+-dependent conductances. Repetitive firing is modulated by maximal conductance and the\r\nvoltage dependence of the persistent Na+ current (INaP)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125152",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Nav1.1SCN1B"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Horstmann, Marie-Therese"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181908,
+ "object_name": "125152"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 166
+ },
+ "ver_date": "2014-01-31T23:02:35",
+ "ver_number": 21
+ },
+ "125154": {
+ "biosimulations": {
+ "value": "modeldb-125154"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Huang CW, Tsai JJ, Huang CC, Wu SN. Experimental and simulation studies on the mechanisms of levetiracetam-mediated inhibition of delayed-rectifier potassium current (Kv3.1): contribution to the firing of action potentials. 2009, J Physiol Pharmacol (in press)"
+ },
+ "class_id": 19,
+ "created": "2009-11-25T09:31:32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88117,
+ "object_name": "I_KHT"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122817,
+ "object_name": "Kv3.1 KCNC1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 125154,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 84610,
+ "object_name": "Huang, Chin-Wei"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125155,
+ "object_name": "Huang CW, Tsai JJ, Huang CC, Wu SN (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Simulation studies on mechanisms of levetiracetam-mediated inhibition of IK(DR) (Huang et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88207,
+ "object_name": "Neuroblastoma"
+ },
+ {
+ "object_id": 114112,
+ "object_name": "NG108-15 neuronal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Levetiracetam (LEV) is an S-enantiomer pyrrolidone derivative with established antiepileptic \r\nefficacy in generalized epilepsy and partial epilepsy. However, its effects on ion currents \r\nand membrane potential remain largely unclear. In this study, we investigated the effect of \r\nLEV on differentiated NG108-15 neurons. \r\n...\r\nSimulation studies in a modified \r\nHodgkin-Huxley neuron and network unraveled that the reduction of slowly inactivating IK(DR) resulted \r\nin membrane depolarization accompanied by termination of the firing of action potentials in a \r\nstochastic manner. Therefore, the inhibitory effects on slowly inactivating IK(DR) (Kv3.1-encoded \r\ncurrent) may constitute one of the underlying mechanisms through which LEV affects neuronal activity \r\nin vivo."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125154",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2009-11-27T14:00:29",
+ "ver_number": 7
+ },
+ "125290": {
+ "class_id": 19,
+ "created": "2009-11-27T08:38:11",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 125290,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83470,
+ "object_name": "El Boustani, Sami [elboustani at unic.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 125293,
+ "object_name": "Marre, Olivier [marre at unic.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 125294,
+ "object_name": "Maximum entropy models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125291,
+ "object_name": "Marre O, El Boustani S, Fr\u00e9gnac Y, Destexhe A (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Maximum entropy model to predict spatiotemporal spike patterns (Marre et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This MATLAB code implements a model-based analysis of spike trains.\r\nThe analysis predicts the occurrence of spatio-temporal patterns of\r\nspikes in the data, and is based on a maximum entropy principle by\r\nincluding both spatial and temporal correlations. The approach is\r\napplicable to unit recordings from any region of the brain.\r\n\r\nThe code is based on Marre, et al., 2009.\r\n\r\nThe MATLAB code was written by Sami El Boustani and Olivier Marre.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125290",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "maximum entropy models"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "El Boustani, Sami ; Marre, Olivier "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "cerebral cortex"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2016-06-14T15:40:24.057",
+ "ver_number": 10
+ },
+ "125378": {
+ "class_id": 19,
+ "created": "2009-12-06T20:59:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 125378,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125379,
+ "object_name": "Hayashida, Yuki [yukih at cs.kumamoto-u.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 46100,
+ "object_name": "Lee SC, Hayashida Y, Ishida AT (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Availability of low-threshold Ca2+ current in retinal ganglion cells (Lee SC et al. 2003)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we measured T-type current of isolated\r\ngoldfish retinal ganglion cells with perforated-patch voltageclamp\r\nmethods in solutions containing a normal extracellular Ca2+\r\nconcentration.\r\n\r\nThe voltage sensitivities and rates of current activation,\r\ninactivation, deactivation, and recovery from inactivation were similar\r\nto those of expressed +1G (CaV3.1) Ca2+ channel clones, except that\r\nthe rate of deactivation was significantly faster.\r\n\r\nWe reproduced the\r\namplitude and kinetics of measured T currents with a numerical\r\nsimulation based on a kinetic model developed for an +1G Ca2+\r\nchannel.\r\n\r\nFinally, we show that this model predicts the increase of\r\nT-type current made available between resting potential and spike\r\nthreshold by repetitive hyperpolarizations presented at rates that are\r\nwithin the bandwidth of signals processed in situ by these neurons.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125378",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "rebound excitation"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Markovian kinetic model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "thomas.morse@snet.net"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181172,
+ "object_name": "125378"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 156
+ },
+ "ver_date": "2014-01-20T15:54:43",
+ "ver_number": 7
+ },
+ "125385": {
+ "class_id": 19,
+ "created": "2009-12-09T16:14:30",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 125385,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125386,
+ "object_name": "Diba, Kamran [diba at andromeda.rutgers.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 68846,
+ "object_name": "Diba K, Koch C, Segev I (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Spike propagation in dendrites with stochastic ion channels (Diba et al. 2006)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We investigate the effects of the stochastic nature\r\nof ion channels on the faithfulness, precision and reproducibility\r\nof electrical signal transmission in weakly active,\r\ndendritic membrane under in vitro conditions. \r\n\r\n...\r\n\r\nWe numerically simulate the effects of stochastic ion\r\nchannels on the forward and backward propagation of dendritic\r\nspikes in Monte-Carlo simulations on a reconstructed\r\nlayer 5 pyramidal neuron. \r\n\r\nWe report that in most instances\r\nthere is little variation in timing or amplitude for a single\r\nBPAP, while variable backpropagation can occur for trains\r\nof action potentials. \r\n\r\nAdditionally, we find that the generation\r\nand forward propagation of dendritic Ca2+ spikes are\r\nsusceptible to channel variability. This indicates limitations\r\non computations that depend on the precise timing of Ca2+\r\nspikes.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125385",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2014-07-30T17:28:52",
+ "ver_number": 9
+ },
+ "125529": {
+ "biosimulations": {
+ "value": "modeldb-125529"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Rubin JE, Shevtsova NA, Ermentrout GB, Smith JC, Rybak IA.\r\n\r\nJ Neurophysiol. 2009 Apr;101(4):2146-65."
+ },
+ "class_id": 19,
+ "created": "2010-01-06T15:57:07",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 125529,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125612,
+ "object_name": "Rubin, Jonathan E [jonrubin at pitt.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125530,
+ "object_name": "Rubin JE, Shevtsova NA, Ermentrout GB, Smith JC, Rybak IA (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Respiratory central pattern generator network in mammalian brainstem (Rubin et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 125611,
+ "object_name": "Respiratory column neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is a reduced version of a spatially organized respiratory central pattern generation network consisting of four neuronal populations (pre-I, early-I, post-I, and aug-E). In this reduction, each population is represented by a single neuron, in an activity-based framework (which includes the persistent sodium current for the pre-I population). The model includes three sources of external drive and can produce several experimentally observed rhythms."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125529",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "generic adapting current"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Brainstem neuron, Respiratory column neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rubin@math.pitt.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2010-01-07T14:49:01",
+ "ver_number": 7
+ },
+ "125649": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 125652,
+ "object_name": "NeuronetExperimenter demo file"
+ },
+ {
+ "object_id": 125653,
+ "object_name": "Neuronet Experimenter simulator file"
+ },
+ {
+ "object_id": 125654,
+ "object_name": "Ca2+ activated etc Rubin et al. 2009 XPP file"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2010-01-08T16:48:15",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 125649,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125612,
+ "object_name": "Rubin, Jonathan E [jonrubin at pitt.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125610,
+ "object_name": "Rubin JE, Hayes JA, Mendenhall JL, Del Negro CA (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ },
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ },
+ {
+ "object_id": 125650,
+ "object_name": "NeuronetExperimenter (web link to model)"
+ }
+ ]
+ },
+ "name": "Ca2+-activated I_CAN and synaptic depression promotes network-dependent oscil. (Rubin et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 232103,
+ "object_name": "PreBotzinger complex neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... the preBotzinger complex...\r\nwe present and analyze a\r\nmathematical model demonstrating an unconventional mechanism\r\nof rhythm generation in which glutamatergic synapses and the\r\nshort-term depression of excitatory transmission play key rhythmogenic\r\nroles. \r\n\r\nRecurrent synaptic excitation triggers postsynaptic Ca2+-\r\nactivated nonspecific cation current (ICAN) to initiate a network-wide\r\nburst. \r\n\r\nRobust depolarization due to ICAN also causes voltage-dependent\r\nspike inactivation, which diminishes recurrent excitation and\r\nthus attenuates postsynaptic Ca2+ accumulation. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125649",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ }
+ ]
+ },
+ "ver_date": "2017-09-13T17:34:14.057",
+ "ver_number": 8
+ },
+ "125676": {
+ "class_id": 19,
+ "created": "2010-01-11T11:39:13",
+ "gitrepo": false,
+ "id": 125676,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118895,
+ "object_name": "Matveev, Victor V. [m a t v e e v at n j i t . e d u ]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125655,
+ "object_name": "Matveev V, Bertram R, Sherman A (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118760,
+ "object_name": "CalC Calcium Calculator (web link to model)"
+ }
+ ]
+ },
+ "name": "Ca2+ current versus Ca2+ channel cooperativity of exocytosis (Matveev et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... While varying extracellular or intracellular Ca2+ concentration assesses the intrinsic biochemical Ca2+ cooperativity of \r\nneurotransmitter release, varying the number of open Ca2+ channels using pharmacological channel block or the tail current \r\ntitration probes the cooperativity between individual Ca2+ channels in triggering exocytosis. \r\n...\r\n\r\nHere we provide a detailed analysis of the Ca2+ sensitivity measures probed by these experimental\r\nprotocols, present simple expressions for special cases, and demonstrate the distinction between the Ca2+ current cooperativity, defined\r\nby the relationship between exocytosis rate and the whole-terminal Ca2+ current magnitude, and the underlying Ca2+ channel cooperativity,\r\ndefined as the average number of channels involved in the release of a single vesicle. \r\n...\r\nFurther, we use three-dimensional computational modeling of buffered Ca2+\r\ndiffusion to analyze these distinct Ca2+ cooperativity measures, and demonstrate the role of endogenous Ca2+ buffers on such measures.\r\n\r\nWe show that buffers can either increase or decrease the Ca2+ current cooperativity of exocytosis, depending on their concentration and\r\nthe single-channel Ca2+ current.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125676",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2010-01-11T13:33:32",
+ "ver_number": 2
+ },
+ "125683": {
+ "biosimulations": {
+ "value": "modeldb-125683"
+ },
+ "class_id": 19,
+ "created": "2010-01-15T14:02:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 125683,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 34559,
+ "object_name": "Komendantov, Alexander O [akomenda at tulane.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125682,
+ "object_name": "Komendantov AO, Kononenko NI (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Deterministic chaos in a mathematical model of a snail neuron (Komendantov and Kononenko 1996)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 125684,
+ "object_name": "Helix pacemaker bursting neuron (RPa1)"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Chaotic regimes in a mathematical model of pacemaker activity in the bursting neurons of a snail Helix pomatia, have been investigated.\r\n\r\nThe model includes a slow-wave generating mechanism, a spike-generating mechanism, an inward Ca current, intracellular Ca ions, [Ca2+]in, their fast buffering and uptake by intracellular Ca stores, and a [Ca2+]in-inhibited Ca current.\r\n\r\nChemosensitive voltage-activated conductance, gB*, responsible for termination of the spike burst, and chemosensitive sodium conductance, gNa*, responsible for the depolarization phase of the slow-wave, were used as control parameters.\r\n...\r\nTime courses of the membrane potential and [Ca2+]in were employed to analyse different regimes in the model. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125683",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 125736,
+ "object_name": "Helix pomatia (snail)"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249924,
+ "object_name": "Helix pomatia (snail)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:19:05.737",
+ "ver_number": 10
+ },
+ "125689": {
+ "class_id": 19,
+ "created": "2010-01-19T15:53:29",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 125689,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 122104,
+ "object_name": "Carvalho TP, Buonomano DV (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Balance of excitation and inhibition (Carvalho and Buonomano 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... \r\nHere, theoretical analyses reveal that excitatory synaptic\r\nstrength controls the threshold of the neuronal\r\ninput-output function, while inhibitory plasticity\r\nalters the threshold and gain.\r\n\r\nExperimentally, changes in the balance of excitation and inhibition\r\nin CA1 pyramidal neurons also altered their input-output\r\nfunction as predicted by the model.\r\n\r\nThese results support the existence of two functional\r\nmodes of plasticity that can be used to optimize\r\ninformation processing: threshold and gain plasticity.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125689",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181278,
+ "object_name": "125689"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 158
+ },
+ "ver_date": "2015-05-28T10:01:41.157",
+ "ver_number": 12
+ },
+ "125733": {
+ "class_id": 19,
+ "created": "2010-01-27T17:02:12",
+ "gitrepo": false,
+ "id": 125733,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126101,
+ "object_name": "Kim M, Huang T, Abel T, Blackwell KT (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Hippocampus CA1: Temporal sensitivity of signaling pathways underlying LTP (Kim et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Temporal sensitivity of signaling pathways underlying L-LTP. Single compartment, deterministic model of calcium and dopamine activated pathways, leading to CaMKII and PKA activation. Experimental verification of model prediction."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125733",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "ver_date": "2010-02-26T10:48:08",
+ "ver_number": 7
+ },
+ "125745": {
+ "citation": {
+ "attr_id": 391,
+ "value": "10866945"
+ },
+ "class_id": 19,
+ "created": "2010-02-02T10:11:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 125745,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ },
+ {
+ "object_id": 125786,
+ "object_name": "Fink, Charles C [cfink at uwm.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 150554,
+ "object_name": "Calcium waves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 44438,
+ "object_name": "Fink CC, Slepchenko B, Moraru II, Watras J, Schaff JC, Loew LM (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 55276,
+ "object_name": "Virtual Cell (web link to model)"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "125745",
+ "name": "ModelView"
+ }
+ ],
+ "default": "125745"
+ },
+ "name": "Calcium waves in neuroblastoma cells (Fink et al. 2000)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88207,
+ "object_name": "Neuroblastoma"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Uses a model of IP3-mediated release of Ca from endoplasmic reticulum (ER) to study how initiation and propagation of Ca waves are affected by cell geometry, spatial distributions of ER and IP3 generation, and diffusion of Ca and mobile buffer.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125745",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "too many to list here"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "SERCA Ca channels (add nothing to charge bal eqn)"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Fink, C.C."
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "Bradykinin, IP3"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "VirtualCell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181453,
+ "object_name": "125745"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 191
+ },
+ "ver_date": "2015-01-02T23:04:13",
+ "ver_number": 19
+ },
+ "125748": {
+ "class_id": 19,
+ "created": "2010-02-04T07:53:41",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 125748,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97968,
+ "object_name": "Giugliano, Michele [mgiugliano at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 261622,
+ "object_name": "Huntington's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128591,
+ "object_name": "Gambazzi L, Gokce O, Seredenina T, Katsyuba E, Runne H, Markram H, Giugliano M, Luthi-Carter R (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Huntington`s disease model (Gambazzi et al. 2010)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Although previous studies of Huntington\u2019s disease (HD) have addressed many potential mechanisms of striatal neuron dysfunction and death, it is also known based on clinical findings that cortical function is dramatically disrupted in HD. With respect to disease etiology, however, the specific molecular and neuronal circuit bases for the cortical effects of mutant huntingtin (htt) have remained largely unknown. \r\n\r\nIn the present work we studied the relation between the molecular effects of mutant htt fragments in cortical cells and the corresponding behavior of cortical neuron microcircuits using a novel cellular model of HD. We observed that a transcript-selective diminution in activity-dependent BDNF expression preceded the onset of a synaptic connectivity deficit in ex vivo cortical networks, which manifested as decreased spontaneous collective burst-firing behavior measured by multi-electrode array substrates. Decreased BDNF expression was determined to be a significant contributor to network-level dysfunction, as shown by the ability of exogenous BDNF to ameliorate cortical microcircuit burst firing. \r\n\r\nThe molecular determinants of the dysregulation of activity-dependent BDNF expression by mutant htt appear to be distinct from previously elucidated mechanisms, as they do not involve known NRSF/REST-regulated promoter sequences, but instead result from dysregulation of BDNF exon IV and VI transcription. These data elucidate a novel HD-related deficit in BDNF gene regulation as a plausible mechanism of cortical neuron hypoconnectivity and cortical function deficits in HD. Moreover, the novel model paradigm established here is well-suited to further mechanistic and drug screening research applications.\r\n\r\nA simple mathematical model is proposed to interpret the observations and to explore the impact of specific synaptic dysfunctions on network activity. Interestingly, the model predicts a decrease in synaptic connectivity to be an early effect of mutant huntingtin in cortical neurons, supporting the hypothesis of decreased, rather than increased, synchronized cortical firing in HD.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125748",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-01-22T11:56:31.757",
+ "ver_number": 10
+ },
+ "125855": {
+ "class_id": 19,
+ "created": "2010-02-12T19:31:09",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 125855,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125854,
+ "object_name": "Zilany MS, Bruce IC, Nelson PC, Carney LH (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Long-term adaptation with power-law dynamics (Zilany et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1965,
+ "object_name": "Cochlea hair outer GLU cell"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "...\r\nA model of rate adaptation at the synapse between inner hair cells and auditory-nerve\r\n(AN) fibers that includes both exponential and power-law dynamics is presented here.\r\n\r\nExponentially\r\nadapting components with rapid and short-term time constants, which are mainly responsible for\r\nshaping onset responses, are followed by two parallel paths with power-law adaptation that provide\r\nslowly and rapidly adapting responses.\r\n\r\n...\r\nThe proposed model is capable of accurately predicting several sets of AN data,\r\nincluding amplitude-modulation transfer functions, long-term adaptation, forward masking, and\r\nadaptation to increments and decrements in the amplitude of an ongoing stimulus."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125855",
+ "ver_date": "2018-10-18T15:37:21.457",
+ "ver_number": 8
+ },
+ "125857": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Lee, Jin (2007) \"Fast Rhythmic Bursting Cells: The Horizontal Fiber System in the Cat\u2019s Primary Visual Cortex,\" Penn McNair Research Journal: Vol. 1: Iss. 1, Article 1"
+ },
+ "class_id": 19,
+ "created": "2010-02-14T10:16:08",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88210,
+ "object_name": "I_Na,Ca"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 125857,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125862,
+ "object_name": "Lee, Jin [jin3 at sas.upenn.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125858,
+ "object_name": "Lee, J (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A Fast Rhythmic Bursting Cell: in vivo cell modeling (Lee 2007)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "One of the cellular mechanisms underlying the generation of gamma oscillations is a type of cortical pyramidal neuron named fast rhythmic bursting (FRB) cells. After cells from cats' primary visual cortices were filled with Neurobiotin, the brains were cut, and the cells were photographed. One FRB cell was chosen to be confocaled, reconstructed with Neurolucida software, and generated a detailed multi-compartmental model in the NEURON program. We explore firing properties of FRB cells and the role of enhanced Na+ conductance."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/125857",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lee, Jin "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Fast Rhythmic Bursting (Chattering) Cell"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "in vivo cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jin3@sas.upenn.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181178,
+ "object_name": "125857_frb_12_19"
+ },
+ {
+ "object_id": 181212,
+ "object_name": "125857_frb_12_21"
+ },
+ {
+ "object_id": 181297,
+ "object_name": "125857_2frb"
+ },
+ {
+ "object_id": 181658,
+ "object_name": "125857_frb3"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 140
+ },
+ "ver_date": "2018-10-17T16:52:33.817",
+ "ver_number": 8
+ },
+ "126052": {
+ "class_id": 19,
+ "created": "2010-02-22T17:31:50",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126052,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 36860,
+ "object_name": "Zhang, Xuedong "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 37111,
+ "object_name": "Heinz MG, Colburn HS, Carney LH (2001)"
+ },
+ {
+ "object_id": 125949,
+ "object_name": "Carney LH, Heinz MG, Evilsizer ME, Gilkey RH, Colburn HS (2002)"
+ },
+ {
+ "object_id": 126500,
+ "object_name": "Colburn HS, Carney LH, Heinz MG (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Integrate and fire model code for spike-based coincidence-detection (Heinz et al. 2001, others)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Model code relevant to three papers; two on level discrimination and one on masked detection at low frequencies."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126052",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-18T15:37:47.883",
+ "ver_number": 3
+ },
+ "126096": {
+ "class_id": 19,
+ "created": "2010-02-24T15:20:32",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126096,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126055,
+ "object_name": "Nelson PC, Carney LH (2004)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Model of neural responses to amplitude-modulated tones (Nelson and Carney 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A phenomenological model with time-varying excitation and inhibition was developed to study\r\npossible neural mechanisms underlying changes in the representation of temporal envelopes along\r\nthe auditory pathway. A modified version of an existing auditory-nerve model (Zhang et al., J.\r\nAcoust. Soc. Am. 109, 648\u2013670 (2001) was used to provide inputs to higher hypothetical\r\nprocessing centers. \r\n\r\nModel responses were compared directly to published physiological data at three\r\nlevels: the auditory nerve, ventral cochlear nucleus, and inferior colliculus.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126096",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144513,
+ "object_name": "Inferior Colliculus"
+ },
+ {
+ "object_id": 118308,
+ "object_name": "Superior colliculus"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T16:56:19.647",
+ "ver_number": 6
+ },
+ "126098": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 20169176"
+ },
+ "class_id": 19,
+ "created": "2010-02-25T21:52:01",
+ "gitrepo": false,
+ "id": 126098,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 126348,
+ "object_name": "Nakano, Takashi [nakano.takashi at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126100,
+ "object_name": "Nakano T, Doi T, Yoshimoto J, Doya K (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "A kinetic model of dopamine- and calcium-dependent striatal synaptic plasticity (Nakano et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A signaling pathway model of spines that express D1-type dopamine receptors was constructed to analyze the dynamic mechanisms of dopamine- and calcium-dependent plasticity. \r\n\r\nThe model incorporated all major signaling molecules, including dopamine- and cyclic AMP-regulated phosphoprotein with a molecular weight of 32 kDa (DARPP32), as well as AMPA receptor trafficking in the post-synaptic membrane. Simulations with dopamine and calcium inputs reproduced dopamine- and calcium-dependent plasticity. \r\n\r\nFurther in silico experiments revealed that the positive feedback loop consisted of protein kinase A (PKA), protein phosphatase 2A (PP2A), and the phosphorylation site at threonine 75 of DARPP-32 (Thr75) served as the major switch for inducing LTD and LTP. \r\n\r\nThe present model elucidated the mechanisms involved in bidirectional regulation of corticostriatal synapses and will allow for further exploration into causes and therapies for dysfunctions such as drug addiction.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126098",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Nakano, Takashi"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nakano.takashi@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2012-09-05T13:37:30",
+ "ver_number": 6
+ },
+ "126371": {
+ "class_id": 19,
+ "created": "2010-03-05T16:55:42",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126371,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 37130,
+ "object_name": "Tan, Qing "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126353,
+ "object_name": "Tan Q, Carney LH (2005)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Encoding and discrimination of vowel-like sounds (Tan and Carney 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The sensitivity of listeners to changes in the center frequency of vowel-like harmonic complexes as\r\na function of the center frequency of the complex cannot be explained by changes in the level of the\r\nstimulus [Lyzenga and Horst, J. Acoust. Soc. Am. 98, 1943\u20131955 (1995)]. \r\n\r\nRather, a complex pattern\r\nof sensitivity is seen; for a spectrum with a triangular envelope, the greatest sensitivity occurs when\r\nthe center frequency falls between harmonics, whereas for a spectrum with a trapezoidal envelope,\r\ngreatest sensitivity occurs when the center frequency is aligned with a harmonic.\r\n\r\nIn this study, the\r\nthresholds of a population model of auditory-nerve (AN) fibers were quantitatively compared to\r\nthese trends in psychophysical thresholds.\r\n\r\nSingle-fiber and population model responses were\r\nevaluated in terms of both average discharge rate and the combination of rate and timing\r\ninformation.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126371",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-18T16:56:44.61",
+ "ver_number": 2
+ },
+ "126389": {
+ "class_id": 19,
+ "created": "2010-03-05T17:56:08",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126389,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 126390,
+ "object_name": "Jackson, B. Scott [bsj22 at cornell.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126372,
+ "object_name": "Jackson BS, Carney LH (2005)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Auditory nerve spontaneous rate histograms (Jackson and Carney 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Histograms of spontaneous rate estimates of auditory nerve are well reproduced by models with two or three spontaneous rates and long range dependence."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126389",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-18T16:57:04.047",
+ "ver_number": 2
+ },
+ "126392": {
+ "class_id": 19,
+ "created": "2010-03-05T18:42:46",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126392,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 36860,
+ "object_name": "Zhang, Xuedong "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 78928,
+ "object_name": "Zhang X, Carney LH (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Response properties of an integrate and fire model (Zhang and Carney 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A computational technique is described for calculation of the interspike interval and poststimulus time histograms for the responses of an\r\nintegrate-and-fire model to arbitrary inputs.\r\n...\r\nFor stationary inputs, the regularity of the output was studied in detail for various model parameters.\r\n\r\nFor nonstationary inputs, the effects of the model parameters on the output synchronization index were explored.\r\n\r\n... these response properties have been reported for some cells in the ventral cochlear nucleus in the auditory brainstem.\r\n\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126392",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T16:57:36.783",
+ "ver_number": 5
+ },
+ "126465": {
+ "class_id": 19,
+ "created": "2010-03-18T12:31:10",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126465,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 231104,
+ "object_name": "Goodman, Dan F. M. "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136537,
+ "object_name": "Goodman DF, Brette R (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Spike-Timing-Based Computation in Sound Localization (Goodman and Brette 2010)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nIn neuron models consisting of spectro-temporal filtering and spiking\r\nnonlinearity, we found that the binaural structure induced by spatialized sounds is mapped to synchrony patterns that\r\ndepend on source location rather than on source signal. \r\n\r\nLocation-specific synchrony patterns would then result in the\r\nactivation of location-specific assemblies of postsynaptic neurons. \r\n\r\nWe designed a spiking neuron model which exploited\r\nthis principle to locate a variety of sound sources in a virtual acoustic environment using measured human head-related\r\ntransfer functions.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126465",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spatial hearing"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dan F. M. Goodman"
+ },
+ "ver_date": "2017-07-28T14:01:32.82",
+ "ver_number": 10
+ },
+ "126466": {
+ "class_id": 19,
+ "created": "2010-03-19T11:33:48",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126466,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124829,
+ "object_name": "Destexhe A (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 116010,
+ "object_name": "PyNN"
+ }
+ ]
+ },
+ "name": "Asynchronous irregular and up/down states in excitatory and inhibitory NNs (Destexhe 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Randomly-connected networks of integrate-and-fire (IF) neurons are known to display asynchronous irregular (AI) activity states, which resemble the discharge activity recorded in the cerebral cortex of awake animals. \r\n\r\n...\r\nHere, we investigate the occurrence of AI states in networks of nonlinear IF neurons, such as the adaptive exponential IF (Brette-Gerstner-Izhikevich) model. This model can display intrinsic properties such as low-threshold spike (LTS), regular spiking (RS) or fast-spiking (FS). We successively investigate the oscillatory and AI dynamics of thalamic, cortical and thalamocortical networks using such models.\r\n...\""
+ },
+ "opensourcebrain": {
+ "value": "destexhe_jcns_2009"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126466",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2016-08-18T11:55:28.277",
+ "ver_number": 12
+ },
+ "126467": {
+ "class_id": 19,
+ "created": "2010-03-19T17:20:53",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 126467,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97864,
+ "object_name": "Gannier, Francois [francois.gannier at univ-tours.fr]"
+ },
+ {
+ "object_id": 126468,
+ "object_name": "Malecot, Claire "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 63689,
+ "object_name": "Negroni JA, Lascano EC (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "126467",
+ "name": "ModelView"
+ }
+ ],
+ "default": "126467"
+ },
+ "name": "Cardiac sarcomere dynamics (Negroni and Lascano 1996)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A muscle model establishing the link between cross-bridge dynamics and intracellular Ca2+ kinetics was assessed by simulation of experiments performed in isolated cardiac muscle.\r\n\r\nThe model is composed by the series arrangement of muscle units formed by inextensible thick and thin filaments in parallel with an elastic element.\r\n\r\nAttached cross-bridges act as independent force generators whose force is linearly related to the elongation of their elastic structure.\r\n\r\nCa2+ kinetics is described by a four-state system of sites on the thin filament associated with troponin C: sites with free troponin C (T), sites with Ca2+ bound to troponin C (TCa); sites with Ca2+ bound to troponin C and attached cross-bridges (TCa*); and sites with troponin C not associated with Ca2+ and attached cross-bridges (T*).\r\n\r\nThe intracellular Ca2+ concentration ([Ca2+]) is controlled solely by the sarcoplasmic reticulum through an inflow function and a saturated outflow pump function.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126467",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181794,
+ "object_name": "126467"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 194
+ },
+ "ver_date": "2014-02-06T16:20:36",
+ "ver_number": 6
+ },
+ "126471": {
+ "class_id": 19,
+ "created": "2010-03-23T13:30:11",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126471,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 126472,
+ "object_name": "Miller, Aaron [aaron at phys.psu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 105527,
+ "object_name": "Jun JK, Jin DZ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Formation of synfire chains (Jun and Jin 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Temporally precise sequences of neuronal spikes that span hundreds of milliseconds are observed in many brain areas,\r\nincluding songbird premotor nucleus, cat visual cortex, and primary motor cortex.\r\n\r\nSynfire chains\u2014networks in which groups of\r\nneurons are connected via excitatory synapses into a unidirectional chain\u2014are thought to underlie the generation of such\r\nsequences. \r\n\r\nIt is unknown, however, how synfire chains can form in local neural circuits, especially for long chains. \r\n\r\nHere, we\r\nshow through computer simulation that long synfire chains can develop through spike-time dependent synaptic plasticity and\r\naxon remodeling\u2014the pruning of prolific weak connections that follows the emergence of a finite number of strong\r\nconnections. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126471",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-17T16:52:53.06",
+ "ver_number": 6
+ },
+ "126489": {
+ "class_id": 19,
+ "created": "2010-03-29T17:06:30",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126489,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 36860,
+ "object_name": "Zhang, Xuedong "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126477,
+ "object_name": "Zhang X, Carney LH (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Models analysis for auditory-nerve synapse (Zhang and Carney 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A general mathematical approach was proposed to study phenomenological models of the\r\ninner-hair-cell and auditory-nerve (AN) synapse complex. Two models (Meddis, 1986; Westerman\r\nand Smith, 1988) were studied using this unified approach. The responses of both models to a\r\nconstant-intensity stimulus were described mathematically, and the relationship between model\r\nparameters and response characteristics was investigated. ...\". The paper then modifies these\r\nto make a more physiologically realistic model.\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126489",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-18T16:57:55.67",
+ "ver_number": 8
+ },
+ "126598": {
+ "class_id": 19,
+ "created": "2010-03-30T11:13:26",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126598,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 37130,
+ "object_name": "Tan, Qing "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126583,
+ "object_name": "Tan Q, Carney LH (2006)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Predicting formant-frequency discrimination in noise (Tan and Carney 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"To better understand how the auditory system extracts speech signals in the presence of noise,\r\ndiscrimination thresholds for the second formant frequency were predicted with simulations of\r\nauditory-nerve responses.\r\n\r\nThese predictions employed either average-rate information or combined\r\nrate and timing information, and either populations of model fibers tuned across a wide range of\r\nfrequencies or a subset of fibers tuned to a restricted frequency range.\r\n\r\nIn general, combined temporal\r\nand rate information for a small population of model fibers tuned near the formant frequency was\r\nmost successful in replicating the trends reported in behavioral data for formant-frequency\r\ndiscrimination. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126598",
+ "ver_date": "2018-10-18T16:58:23.317",
+ "ver_number": 5
+ },
+ "126636": {
+ "class_id": 19,
+ "created": "2010-03-30T17:24:35",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126636,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126600,
+ "object_name": "Davidson SA, Gilkey RH, Colburn HS, Carney LH (2009)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Models for diotic and dichotic detection (Davidson et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Several psychophysical models for masked detection were evaluated using reproducible noises.\r\n\r\nThe data were hit and false-alarm rates from three psychophysical studies of detection of 500-Hz tones\r\nin reproducible noise under diotic (N0S0) and dichotic (N0Spi) conditions with four stimulus\r\nbandwidths (50, 100, 115, and 2900 Hz).\r\n\r\nDiotic data were best predicted by an energy-based multiple-detector model that linearly combined stimulus energies at the outputs of several\r\ncritical-band filters.\r\n\r\nThe tone-plus-noise trials in the dichotic data were best predicted by models that\r\nlinearly combined either the average values or the standard deviations of interaural time and level\r\ndifferences; however, these models offered no predictions for noise-alone responses.\r\n\r\n...\". The Breebart et al. 2001 and the Dau et al. 1996 models are supplied at the Carney lab web site."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126636",
+ "ver_date": "2018-10-18T16:58:46.337",
+ "ver_number": 6
+ },
+ "126637": {
+ "class_id": 19,
+ "created": "2010-04-01T23:39:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126637,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 126638,
+ "object_name": "Brown, Sherry-Ann [sabrown at student.uchc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 137675,
+ "object_name": "Brown SA, Moraru II, Schaff JC, Loew LM (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A simplified cerebellar Purkinje neuron (the PPR model) (Brown et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These models were implemented in NEURON by Sherry-Ann Brown in the laboratory of Leslie M. Loew.\r\n\r\nThe files reproduce Figures 2c-f from Brown et al, 2011 \"Virtual NEURON: a Strategy For Merged Biochemical and Electrophysiological Modeling\".\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126637",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "les@volt.uchc.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181147,
+ "object_name": "126637_2c"
+ },
+ {
+ "object_id": 181256,
+ "object_name": "126637_cvode"
+ },
+ {
+ "object_id": 181823,
+ "object_name": "126637_2d"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 143
+ },
+ "ver_date": "2023-01-30T09:32:12.367",
+ "ver_number": 15
+ },
+ "126640": {
+ "class_id": 19,
+ "created": "2010-04-16T04:27:20",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 126640,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 112854,
+ "object_name": "Addiction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126641,
+ "object_name": "Spiga S, Lintas A, Migliore M, Diana M (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "126640",
+ "name": "ModelView"
+ }
+ ],
+ "default": "126640"
+ },
+ "name": "NAcc medium spiny neuron: effects of cannabinoid withdrawal (Spiga et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112837,
+ "object_name": "Nucleus accumbens spiny projection neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Cannabinoid withdrawal produces a hypofunction of dopaminergic neurons targeting medium spiny neurons (MSN) of the forebrain. Administration of a CB1 receptor antagonist to control rats provoked structural abnormalities, reminiscent of those observed in withdrawal conditions and support the regulatory role of cannabinoids in neurogenesis, axonal growth and synaptogenesis. Experimental observations were incorporated into a realistic computational model which predicts a strong reduction in the excitability of morphologically-altered MSN, yielding a significant reduction in action potential output. These paper provided direct morphological evidence for functional abnormalities associated with cannabinoid dependence at the level of dopaminergic neurons and their post synaptic counterpart, supporting a hypodopaminergic state as a distinctive feature of the \u201caddicted brain\u201d."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126640",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181455,
+ "object_name": "126640"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 290
+ },
+ "ver_date": "2014-02-25T01:01:34",
+ "ver_number": 10
+ },
+ "126776": {
+ "class_id": 19,
+ "created": "2010-04-17T03:35:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126776,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126777,
+ "object_name": "Ascoli GA, Gasparini S, Medinilla V, Migliore M (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "126776_1",
+ "name": "control"
+ },
+ {
+ "id": "126776_2",
+ "name": "4-AP"
+ },
+ {
+ "id": "126776_3",
+ "name": "4-AP+ZD"
+ }
+ ],
+ "default": "126776_1"
+ },
+ "name": "CA1 pyramidal neuron: rebound spiking (Ascoli et al.2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model demonstrates that CA1 pyramidal neurons support rebound spikes mediated by hyperpolarization-activated inward current (Ih), and normally masked by A-type potassium channels (KA). Partial KA reduction confined to one or few branches of the apical tuft may be sufficient to elicit a local spike following a train of synaptic inhibition. These data suggest that the plastic regulation of KA can provide a dynamic switch to unmask post-inhibitory spiking in CA1 pyramidal neurons, further increasing the signal processing power of the CA1 synaptic microcircuitry."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126776",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181812,
+ "object_name": "126776_2"
+ },
+ {
+ "object_id": 181813,
+ "object_name": "126776_3"
+ },
+ {
+ "object_id": 181814,
+ "object_name": "126776_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 177
+ },
+ "ver_date": "2015-01-02T22:01:01",
+ "ver_number": 6
+ },
+ "126814": {
+ "class_id": 19,
+ "created": "2010-04-19T11:23:45",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126814,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126815,
+ "object_name": "Safiulina VF, Caiati MD, Sivakumaran S, Bisson G, Migliore M, Cherubini E (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "126814",
+ "name": "ModelView"
+ }
+ ],
+ "default": "126814"
+ },
+ "name": "CA3 pyramidal neuron (Safiulina et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this review some of the recent work carried out in our laboratory concerning the functional\r\nrole of GABAergic signalling at immature mossy fibres (MF)-CA3 principal cell synapses has\r\nbeen highlighted. To compare the relative strength of CA3 pyramidal cell\r\noutput in relation to their MF glutamatergic or GABAergic inputs in postnatal\r\ndevelopment, a realistic model was constructed taking into account the different\r\nbiophysical properties of these synapses.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126814",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181606,
+ "object_name": "126814"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 183
+ },
+ "ver_date": "2015-01-02T23:16:24",
+ "ver_number": 17
+ },
+ "126899": {
+ "citation": {
+ "attr_id": 391,
+ "value": "12783953"
+ },
+ "class_id": 19,
+ "created": "2010-04-21T05:11:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 126899,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 37966,
+ "object_name": "Rothman JS, Manis PB (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CN bushy, stellate neurons (Rothman, Manis 2003) (Brian)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 273,
+ "object_name": "Cochlear nucleus bushy GLU cell"
+ },
+ {
+ "object_id": 88113,
+ "object_name": "CN stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Cochlear neuron model of Rothman & Manis (2003). Adapted from the Neuron implementation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/126899",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "romain.brette@ens.fr"
+ },
+ "ver_date": "2017-07-28T13:50:02.073",
+ "ver_number": 4
+ },
+ "127021": {
+ "class_id": 19,
+ "created": "2010-05-06T22:33:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 127021,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156119,
+ "object_name": "Simoes-de-Souza, Fabio [fabio.souza at ufabc.edu.br]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ },
+ {
+ "object_id": 242863,
+ "object_name": "Alcohol Use Disorder"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127734,
+ "object_name": "Botta P, de Souza FM, Sangrey T, De Schutter E, Valenzuela CF (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120694,
+ "object_name": "Electrogenic pump"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Alcohol excites Cerebellar Golgi Cells by inhibiting the Na+/K+ ATPase (Botta et al.2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Patch-clamp in cerebellar slices and computer modeling show that ethanol excites Golgi cells by inhibiting the Na+/K+ ATPase. In particular, voltage-clamp recordings of Na+/K+ ATPase currents indicated that ethanol partially inhibits this pump and this effect could be mimicked by low concentrations of the Na+/K+ ATPase blocker ouabain. The partial inhibition of Na+/K+ ATPase in a computer model of the Golgi cell reproduced these experimental findings that established a novel mechanism of action of ethanol on neural excitability."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127021",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 152
+ },
+ "ver_date": "2022-11-04T13:15:51.427",
+ "ver_number": 26
+ },
+ "127022": {
+ "citation": {
+ "attr_id": 391,
+ "value": "O. Harish and D. Golomb, Control of the firing patterns of vibrissa motoneurons by modulatory and phasic synaptic inputs: a modeling study. J. Neurophysiol. 103: 2684 \u20132699, 2010."
+ },
+ "class_id": 19,
+ "created": "2010-05-12T04:18:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 127022,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57906,
+ "object_name": "Golomb, David [golomb at bgu.ac.il]"
+ },
+ {
+ "object_id": 127023,
+ "object_name": "Harish, Omri [omriharish at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 127084,
+ "object_name": "Locking, mixed mode"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127026,
+ "object_name": "Harish O, Golomb D (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Control of vibrissa motoneuron firing (Harish and Golomb 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 127024,
+ "object_name": "Vibrissa motoneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We construct and analyze a single-compartment, conductance-based model of vibrissa motoneurons. Low firing rates are supported in extended regimes by adaptation currents and the minimal firing rate decreases with the persistent sodium conductance gNaP and increases with M-potassium \r\nand h-cation conductances. Suprathreshold resonance results from the locking properties of vMN firing to stimuli and from reduction of firing rates at low frequencies by slow M and afterhyperpolarization potassium conductances. h conductance only slightly affects the suprathreshold resonance. When a vMN is subjected to a small periodic CPG input, serotonergically induced gNaP elevation may transfer the system from quiescence to a firing state that is highly\r\nlocked to the CPG input.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127022",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Locking, mixed-mode"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I_Na, I_NaP, I_Kdr, I_AHP, I_M, I_h"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Harish, Omri "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Vibrissa motoneuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "golomb@bgu.ac.il"
+ },
+ "ver_date": "2010-05-13T07:14:35",
+ "ver_number": 6
+ },
+ "127190": {
+ "class_id": 19,
+ "created": "2010-05-25T14:55:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 127190,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97968,
+ "object_name": "Giugliano, Michele [mgiugliano at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141060,
+ "object_name": "Moroni M, Biro I, Giugliano M, Vijayan R, Biggin PC, Beato M, Sivilotti LG (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Pipette and membrane patch geometry effects on GABAa currents patch-clamp exps (Moroni et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Ion currents, mediated by GABAa-receptors in outside-out membrane patches, may alter the concentration of Chloride ions inside the pipette and the membrane patch.\r\n\r\nGABAa-receptors are in fact ionotropic synaptic receptors, selective to Chloride ions. Therefore, chloride fluxes across the membrane patch correlate to GABAa-receptor opening.\r\n\r\nChloride ions accumulation, depletion and diffusion, inside the pipette and the membrane patch, affect by definition the Chloride equilibrium (i.e. Nernst) electrical potential. This in turn changes the ionic driving force underlying GABAa-mediated currents.\r\n\r\nIt follows that, in case of very small volumes and confined geometries, voltage-clamp recordings of GABAa-receptor currents carry information on both i) Chloride diffusion and ii) receptor kinetics.\r\n\r\nThe relevance of (i) and (ii) have been studied numerically by defining a 1-dimensional biophysical model, released here to the interested user."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127190",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ion diffusion"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Pipette and patch"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2011-10-07T15:48:08",
+ "ver_number": 17
+ },
+ "127192": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Optimal hierarchical modular topologies for producing limited sustained activation of neural networks. Marcus Kaiser and Claus C. Hilgetag. Frontiers in Neuroinformatics vol. 4 article 8, May 2010. doi: 10.3389/fninf.2010.00008"
+ },
+ "class_id": 19,
+ "created": "2010-05-27T11:38:15",
+ "gitrepo": false,
+ "id": 127192,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127200,
+ "object_name": "Kaiser M, Hilgetag CC (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Network topologies for producing limited sustained activation (Kaiser and Hilgetag 2010)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Uses networks of cellular automata to test hypotheses about network topologies that can produce limited, sustained activity. Inspired by empirically-based ideas about neocortical architecture, but conceived and implemented at a level of abstraction that is not closely linked to empirical observations."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127192",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Marcus Kaiser, Claus C. Hilgetag"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Artificial neuron (cellular automata)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2010-05-27T16:25:26",
+ "ver_number": 7
+ },
+ "127305": {
+ "class_id": 19,
+ "created": "2010-06-09T10:10:12",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 127305,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127301,
+ "object_name": "Hao J, Wang XD, Dan Y, Poo MM, Zhang XH (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Spatial summation of excitatory and inhibitory inputs in pyramidal neurons (Hao et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Based on realistic modeling and experiments in rat hippocampal\r\nslices, we derived a simple arithmetic rule for spatial summation\r\nof concurrent excitatory glutamatergic inputs (E) and inhibitory\r\nGABAergic inputs (I). \r\n\r\nThe somatic response can be well approximated\r\nas the sum of the excitatory postsynaptic potential (EPSP), the inhibitory\r\npostsynaptic potential (IPSP), and a nonlinear term proportional\r\nto their product (k*EPSP*IPSP), where the coefficient k reflects the\r\nstrength of shunting effect.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127305",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2010-06-09T10:59:38",
+ "ver_number": 4
+ },
+ "127321": {
+ "citation": {
+ "attr_id": 391,
+ "value": "20529297"
+ },
+ "class_id": 19,
+ "created": "2010-06-11T10:22:39",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 127321,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 127720,
+ "object_name": "Breitling, Rainer"
+ },
+ {
+ "object_id": 127721,
+ "object_name": "Zhang, Mi [mi.zhang at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127323,
+ "object_name": "Zhang M, Schafer WR, Breitling R (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 127324,
+ "object_name": "R (web link to model)"
+ }
+ ]
+ },
+ "name": "A model of the temporal pattern generator of C. elegans egg-laying behavior (Zhang et. al 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 127712,
+ "object_name": "C elegans Hermaphrodite-Specific neuron (HSN)"
+ },
+ {
+ "object_id": 127713,
+ "object_name": "C elegans VC motor neuron"
+ },
+ {
+ "object_id": 127714,
+ "object_name": "C elegans uterine-vulval cell (uv1)"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We suggest that the HSN neuron is the executive neuron driving egg-laying events. We propose that the VC neurons act as \"single egg counters\" that inhibit HSN activity for short periods in response to individual egg-laying events. We further propose that the uv1 neuroendocrine cells are \"cluster counters\", which inhibit HSN activity for longer periods and are responsible for the time constant of the inactive phase. Together they form an integrated circuit that drives the clustered egg-laying pattern. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127321",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 127711,
+ "object_name": "Egg-laying circuit"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 127710,
+ "object_name": "C. elegans"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:16:42.307",
+ "ver_number": 5
+ },
+ "127351": {
+ "class_id": 19,
+ "created": "2010-06-14T14:10:16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 127351,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124176,
+ "object_name": "Katz Y, Menon V, Nicholson DA, Geinisman Y, Kath WL, Spruston N (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "A two-stage model of dendritic integration in CA1 pyramidal neurons (Katz et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In a two-stage integration model, inputs contribute directly to dendritic spikes, and outputs from multiple branches sum in the axon. ... We used serial-section electron microscopy to reconstruct individual apical oblique dendritic branches of CA1 pyramidal neurons and observe a synapse distribution consistent with the two-stage integration model. Computational modeling suggests that the observed synapse distribution enhances the contribution of each dendritic branch to neuronal output.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127351",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2012-09-05T15:57:07",
+ "ver_number": 7
+ },
+ "127355": {
+ "biosimulations": {
+ "value": "modeldb-127355"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Brown AM. A modeling study predicts the presence of voltage gated Ca(2+) channels on myelinated central axons. Comput Meth Prog Biomed 2003;71:25-31."
+ },
+ "class_id": 19,
+ "created": "2010-06-17T15:04:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 127355,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127356,
+ "object_name": "Brown AM (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Prediction for the presence of voltage-gated Ca2+ channels in myelinated central axons (Brown 2003)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The objective of this current study was to investigate whether voltage gated Ca(2+) channels are present \r\non axons of the adult rat optic nerve (RON).\r\n\r\nSimulations of axonal excitability using a Hodgkin-Huxley based \r\none-compartment model incorporating I(Na), I(K) and leak currents were used to predict conditions under \r\nwhich the potential contribution of a Ca(2+) current to an evoked action potential could be measured. \r\n\r\n... , as predicted by the simulation, reducing the repolarizing effect of I(K) by adding the \r\nK(+) channel blocker 4-AP revealed a Ca(2+) component on the repolarizing phase of the action potential that \r\nwas blocked by the Ca(2+) channel inhibitor nifedipine.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127355",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "myelinated central axon"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wshengnan@vcu.edu"
+ },
+ "ver_date": "2010-06-18T11:19:14",
+ "ver_number": 4
+ },
+ "127388": {
+ "class_id": 19,
+ "created": "2010-06-23T10:22:27",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 127388,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 127443,
+ "object_name": "Hahn, Philip [hahnp at ccf.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127389,
+ "object_name": "Hahn PJ, McIntyre CC (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Basal ganglia network model of subthalamic deep brain stimulation (Hahn and McIntyre 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Basal ganglia network model of parkinsonian activity and subthalamic deep brain stimulation in non-human primates from the article \r\n\r\nInstructions are provided in the README.txt file. Contact hahnp@ccf.org if you have any questions about the implementation of the model. Please include \"ModelDB - BGnet\" in the subject heading."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127388",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hahn, Philip"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181203,
+ "object_name": "127388"
+ }
+ ]
+ },
+ "ver_date": "2014-01-21T11:53:52",
+ "ver_number": 7
+ },
+ "127507": {
+ "class_id": 19,
+ "created": "2010-07-01T18:00:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 127507,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 127650,
+ "object_name": "Huertas, Marco [huertas.marco at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 126464,
+ "object_name": "Kuznetsova AY, Huertas MA, Kuznetsov AS, Paladini CA, Canavier CC (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "127507_1",
+ "name": "Fig. 2a2"
+ },
+ {
+ "id": "127507_2",
+ "name": "Fig. 2b2"
+ },
+ {
+ "id": "127507_3",
+ "name": "Fig. 2f2"
+ },
+ {
+ "id": "127507_4",
+ "name": "Fig. 6a solid"
+ },
+ {
+ "id": "127507_5",
+ "name": "Fig. 6a dashed"
+ }
+ ],
+ "default": "127507_1"
+ },
+ "name": "Regulation of firing frequency in a midbrain dopaminergic neuron model (Kuznetsova et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A dopaminergic (DA) neuron model with a morphologicaly realistic dendritic architecture. The model captures several salient features of DA neurons under different pharmacological manipulations and exhibits depolarization block for sufficiently high current pulses applied to the soma."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127507",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181424,
+ "object_name": "127507_5"
+ },
+ {
+ "object_id": 181425,
+ "object_name": "127507_4"
+ },
+ {
+ "object_id": 181426,
+ "object_name": "127507_3"
+ },
+ {
+ "object_id": 181427,
+ "object_name": "127507_2"
+ },
+ {
+ "object_id": 181428,
+ "object_name": "127507_1"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 323
+ },
+ "ver_date": "2015-01-02T22:40:06",
+ "ver_number": 7
+ },
+ "127512": {
+ "class_id": 19,
+ "created": "2010-07-02T09:42:12",
+ "gitrepo": false,
+ "id": 127512,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57906,
+ "object_name": "Golomb, David [golomb at bgu.ac.il]"
+ },
+ {
+ "object_id": 127513,
+ "object_name": "Simony, Erez [erez.simony at weizmann.ac.il]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127511,
+ "object_name": "Simony E, Bagdasarian K, Herfst L, Brecht M, Ahissar E, Golomb D (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 127515,
+ "object_name": "Muscle model and vibrissa biomechanics"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Temporal and spatial characteristics of vibrissa responses to motor commands (Simony et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 127024,
+ "object_name": "Vibrissa motoneuron"
+ },
+ {
+ "object_id": 127514,
+ "object_name": "Vibrissa motor plant"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A mechanistic description of the generation of whisker movements is essential for understanding the control of whisking and vibrissal\r\nactive touch. We explore how facial-motoneuron spikes are translated, via an intrinsic muscle, to whisker movements. This is achieved by\r\nconstructing, simulating, and analyzing a computational, biomechanical model of the motor plant, and by measuring spiking to movement\r\ntransformations at small and large angles using high-precision whisker tracking in vivo. \r\n...\r\nThe model provides a direct translation from motoneuron spikes to whisker movements\r\nand can serve as a building block in closed-loop motor\u2013sensory models of active touch.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127512",
+ "ver_date": "2010-07-05T13:46:14",
+ "ver_number": 9
+ },
+ "127728": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hendrickson, E.B., Edgerton, J.R., & Jaeger, D. (2010) The capabilities and limitations of conductance-based compartmental neuron models with reduced branched or unbranched morphologies and active dendrites. In Press at J. Comp. Neurosci."
+ },
+ "class_id": 19,
+ "created": "2010-07-15T18:52:39",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 127728,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 127731,
+ "object_name": "Hendrickson, Eric B [eric.b.hendrickson at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127729,
+ "object_name": "Hendrickson EB, Edgerton JR, Jaeger D (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Comparison of full and reduced globus pallidus models (Hendrickson 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper, we studied what features of realistic full model activity patterns can and cannot be preserved by morphologically reduced models. To this end, we reduced the morphological complexity of a full globus pallidus neuron model possessing active dendrites and compared its spontaneous and driven responses to those of the reduced models."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127728",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hendrickson, Eric B "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "eric.b.hendrickson@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2010-07-19T10:27:10",
+ "ver_number": 3
+ },
+ "127878": {
+ "class_id": 19,
+ "created": "2010-07-20T14:58:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 127878,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 127879,
+ "object_name": "Goldman, Mark [msgoldman at ucdavis.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 137847,
+ "object_name": "Phase Response Curves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 24618,
+ "object_name": "Goldman MS, Golowasch J, Marder E, Abbott LF (2001)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Global structure, robustness, and modulation of neuronal models (Goldman et al. 2001)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The electrical characteristics of many neurons are remarkably\r\nrobust in the face of changing internal and external conditions.\r\n\r\nAt the same time, neurons can be highly sensitive to neuromodulators.\r\n\r\nWe find correlates of this dual robustness and\r\nsensitivity in a global analysis of the structure of a\r\nconductance-based model neuron.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127878",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "ver_date": "2014-07-18T15:50:02",
+ "ver_number": 7
+ },
+ "127887": {
+ "citation": {
+ "attr_id": 391,
+ "value": "doi:10.1162/neco.2010.09-09-1097"
+ },
+ "class_id": 19,
+ "created": "2010-07-23T19:15:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 127887,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 127889,
+ "object_name": "Omurtag, Ahmet [aomurtag at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127888,
+ "object_name": "Omurtag A, Lytton WW (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spectral method and high-order finite differences for nonlinear cable (Omurtag and Lytton 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We use high-order approximation schemes for the space derivatives in the nonlinear cable equation and investigate the behavior of numerical solution errors by using exact solutions, where available, and grid convergence. The space derivatives are numerically approximated by means of differentiation matrices. A flexible form for the injected current is used that can be adjusted smoothly from a very broad to a narrow peak, which leads, for the passive cable, to a simple, exact solution. We provide comparisons with exact solutions in an unbranched passive cable, the convergence of solutions with progressive refinement of the grid in an active cable, and the simulation of spike initiation in a biophysically realistic single-neuron model.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127887",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Omurtag, Ahmet"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Rat layer 5 pyramidal neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "aomurtag@gmail.com"
+ },
+ "ver_date": "2013-12-17T16:13:43",
+ "ver_number": 6
+ },
+ "127967": {
+ "class_id": 19,
+ "created": "2010-07-30T16:07:28",
+ "gitrepo": false,
+ "id": 127967,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127944,
+ "object_name": "Sussillo D, Abbott LF (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Generating coherent patterns of activity from chaotic neural networks (Sussillo and Abbott 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neural circuits display complex activity patterns both\r\nspontaneously and when responding to a stimulus or\r\ngenerating a motor output.\r\n\r\nHow are these two forms\r\nof activity related? \r\n\r\nWe develop a procedure called\r\nFORCE learning for modifying synaptic strengths\r\neither external to or within a model neural network\r\nto change chaotic spontaneous activity into a wide\r\nvariety of desired activity patterns.\r\n...\r\n Our results\r\nreproduce data on premovement activity in motor\r\nand premotor cortex, and suggest that synaptic plasticity\r\nmay be a more rapid and powerful modulator of\r\nnetwork activity than generally appreciated.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127967",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-10-26T11:07:39.377",
+ "ver_number": 4
+ },
+ "127992": {
+ "class_id": 19,
+ "created": "2010-08-11T15:29:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 127992,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128378,
+ "object_name": "Linaro, Daniele [daniele.linaro at unige.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136712,
+ "object_name": "Linaro D, Storace M, Giugliano M (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Accurate and fast simulation of channel noise in conductance-based model neurons (Linaro et al 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We introduce and operatively present a general method to simulate channel noise in conductance-based model neurons, with modest computational overheads.\r\n\r\nOur approach may be considered as an accurate generalization of previous proposal methods,\r\nto the case of voltage-, ion-, and ligand-gated channels with arbitrary complexity.\r\n\r\nWe focus on the discrete Markov process descriptions, routinely employed in experimental\r\nidentification of voltage-gated channels and synaptic receptors."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127992",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Linaro, Daniele"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181493,
+ "object_name": "127992"
+ }
+ ]
+ },
+ "ver_date": "2018-02-26T11:22:10.253",
+ "ver_number": 18
+ },
+ "127995": {
+ "class_id": 19,
+ "created": "2010-08-13T15:15:33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 127995,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128379,
+ "object_name": "Migliore M, Hines ML, McTavish TS, Shepherd GM (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "127995",
+ "name": "ModelView"
+ }
+ ],
+ "default": "127995"
+ },
+ "name": "Olfactory bulb cluster formation (Migliore et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Functional roles of distributed synaptic clusters in the mitral-granule cell network of the olfactory bulb."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127995",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.hines@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181490,
+ "object_name": "127995"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 309
+ },
+ "ver_date": "2018-10-17T16:07:16.643",
+ "ver_number": 8
+ },
+ "127996": {
+ "citation": {
+ "attr_id": 391,
+ "value": "20696381"
+ },
+ "class_id": 19,
+ "created": "2010-08-16T12:04:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 127996,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128040,
+ "object_name": "Gleeson, Padraig [p.gleeson at ucl.ac.uk]"
+ },
+ {
+ "object_id": 128041,
+ "object_name": "Vervaeke, Koen [k.vervaeke at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127999,
+ "object_name": "Vervaeke K, Lorincz A, Gleeson P, Farinella M, Nusser Z, Silver RA (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 116943,
+ "object_name": "neuroConstruct (web link to model)"
+ },
+ {
+ "object_id": 154350,
+ "object_name": "NeuroML (web link to model)"
+ }
+ ]
+ },
+ "name": "Rapid desynchronization of an electrically coupled Golgi cell network (Vervaeke et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Electrical synapses between interneurons contribute to synchronized firing and network oscillations in the brain. However, little is known about how such networks respond to excitatory synaptic input. In addition to detailed electrophysiological recordings and histological investigations of electrically coupled Golgi cells in the cerebellum, a detailed network model of these cells was created. The cell models are based on reconstructed Golgi cell morphologies and the active conductances are taken from an earlier abstract Golgi cell model (Solinas et al 2007, accession no. 112685). Our results show that gap junction coupling can sometimes be inhibitory and either promote network synchronization or trigger rapid network desynchronization depending on the synaptic input. The model is available as a neuroConstruct project and can executable scripts can be generated for the NEURON simulator."
+ },
+ "opensourcebrain": {
+ "value": "vervaekeetalgolgicellnetwork"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/127996",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Electrical Synapse"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Vervaeke, Koen \r\nGleeson, Padraig \r\n"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "p.gleeson@ucl.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T12:05:27",
+ "ver_number": 5
+ },
+ "128043": {
+ "class_id": 19,
+ "created": "2010-08-18T15:13:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 128043,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128044,
+ "object_name": "Cannon RC, O'Donnell C, Nolan MF (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 128066,
+ "object_name": "PSICS"
+ }
+ ]
+ },
+ "name": "Stochastic ion channels and neuronal morphology (Cannon et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We introduce and\r\nvalidate new computational tools that enable efficient generation and simulation of models containing stochastic ion\r\nchannels distributed across dendritic and axonal membranes.\r\n\r\nComparison of five morphologically distinct neuronal cell\r\ntypes reveals that when all simulated neurons contain identical densities of stochastic ion channels, the amplitude of\r\nstochastic membrane potential fluctuations differs between cell types and depends on sub-cellular location.\r\n\r\n...\" The code is downloadable and more information is available at http://www.psics.org/ "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128043",
+ "ver_date": "2010-09-17T14:12:09",
+ "ver_number": 8
+ },
+ "128068": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Zrenner, C., Eytan, D., Wallach, A., Thier H.-P., Marom, S. (2010) A generic framework for real-time multi-channel neuronal signal analysis, telemetry control and sub-millisecond latency feedback generation. Front. Neurosci."
+ },
+ "class_id": 19,
+ "created": "2010-08-22T05:16:16",
+ "gitrepo": false,
+ "id": 128068,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128073,
+ "object_name": "Zrenner, Christoph [christoph.zrenner at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128069,
+ "object_name": "Zrenner CD, Eytan D, Wallach A, Thier HP, Marom S (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Generic Bi-directional Real-time Neural Interface (Zrenner et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 128077,
+ "object_name": "Neocortex dissociated cultured nerve cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Matlab/Simulink toolkit for generic multi-channel short-latency bi-directional neural-computer interactions. High-bandwidth (> 10 megabit per second) neural recording data can be analyzed in real-time while simultaneously generating specific complex electrical stimulation feedback with deterministically timed responses at sub-millisecond resolution. The commercially available 60-channel extracellular multi-electrode recording and stimulation set-up (Multichannelsystems GmbH MEA60) is used as an example hardware implementation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128068",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zrenner, Christoph "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "cortical culture"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "christoph.zrenner@gmail.com"
+ },
+ "ver_date": "2015-07-26T14:09:20.977",
+ "ver_number": 6
+ },
+ "128079": {
+ "class_id": 19,
+ "created": "2010-08-23T11:44:54",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 128079,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127920,
+ "object_name": "Schmidt-Hieber C, Bischofberger J (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Fast sodium channel gating in mossy fiber axons (Schmidt-Hieber et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... To study the mechanisms underlying AP initiation in unmyelinated hippocampal mossy fibers of adult mice, we recorded sodium currents in axonal and somatic membrane patches. \r\n\r\nWe demonstrate that sodium channel density in the proximal axon is ~5 times higher than in the soma. \r\n\r\nFurthermore, sodium channel activation and inactivation are ~2 times faster. \r\n\r\nModeling revealed that the fast activation localized the initiation site to the proximal axon even upon strong synaptic stimulation, while fast inactivation contributed to energy-efficient membrane charging during APs. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128079",
+ "ver_date": "2015-09-24T12:58:23.817",
+ "ver_number": 14
+ },
+ "128446": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 16207782"
+ },
+ "class_id": 19,
+ "created": "2010-09-09T08:30:46",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 128446,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128447,
+ "object_name": "Nieus, Thierry [thierry.nieus at iit.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 80157,
+ "object_name": "Nieus T, Sola E, Mapelli J, Saftenku E, Rossi P, D'Angelo E (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "128446",
+ "name": "Init & Run"
+ }
+ ],
+ "default": "128446"
+ },
+ "name": "Short term plasticity at the cerebellar granule cell (Nieus et al. 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model reproduces short term plasticity of the mossy fibre to granule cell synapse. To reproduce synaptic currents recorded in experiments, a model of presynaptic release was used to determine the concentration of glutamate in the synaptic cleft that ultimately determined a synaptic response. The parameters of facilitation and depression were determined deconvolving AMPA EPSCs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128446",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Nieus Thierry"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "thierry.nieus@iit.it"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181863,
+ "object_name": "128446"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 336
+ },
+ "ver_date": "2014-02-25T01:07:49",
+ "ver_number": 6
+ },
+ "128449": {
+ "class_id": 19,
+ "created": "2010-09-10T18:19:54",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 128449,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33804,
+ "object_name": "Gabbiani, F"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128498,
+ "object_name": "Gabbiani F, Krapp HG (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Leaky integrate-and-fire model of spike frequency adaptation in the LGMD (Gabbiani and Krapp 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116948,
+ "object_name": "Locust Lobula Giant Movement Detector (LGMD) neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This will reproduce Figure 9 of Gabbiani and Krapp (2006) J Neurophysiol 96:2951-2962.\r\n\r\nThe figure simply shows that a leaky-integrate-and-fire model cannot reproduce spike frequency adaptation as it is seen experimentally in \r\nthe LGMD neuron.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128449",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "LGMD"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gabbiani@bcm.edu"
+ },
+ "ver_date": "2014-05-21T11:15:01",
+ "ver_number": 6
+ },
+ "128502": {
+ "class_id": 19,
+ "created": "2010-09-13T13:02:32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 128502,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128503,
+ "object_name": "Goldwyn, Joshua [jhgoldwyn at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128771,
+ "object_name": "Goldwyn JH, Imennov NS, Famulare M, Shea-Brown E (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "On stochastic diff. eq. models for ion channel noise in Hodgkin-Huxley neurons (Goldwyn et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We analyze three SDE models that have been proposed as approximations to the Markov chain model: one that describes the states of the ion channels and two that describe the states of the ion channel subunits. We show that the former channel-based approach can capture the distribution of channel noise and its effect on spiking in a Hodgkin-Huxley neuron model to a degree not previously demonstrated, but the latter two subunit-based approaches cannot. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128502",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Goldwyn, Joshua "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jgoldwyn@uw.edu"
+ },
+ "ver_date": "2010-09-23T11:25:42",
+ "ver_number": 13
+ },
+ "128559": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 136805,
+ "object_name": "Initial version"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2010-09-17T15:36:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 128559,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128507,
+ "object_name": "Aguiar P, Sousa M, Lima D (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "128559",
+ "name": "ModelView"
+ }
+ ],
+ "default": "128559"
+ },
+ "name": "Mathematical model for windup (Aguiar et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 128565,
+ "object_name": "Wide dynamic range neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Windup is characterized as a frequency-dependent\r\nincrease in the number of evoked action potentials in dorsal\r\nhorn neurons in response to electrical stimulation of afferent C-fibers.\r\n... \r\nThe approach presented here relies on mathematical and\r\ncomputational analysis to study the mechanism(s) underlying windup.\r\n\r\nFrom experimentally obtained windup profiles, we extract the time\r\nscale of the facilitation mechanisms that may support the characteristics\r\nof windup.\r\n\r\nGuided by these values and using simulations of a\r\nbiologically realistic compartmental model of a wide dynamic range\r\n(WDR) neuron, we are able to assess the contribution of each\r\nmechanism for the generation of action potentials windup.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128559",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181241,
+ "object_name": "128559"
+ }
+ ]
+ },
+ "ver_date": "2014-02-20T17:11:23",
+ "ver_number": 11
+ },
+ "128812": {
+ "class_id": 19,
+ "created": "2010-09-23T14:42:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 128812,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128813,
+ "object_name": "Zilli, Eric [zilli at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128814,
+ "object_name": "Zilli EA, Hasselmo ME (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Grid cell oscillatory interference with noisy network oscillators (Zilli and Hasselmo 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To examine whether an oscillatory interference model of grid cell activity could work if the oscillators were noisy neurons, we implemented these simulations. Here the oscillators are networks (either synaptically- or gap-junction--coupled) of one or more noisy neurons (either Izhikevich's simple model or a Hodgkin-Huxley--type biophysical model) which drive a postsynaptic cell (which may be integrate-and-fire, resonate-and-fire, or the simple model) which should fire spatially as a grid cell if the simulation is successful."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128812",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zilli, Eric "
+ },
+ "ver_date": "2016-07-19T17:26:01.903",
+ "ver_number": 11
+ },
+ "128816": {
+ "citation": {
+ "attr_id": 391,
+ "value": "16615219, 17428776"
+ },
+ "class_id": 19,
+ "created": "2010-09-27T09:09:53",
+ "gitrepo": false,
+ "id": 128816,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83561,
+ "object_name": "Humphries, Mark D [m.d.humphries at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128817,
+ "object_name": "Humphries MD, Gurney K, Prescott TJ (2006)"
+ },
+ {
+ "object_id": 128873,
+ "object_name": "Humphries MD, Gurney K, Prescott TJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Medial reticular formation of the brainstem: anatomy and dynamics (Humphries et al. 2006, 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A set of models to study the medial reticular formation (mRF) of the brainstem. We developed a collection of algorithms to derive the adult-state wiring of the model: one set a stochastic model; the other set mimicking the developmental process. We found that the anatomical models had small-world properties, irrespective of the choice of algorithm; and that the cluster-like organisation of the mRF may have arisen to minimise wiring costs. (The model code includes options to be run as dynamic models; papers examining these dynamics are included in the .zip file)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128816",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Development"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "m.d.humphries@sheffield.ac.uk"
+ },
+ "ver_date": "2011-08-19T09:57:34",
+ "ver_number": 4
+ },
+ "128818": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Humphries, M. D., Lepora, N., Wood, R. & Gurney, K. (2009) Capturing dopaminergic modulation and bimodal membrane behaviour of striatal medium spiny neurons in accurate, reduced models. Frontiers in Computational Neuroscience, 3, 26"
+ },
+ "class_id": 19,
+ "created": "2010-09-27T09:57:25",
+ "gitrepo": false,
+ "id": 128818,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83561,
+ "object_name": "Humphries, Mark D [m.d.humphries at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 128985,
+ "object_name": "Humphries MD, Lepora N, Wood R, Gurney K (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Dopamine-modulated medium spiny neuron, reduced model (Humphries et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We extended Izhikevich's reduced model of the striatal medium spiny neuron (MSN) to account for dopaminergic modulation of its intrinsic ion channels and synaptic inputs. We tuned our D1 and D2 receptor MSN models using data from a recent (Moyer et al, 2007) large-scale compartmental model. Our new models capture the input-output relationships for both current injection and spiking input with remarkable accuracy, despite the order of magnitude decrease in system size. They also capture the paired pulse facilitation shown by MSNs. Our dopamine models predict that synaptic effects dominate intrinsic effects for all levels of D1 and D2 receptor activation. Our analytical work on these models predicts that the MSN is never bistable. Nonetheless, these MSN models can produce a spontaneously bimodal membrane potential similar to that recently observed in vitro following application of NMDA agonists. We demonstrate that this bimodality is created by modelling the agonist effects as slow, irregular and massive jumps in NMDA conductance and, rather than a form of bistability, is due to the voltage-dependent blockade of NMDA receptors"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128818",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Striatal medium spiny neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "m.d.humphries@sheffield.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2012-01-18T16:39:09",
+ "ver_number": 10
+ },
+ "128874": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Humphries, M. D.; Wood, R. & Gurney, K. (2009) Dopamine-modulated dynamic cell assemblies generated by the GABAergic striatal microcircuit Neural Networks, 22, 1174-1188"
+ },
+ "class_id": 19,
+ "created": "2010-09-27T11:59:21",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 128874,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83561,
+ "object_name": "Humphries, Mark D [m.d.humphries at shef.ac.uk]"
+ },
+ {
+ "object_id": 129066,
+ "object_name": "Wood, Ric [ric.wood at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 129002,
+ "object_name": "Humphries MD, Wood R, Gurney K (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Striatal GABAergic microcircuit, dopamine-modulated cell assemblies (Humphries et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To begin identifying potential dynamically-defined computational elements within the striatum, we constructed a new three-dimensional model of the striatal microcircuit's connectivity, and instantiated this with our dopamine-modulated neuron models of the MSNs and FSIs. A new model of gap junctions between the FSIs was introduced and tuned to experimental data. We introduced a novel multiple spike-train analysis method, and apply this to the outputs of the model to find groups of synchronised neurons at multiple time-scales. We found that, with realistic in vivo background input, small assemblies of synchronised MSNs spontaneously appeared, consistent with experimental observations, and that the number of assemblies and the time-scale of synchronisation was strongly dependent on the simulated concentration of dopamine. We also showed that feed-forward inhibition from the FSIs counter-intuitively increases the firing rate of the MSNs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/128874",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Wood, Ric "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Striatal medium spiny neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "m.d.humphries@sheffield.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "ver_date": "2010-09-27T17:21:07",
+ "ver_number": 3
+ },
+ "129067": {
+ "class_id": 19,
+ "created": "2010-09-28T19:50:20",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 129067,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 129069,
+ "object_name": "Blair, Hugh T."
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 129070,
+ "object_name": "Envelope synthesis"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142654,
+ "object_name": "Welday AC, Shlifer IG, Bloom ML, Zhang K, Blair HT (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "129067_1",
+ "name": "Fig 9A"
+ },
+ {
+ "id": "129067_2",
+ "name": "Fig 9B"
+ }
+ ],
+ "default": "129067_1"
+ },
+ "name": "Synthesis of spatial tuning functions from theta cell spike trains (Welday et al., 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A single compartment model reproduces the firing rate maps of place, grid, and boundary cells by receiving inhibitory inputs from theta cells. The theta cell spike trains are modulated by the rat's movement velocity in such a way that phase interference among their burst pattern creates spatial envelope function which simulate the firing rate maps."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/129067",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Envelope synthesis"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Blair, Hugh T."
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Entorhinal stellate neuron"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2016-07-19T17:26:50.437",
+ "ver_number": 17
+ },
+ "129071": {
+ "class_id": 19,
+ "created": "2010-09-30T06:37:31",
+ "gitrepo": false,
+ "id": 129071,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97998,
+ "object_name": "van Elburg, Ronald A.J. [R.van.Elburg at ai.rug.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136721,
+ "object_name": "van Elburg R (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Continuous time stochastic model for neurite branching (van Elburg 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In this paper we introduce a continuous time stochastic neurite branching model closely related to the discrete time stochastic BES-model. The discrete time BES-model is underlying current attempts to simulate cortical development, but is difficult to analyze. The new continuous time formulation facilitates analytical treatment thus allowing us to examine the structure of the model more closely. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/129071",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Morphology"
+ },
+ "ver_date": "2011-02-28T11:03:11",
+ "ver_number": 15
+ },
+ "129149": {
+ "class_id": 19,
+ "created": "2010-10-08T10:51:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 129149,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 67028,
+ "object_name": "Lindsay AE, Lindsay KA, Rosenberg JR (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Increased computational accuracy in multi-compartmental cable models (Lindsay et al. 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Compartmental models of dendrites are the most widely used tool for investigating their electrical\r\nbehaviour. \r\n\r\nTraditional models assign a single potential to a compartment. \r\n\r\nThis potential is associated with the membrane potential at the centre of the segment represented by the compartment.\r\n\r\nAll input to that segment, independent of its location on the segment, is assumed to act at the centre of the segment with the potential of the\r\ncompartment. \r\n\r\nBy contrast, the compartmental model introduced in this article assigns a potential to each end of a\r\nsegment, and takes into account the location of input to a segment on the model solution by partitioning the effect of\r\nthis input between the axial currents at the proximal and distal boundaries of segments.\r\n\r\nFor a given neuron, the new and traditional approaches to compartmental modelling use the same number of locations at which the membrane\r\npotential is to be determined, and lead to ordinary differential equations that are structurally identical. However, the\r\nsolution achieved by the new approach gives an order of magnitude better accuracy and precision than that achieved\r\nby the latter in the presence of point process input."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/129149",
+ "ver_date": "2014-02-17T12:17:53",
+ "ver_number": 5
+ },
+ "135787": {
+ "class_id": 19,
+ "created": "2010-10-13T16:24:12",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 135787,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 96432,
+ "object_name": "Shu Y, Duque A, Yu Y, Haider B, McCormick DA (2007)"
+ },
+ {
+ "object_id": 114903,
+ "object_name": "Shu Y, Hasenstaub A, Duque A, Yu Y, McCormick DA (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "135787_1",
+ "name": "spike initialization"
+ },
+ {
+ "id": "135787_2",
+ "name": "axon potential decay"
+ }
+ ],
+ "default": "135787_1"
+ },
+ "name": "Intracortical synaptic potential modulation by presynaptic somatic potential (Shu et al. 2006, 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we show that the voltage fluctuations associated with\r\ndendrosomatic synaptic activity propagate significant distances\r\nalong the axon, and that modest changes in the somatic membrane\r\npotential of the presynaptic neuron modulate the amplitude\r\nand duration of axonal action potentials and, through a Ca21-\r\ndependent mechanism, the average amplitude of the postsynaptic\r\npotential evoked by these spikes. \r\n\r\nThese results indicate that\r\nsynaptic activity in the dendrite and soma controls not only the\r\npattern of action potentials generated, but also the amplitude of\r\nthe synaptic potentials that these action potentials initiate in local\r\ncortical circuits, resulting in synaptic transmission that is a\r\nmixture of triggered and graded (analogue) signals.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/135787",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181238,
+ "object_name": "135787_2"
+ },
+ {
+ "object_id": 181239,
+ "object_name": "135787_1"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:38:16",
+ "ver_number": 8
+ },
+ "135838": {
+ "citation": {
+ "attr_id": 391,
+ "value": "19745156"
+ },
+ "class_id": 19,
+ "created": "2010-10-13T22:07:25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 135838,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33797,
+ "object_name": "Roth, Arnd "
+ },
+ {
+ "object_id": 135900,
+ "object_name": "Alle, Henrik"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127705,
+ "object_name": "Alle H, Roth A, Geiger JR (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Action potential reconstitution from measured current waveforms (Alle et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This NEURON code reconstitutes action potentials in a model of a hippocampal mossy fiber from experimentally measured sodium, potassium and calcium current waveforms as described in Alle et al. (2009).\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/135838",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Alle, Henrik "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "arnd.roth@ucl.ac.uk"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181573,
+ "object_name": "135838"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 147
+ },
+ "ver_date": "2014-01-19T10:05:34",
+ "ver_number": 7
+ },
+ "135839": {
+ "class_id": 19,
+ "created": "2010-10-14T09:40:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 135839,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 96460,
+ "object_name": "McCormick DA, Shu Y, Yu Y (2007)"
+ },
+ {
+ "object_id": 123909,
+ "object_name": "Yu Y, Shu Y, McCormick DA (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "AP back-prop. explains threshold variability and rapid rise (McCormick et al. 2007, Yu et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This simple axon-soma model explained how the rapid rising phase in the somatic spike is derived from the propagated axon initiated spike,\r\nand how the somatic spike threshold variance is affected by spike propagation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/135839",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181574,
+ "object_name": "135839"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 144
+ },
+ "ver_date": "2013-12-20T16:17:41",
+ "ver_number": 10
+ },
+ "135898": {
+ "class_id": 19,
+ "created": "2010-10-14T18:21:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122327,
+ "object_name": "Kv1.2 KCNA2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 135898,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 114136,
+ "object_name": "Shu Y, Yu Y, Yang J, McCormick DA (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "135898",
+ "name": "ModelView"
+ }
+ ],
+ "default": "135898"
+ },
+ "name": "Selective control of cortical axonal spikes by a slowly inactivating K+ current (Shu et al. 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We discovered a low-threshold, slowly inactivating K+ current, containing Kv1.2 alpha subunits, in axon initial segment, playing a key role in the modulation of spike threshold and spike duration as well as\r\nthe spike timing in prefrontal cortex layer V pyramidal cell of ferrets and rats.\r\nA kd.mod file implements this D current and put it in the axonal model: Neuron_Dcurrent.hoc. Run the model to see the gradual modulation effect over seconds on spike shape."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/135898",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181343,
+ "object_name": "135898"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 335
+ },
+ "ver_date": "2014-02-25T01:07:22",
+ "ver_number": 2
+ },
+ "135902": {
+ "class_id": 19,
+ "created": "2010-10-15T17:53:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 135902,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33748,
+ "object_name": "Lazarewicz, Maciej [mlazarew at gmu.edu]"
+ },
+ {
+ "object_id": 136020,
+ "object_name": "Stacey, William [wstacey at med.umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125094,
+ "object_name": "Stacey WC, Lazarewicz MT, Litt B (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "High frequency oscillations in a hippocampal computational model (Stacey et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Using a physiological computer model of hippocampus, we investigate random synaptic activity\r\n(noise) as a potential initiator of HFOs (high-frequency oscillations).\r\n\r\nWe explore parameters necessary to produce these oscillations and quantify the response\r\nusing the tools of stochastic resonance (SR) and coherence resonance\r\n(CR).\r\n... \r\n\r\nOur results show that, under normal coupling conditions, synaptic noise was able to produce\r\ngamma (30\u2013100 Hz) frequency oscillations.\r\n\r\n\r\nSynaptic noise generated HFOs in the ripple range (100\u2013200 Hz) when the network had\r\nparameters similar to pathological findings in epilepsy: increased gap\r\njunctions or recurrent synaptic connections, loss of inhibitory interneurons\r\nsuch as basket cells, and increased synaptic noise.\r\n\r\n...\r\nWe propose that increased synaptic noise and physiological coupling mechanisms are sufficient to generate gamma\r\noscillations and that pathologic changes in noise and coupling similar\r\nto those in epilepsy can produce abnormal ripples.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/135902",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2013-01-22T11:57:54",
+ "ver_number": 8
+ },
+ "135903": {
+ "class_id": 19,
+ "created": "2010-10-15T17:56:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 135903,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33748,
+ "object_name": "Lazarewicz, Maciej [mlazarew at gmu.edu]"
+ },
+ {
+ "object_id": 136020,
+ "object_name": "Stacey, William [wstacey at med.umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136022,
+ "object_name": "Stacey WC, Krieger A, Litt B (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Network recruitment to coherent oscillations in a hippocampal model (Stacey et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we demonstrate, via a detailed computational model, a mechanism whereby physiological noise and coupling initiate oscillations and then recruit neighboring tissue, in a manner well described by a combination of Stochastic Resonance and Coherence Resonance.\r\n\r\n We develop a novel statistical method to quantify recruitment using several measures of network synchrony.\r\n\r\nThis measurement demonstrates that oscillations spread via preexisting network connections such as interneuronal connections, recurrent synapses, and gap junctions, provided that neighboring cells also receive sufficient inputs in the form of random synaptic noise.\r\n\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/135903",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "recruitment of hippocamp"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2011-04-15T16:47:41",
+ "ver_number": 8
+ },
+ "136024": {
+ "class_id": 19,
+ "created": "2010-10-27T01:07:41",
+ "gitrepo": false,
+ "id": 136024,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136025,
+ "object_name": "Chambers, Jordan [jordandchambers at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139155,
+ "object_name": "Chambers JD, Bornstein JC, Thomas EA (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Modelling enteric neuron populations and muscle fed-state motor patterns (Chambers et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"After a meal, the gastrointestinal tract exhibits a set of behaviours known as the fed state.\r\n... Segmentation manifests as rhythmic local constrictions that do not propagate along the intestine.\r\n...\r\nWe investigated the enteric circuits that regulate segmentation focusing on a central feature of the ENS: a recurrent excitatory network of intrinsic sensory neurons (ISNs) which are characterized by prolonged after-hyperpolarizing potentials (AHPs) following their action potentials.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136024",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chambers, Jordan "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jordandchambers@gmail.com"
+ },
+ "ver_date": "2011-05-06T10:08:50",
+ "ver_number": 8
+ },
+ "136026": {
+ "class_id": 19,
+ "created": "2010-10-27T13:00:41",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136026,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112750,
+ "object_name": "Djurisic M, Popovic M, Carnevale N, Zecevic D (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "136026_1",
+ "name": "Passive tuft, control"
+ },
+ {
+ "id": "136026_2",
+ "name": "Passive tuft, cm = 2*control"
+ },
+ {
+ "id": "136026_3",
+ "name": "Passive tuft, Ra = 2*control"
+ },
+ {
+ "id": "136026_4",
+ "name": "Passive tuft, both 2*control"
+ },
+ {
+ "id": "136026_5",
+ "name": "Active tuft"
+ }
+ ],
+ "default": "136026_1"
+ },
+ "name": "Functional structure of mitral cell dendritic tuft (Djurisic et al. 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The computational modeling component of Djurisic et al. 2008 addressed two primary questions: whether amplification by active currents is necessary to explain the relatively mild attenuation suffered by tuft EPSPs spreading along the primary dendrite to the soma; what accounts for the relatively uniform peak EPSP amplitude throughout the tuft. These simulations show that passive spread from tuft to soma is sufficient to yield the low attenuation of tuft EPSPs, and that random distribution of a biologically plausible number of excitatory synapses throughout the tuft can produce the experimentally observed uniformity of depolarization.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136026",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181210,
+ "object_name": "136026_2"
+ },
+ {
+ "object_id": 181870,
+ "object_name": "136026_3"
+ },
+ {
+ "object_id": 181896,
+ "object_name": "136026_1"
+ },
+ {
+ "object_id": 181898,
+ "object_name": "136026_5"
+ },
+ {
+ "object_id": 181899,
+ "object_name": "136026_4"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 251
+ },
+ "ver_date": "2018-10-17T16:07:28.927",
+ "ver_number": 10
+ },
+ "136095": {
+ "class_id": 19,
+ "created": "2010-11-01T18:06:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136095,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136050,
+ "object_name": "Neymotin SA, Jacobs KM, Fenton AA, Lytton WW (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "136095",
+ "name": "Run neocortical column simulation & display output"
+ }
+ ],
+ "default": "136095"
+ },
+ "name": "Synaptic information transfer in computer models of neocortical columns (Neymotin et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nWe sought to measure how the activity of the network alters information flow from inputs to output patterns. \r\nInformation handling by the network reflected the degree of internal connectivity. ...\r\nWith greater connectivity strength, the recurrent network translated activity and information due to contribution of activity from intrinsic network dynamics. \r\n...\r\nAt still higher internal synaptic strength, the network corrupted the external information, producing a state where little external information came through.\r\nThe association of increased information retrieved from the network with increased gamma power supports the notion of gamma oscillations playing a role in information processing.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136095",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181456,
+ "object_name": "136095"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T15:21:57.973",
+ "ver_number": 12
+ },
+ "136097": {
+ "class_id": 19,
+ "created": "2010-11-01T23:35:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 252,
+ "object_name": "I Cl,Ca"
+ },
+ {
+ "object_id": 254,
+ "object_name": "I CNG"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 88210,
+ "object_name": "I_Na,Ca"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 136104,
+ "object_name": "I ANO2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136097,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 54900,
+ "object_name": "Dougherty, Daniel P [dpdoughe at mbi.ohio-state.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136105,
+ "object_name": "Dougherty DP (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Multiscale model of olfactory receptor neuron in mouse (Dougherty 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Collection of XPP (.ode) files simulating the signal transduction (slow) and action potential (fast) currents in the olfactory receptor neuron of mouse. Collection contains model configured for dual odorant pulse delivery and model configured for prolonged odorant delivery. For those interested more in transduction processes, each whole cell recording model comes with a counter part file configured to show just the slow transduction current for ease of use and convenience. These transduction-only models typically run faster than the full multi-scale models but do not demonstrate action potentials."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136097",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "G-protein coupled"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I ANO2"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "doughe57@msu.edu"
+ },
+ "ver_date": "2018-10-17T16:07:43.897",
+ "ver_number": 8
+ },
+ "136175": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Volker Steuber, Nathan Schultheiss, R Angus Silver, Erik De Schutter and Dieter Jaeger (2010). The control of rebound spiking by voltage-gated currents and synaptic input in a detailed compartmental model of deep cerebellar nucleus neurons. Journal of Computational Neuroscience (epub ahead of print, PMID: 21052805)."
+ },
+ "class_id": 19,
+ "created": "2010-11-11T08:52:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 136175,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136250,
+ "object_name": "Steuber, Volker [v.steuber at herts.ac.uk]"
+ },
+ {
+ "object_id": 136251,
+ "object_name": "Jaeger, Dieter [djaeger at emory.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136181,
+ "object_name": "Steuber V, Schultheiss NW, Silver RA, De Schutter E, Jaeger D (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Cerebellar Nucleus Neuron (Steuber, Schultheiss, Silver, De Schutter & Jaeger, 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is the GENESIS 2.3 implementation of a multi-compartmental deep cerebellar nucleus (DCN) neuron model with a full dendritic morphology and appropriate active conductances. We generated a good match of our simulations with DCN current clamp data we recorded in acute slices, including the heterogeneity in the rebound responses. We then examined how inhibitory and excitatory synaptic input interacted with these intrinsic conductances to control DCN firing. We found that the output spiking of the model reflected the ongoing balance of excitatory and inhibitory input rates and that changing the level of inhibition performed an additive operation. Rebound firing following strong Purkinje cell input bursts was also possible, but only if the chloride reversal potential was more negative than -70 mV to allow de-inactivation of rebound currents. Fast rebound bursts due to T-type calcium current and slow rebounds due to persistent sodium current could be differentially regulated by synaptic input, and the pattern of these rebounds was further influenced by HCN current. Our findings suggest that active properties of DCN neurons could play a crucial role for signal processing in the cerebellum."
+ },
+ "opensourcebrain": {
+ "value": "cerebellarnucleusneuron"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136175",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Rebound firing"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "ICaT INaP IHCN"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Steuber, Volker (v.steuber@herts.ac.uk)\r\nJaeger, Dieter (djaeger@emory.edu)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cerebellar Nucleus Neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "v.steuber@herts.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2012-04-27T15:38:25",
+ "ver_number": 8
+ },
+ "136176": {
+ "class_id": 19,
+ "created": "2010-11-12T10:21:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 136176,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136177,
+ "object_name": "Rozsa, Balazs "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 137556,
+ "object_name": "Katona G, Kasz\u00e1s A, Turi GF, H\u00e1jos N, Tam\u00e1s G, Vizi ES, R\u00f3zsa B (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 stratum radiatum interneuron multicompartmental model (Katona et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136178,
+ "object_name": "Hippocampus CA1 stratum radiatum interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model examines dendritic NMDA-spike generation and propagation\r\nin the dendrites of CA1 stratum radiatum interneurons. It contains\r\nNMDA-channels in a clustered pattern on a dendrite and K-channels. The\r\nsimulation shows the whole NMDA spike and the rising phase of the\r\ntraces in separate windows.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136176",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181888,
+ "object_name": "136176"
+ }
+ ]
+ },
+ "ver_date": "2014-02-06T16:15:06",
+ "ver_number": 6
+ },
+ "136296": {
+ "class_id": 19,
+ "created": "2010-11-22T17:53:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 136296,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136301,
+ "object_name": "Brazhe, Alexey [brazhe at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 136303,
+ "object_name": "Intermittent block"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136297,
+ "object_name": "Brazhe AR, Maksimov GV, Mosekilde E, Sosnovtseva O (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 136302,
+ "object_name": "Lua"
+ }
+ ]
+ },
+ "name": "Myelinated nerve fibre myelin resistance dependent on extracellular K+ level (Brazhe et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Excitation leads to rise in paranodal [K]e under the myelin. This causes structural changes in myelin structure and resistance. Current model aims to simulate this aspect. This is a space-clamped model of a double-cable nerve fibre."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136296",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Intermittent block"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Brazhe, Alexey brazhe@gmail.com"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "lua program"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "myelinated nerve"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "brazhe@gmail.com"
+ },
+ "ver_date": "2015-07-26T14:10:18.337",
+ "ver_number": 6
+ },
+ "136308": {
+ "class_id": 19,
+ "created": "2010-11-30T19:17:34",
+ "gitrepo": false,
+ "id": 136308,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136491,
+ "object_name": "Talathi Sachin [talathi at ufl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136494,
+ "object_name": "Talathi SS, Carney PR, Khargonekar PP (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Wang-Buzsaki Interneuron (Talathi et al., 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The submitted code provides the relevant C++ files, matlabfiles and the data files essential to reproduce the figures in the JCNS paper titled Control of neural synchrony using channelrhodopsin-2: A computational study."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136308",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Talathi Sachin "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "talathi@ufl.edu"
+ },
+ "ver_date": "2012-11-20T15:30:34",
+ "ver_number": 5
+ },
+ "136309": {
+ "class_id": 19,
+ "created": "2010-12-03T11:40:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136309,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 120908,
+ "object_name": "Munro, Erin [ecmun at math.bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144389,
+ "object_name": "Munro E, Kopell N (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Neocort. pyramidal cells subthreshold somatic voltage controls spike propagation (Munro Kopell 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "There is suggestive evidence that pyramidal cell axons in neocortex may be coupled by gap junctions into an ``axonal plexus\" capable of generating Very Fast Oscillations (VFOs) with frequencies exceeding 80 Hz. It is not obvious, however, how a pyramidal cell in such a network could control its output when action potentials are free to propagate from the axons of other pyramidal cells into its own axon. We address this problem by means of simulations based on 3D reconstructions of pyramidal cells from rat somatosensory cortex. We show that somatic depolarization enables propagation via gap junctions into the initial segment and main axon, while somatic hyperpolarization disables it. We show further that somatic voltage cannot effectively control action potential propagation through gap junctions on minor collaterals; action potentials may therefore propagate freely from such collaterals regardless of somatic voltage. In previous work, VFOs are all but abolished during the hyperpolarization phase of slow-oscillations induced by anesthesia in vivo. This finding constrains the density of gap junctions on collaterals in our model and suggests that axonal sprouting due to cortical lesions may result in abnormally high gap junction density on collaterals, leading in turn to excessive VFO activity and hence to epilepsy via kindling."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136309",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Axonal gap junctions"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-06-26T21:38:47.763",
+ "ver_number": 19
+ },
+ "136310": {
+ "class_id": 19,
+ "created": "2010-12-05T15:36:47",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136310,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 45661,
+ "object_name": "B\u00e9dard C, Kr\u00f6ger H, Destexhe A (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "136310",
+ "name": "=> 1. Calculate impedances"
+ }
+ ],
+ "default": "136310"
+ },
+ "name": "Modeling local field potentials (Bedard et al. 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This demo simulates a model of local field potentials (LFP) with\r\nvariable resistivity. This model reproduces the low-pass\r\nfrequency filtering properties of extracellular potentials. The\r\nmodel considers inhomogeneous spatial profiles of conductivity\r\nand permittivity, which result from the multiple media (fluids,\r\nmembranes, vessels, ...) composing the extracellular space around\r\nneurons. Including non-constant profiles of conductivity enables\r\nthe model to display frequency filtering properties, ie slow\r\nevents such as EPSPs/IPSPs are less attenuated than fast events\r\nsuch as action potentials. The demo simulates Fig 6 of the\r\npaper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136310",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Extracellular current"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "destexhe@iaf.cnrs-gif.fr"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 283
+ },
+ "ver_date": "2022-05-27T10:28:27.267",
+ "ver_number": 10
+ },
+ "136315": {
+ "citation": {
+ "attr_id": 391,
+ "value": "J Neurosci 30: 15146-59. http://www.ncbi.nlm.nih.gov/pubmed/21068320"
+ },
+ "class_id": 19,
+ "created": "2010-12-08T13:08:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 136317,
+ "object_name": "Kv4.1 KCND1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 136315,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114640,
+ "object_name": "Gunay, Cengiz [cgunay at emory.edu]"
+ },
+ {
+ "object_id": 114641,
+ "object_name": "Edgerton, Jeremy R. [jedgert at emory.edu]"
+ },
+ {
+ "object_id": 114642,
+ "object_name": "Hanson, Jesse E."
+ },
+ {
+ "object_id": 136251,
+ "object_name": "Jaeger, Dieter [djaeger at emory.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136316,
+ "object_name": "Edgerton JR, Hanson JE, G\u00fcnay C, Jaeger D (2010)"
+ },
+ {
+ "object_id": 140646,
+ "object_name": "Edgerton JR, Jaeger D (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Globus pallidus neuron models with differing dendritic Na channel expression (Edgerton et al., 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A set of 9 multi-compartmental rat GP neuron models (585 compartments) differing only in their expression of dendritic fast sodium channels were compared in their synaptic integration properties. Dendritic fast sodium channels were found to increase the importance of distal synapses (both excitatory AND inhibitory), increase spike timing variability with in vivo-like synaptic input, and make the model neurons highly sensitive to clustered synchronous excitation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136315",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Ih or I_HCN"
+ },
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Kv4.1 KCND1"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jedgert@emory.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2011-09-21T14:55:53",
+ "ver_number": 9
+ },
+ "136380": {
+ "class_id": 19,
+ "created": "2010-12-09T16:37:01",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 136380,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136800,
+ "object_name": "Tripp, Bryan [bryan.tripp at mail.mcgill.ca]"
+ },
+ {
+ "object_id": 136801,
+ "object_name": "Eliasmith, Chris [celiasmith at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136355,
+ "object_name": "Tripp B, Eliasmith C (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Neural transformations on spike timing information (Tripp and Eliasmith 2007)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we employ computational methods to show that an ensemble\r\nof neurons firing at a constant mean rate can induce arbitrarily\r\nchosen temporal current patterns in postsynaptic cells. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136380",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2014-05-21T11:16:45",
+ "ver_number": 6
+ },
+ "136715": {
+ "citation": {
+ "attr_id": 391,
+ "value": "20543843"
+ },
+ "class_id": 19,
+ "created": "2011-01-05T09:49:38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136715,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136716,
+ "object_name": "Fleidervish, Ilya [ilya.fleidervish at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127651,
+ "object_name": "Fleidervish IA, Lasser-Ross N, Gutnick MJ, Ross WN (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Action potential-evoked Na+ influx are similar in axon and soma (Fleidervish et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In cortical pyramidal neurons, the axon initial segment (AIS) is pivotal in synaptic integration.\r\n\r\nIt has been asserted that this is because there is a high density of Na+ channels in the AIS. \r\n\r\nHowever, we found that action potential-associated Na+ flux, as measured by high-speed fluorescence Na+ imaging, was about threefold larger in the rat AIS than in the soma. \r\n\r\nSpike-evoked Na+ flux in the AIS and the first node of Ranvier was similar and was eightfold lower in basal dendrites.\r\n\r\n...\r\nIn computer simulations, these data were consistent with the known features of action potential generation in these neurons.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136715",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181516,
+ "object_name": "136715_4"
+ },
+ {
+ "object_id": 181517,
+ "object_name": "136715_2"
+ },
+ {
+ "object_id": 181518,
+ "object_name": "136715_3"
+ },
+ {
+ "object_id": 181519,
+ "object_name": "136715_1"
+ }
+ ]
+ },
+ "ver_date": "2017-04-14T18:01:26.167",
+ "ver_number": 16
+ },
+ "136717": {
+ "class_id": 19,
+ "created": "2011-01-07T06:46:32",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136717,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123929,
+ "object_name": "Masquelier, Tim [timothee.masquelier at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142233,
+ "object_name": "Gilson M, Masquelier T, Hugues E (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "STDP allows fast rate-modulated coding with Poisson-like spike trains (Gilson et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model demonstrates that a neuron equipped with STDP robustly detects repeating rate patterns among its afferents, from which the spikes are generated on the fly using inhomogenous Poisson sampling, provided those rates have narrow temporal peaks (10-20ms) - a condition met by many experimental Post-Stimulus Time Histograms (PSTH)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136717",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Poisson and LIF neurons"
+ },
+ "ver_date": "2017-07-28T17:31:08.693",
+ "ver_number": 12
+ },
+ "136773": {
+ "biosimulations": {
+ "value": "modeldb-136773"
+ },
+ "class_id": 19,
+ "created": "2011-01-11T14:11:11",
+ "gitrepo": false,
+ "id": 136773,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136797,
+ "object_name": "Barreto, Ernest "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118376,
+ "object_name": "Cressman JR, Ullah G, Ziburkus J, Schiff SJ, Barreto E (2009)"
+ },
+ {
+ "object_id": 142653,
+ "object_name": "Cressman JR, Ullah G, Ziburkus J, Schiff SJ, Barreto E (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Single neuron with dynamic ion concentrations (Cressman et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "These are the full and reduced models of a generic single neuron with dynamic ion concentrations as described in Cressman et al., Journal of Computational Neuroscience (2009) 26:159\u2013170."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136773",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Barreto, Ernest"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ebarreto@gmu.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "ver_date": "2011-01-11T16:13:23",
+ "ver_number": 5
+ },
+ "136799": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Tripp BP, Eliasmith C (2010) Population models of temporal differentiation. Neural Comput 22:621-59"
+ },
+ "class_id": 19,
+ "created": "2011-01-14T14:02:17",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 136799,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136800,
+ "object_name": "Tripp, Bryan [bryan.tripp at mail.mcgill.ca]"
+ },
+ {
+ "object_id": 136801,
+ "object_name": "Eliasmith, Chris [celiasmith at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136254,
+ "object_name": "Tripp BP, Eliasmith C (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 136173,
+ "object_name": "Nengo"
+ }
+ ]
+ },
+ "name": "Population models of temporal differentiation (Tripp and Eliasmith 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Temporal derivatives are computed by a wide variety of neural circuits, but the problem of performing this computation accurately has received little theoretical study. \r\n\r\nHere we systematically compare the performance of diverse networks that calculate derivatives using cell-intrinsic adaptation and synaptic depression dynamics, feedforward network dynamics, and recurrent network dynamics. \r\n\r\nExamples of each type of network are compared by quantifying the errors they introduce into the calculation and their rejection of high-frequency input noise. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136799",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2014-05-21T11:18:29",
+ "ver_number": 4
+ },
+ "136803": {
+ "class_id": 19,
+ "created": "2011-01-15T08:38:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136803,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125381,
+ "object_name": "Jones SR, Pritchett DL, Sikora MA, Stufflebeam SM, H\u00e4m\u00e4l\u00e4inen M, Moore CI (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Biophysically realistic neural modeling of the MEG mu rhythm (Jones et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Variations in cortical oscillations in the alpha (7\u201314 Hz) and beta (15\u201329 Hz) range have been correlated with attention, working memory, and stimulus detection. The mu rhythm recorded with magnetoencephalography (MEG) is a prominent oscillation generated by Rolandic cortex containing alpha and beta bands. Despite its prominence, the neural mechanisms regulating mu are unknown. We characterized the ongoing MEG mu rhythm from a localized source in the finger representation of primary somatosensory (SI) cortex. Subjects showed variation in the relative expression of mu-alpha or mu-beta, which were nonoverlapping for roughly 50% of their respective durations on single trials. To delineate the origins of this rhythm, a biophysically principled computational neural model of SI was developed, with distinct laminae, inhibitory and excitatory neurons, and feedforward (FF, representative of lemniscal thalamic drive) and feedback (FB, representative of higher-order cortical drive or input from nonlemniscal thalamic nuclei) inputs defined by the laminar location of their postsynaptic effects. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136803",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181411,
+ "object_name": "136803"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:25:03.297",
+ "ver_number": 10
+ },
+ "136807": {
+ "class_id": 19,
+ "created": "2011-01-21T10:40:11",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 136807,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169263,
+ "object_name": "Richmond P, Buesing L, Giugliano M, Vasilaki E (2011)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Democratic population decisions result in robust policy-gradient learning (Richmond et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This model demonstrates the use of GPU programming (with CUDA) to simulate a two-layer network of Integrate-and-Fire neurons with varying degrees of recurrent connectivity and to investigate its ability to learn a simplified navigation task using a learning rule stemming from Reinforcement Learning, a policy-gradient rule."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136807",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "NVIDIA Corp."
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "CUDA"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "p.richmond@sheffield.ac.uk"
+ },
+ "ver_date": "2015-01-26T17:06:04",
+ "ver_number": 4
+ },
+ "136808": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Nathan F. Lepora, Paul G. Overton and K. Gurney. Efficient fitting of conductance-based model neurons from somatic current clamp. J. Comp Neuro (In press)."
+ },
+ "class_id": 19,
+ "created": "2011-01-24T14:59:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 136808,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136809,
+ "object_name": "Lepora, Nathan [n.lepora at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136810,
+ "object_name": "Lepora NF, Overton PG, Gurney K (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Parameter estimation for Hodgkin-Huxley based models of cortical neurons (Lepora et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulation and fitting of two-compartment (active soma, passive dendrite) \r\nfor different classes of cortical neurons. The fitting technique \r\nindirectly matches neuronal currents derived from somatic membrane \r\npotential data rather than fitting the voltage traces directly. \r\nThe method uses an analytic solution for the somatic ion channel \r\nmaximal conductances given approximate models of the channel kinetics, \r\nmembrane dynamics and dendrite. This approach is tested on model-derived \r\ndata for various cortical neurons. \r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/136808",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lepora, Nathan "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "n.lepora@shef.ac.uk"
+ },
+ "ver_date": "2011-10-28T23:36:55",
+ "ver_number": 7
+ },
+ "137259": {
+ "class_id": 19,
+ "created": "2011-01-31T14:53:42",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 137259,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 98006,
+ "object_name": "Baker, John L [jbakerb at gmu.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 137261,
+ "object_name": "Baker JL, Perez-Rosello T, Migliore M, Barrionuevo G, Ascoli GA (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A model of unitary responses from A/C and PP synapses in CA3 pyramidal cells (Baker et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model was used to reproduce experimentally determined mean synaptic response characteristics of unitary AMPA and NMDA synaptic stimulations in CA3 pyramidal cells with the objective of inferring the most likely response properties of the corresponding types of synapses. The model is primarily concerned with passive cells, but models of active dendrites are included."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137259",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Synaptic properties"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181429,
+ "object_name": "137259"
+ }
+ ]
+ },
+ "ver_date": "2014-01-18T22:30:35",
+ "ver_number": 10
+ },
+ "137263": {
+ "biosimulations": {
+ "value": "modeldb-137263"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Chen BS, Lo YC, Liu YC, Wu SN. Effects of transient receptor potential-like current on the firing pattern of action potentials in the Hodgkin-Huxley neuron during exposure to sinusoidal external voltage. Chinese Journal of Physiology 2010; 53(6):423-429."
+ },
+ "class_id": 19,
+ "created": "2011-02-08T01:20:34",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 137264,
+ "object_name": "I trp"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 137263,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 137265,
+ "object_name": "Chen BS, Lo YC, Lius YC, Wu SN (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Effect of trp-like current on APs during exposure to sinusoidal voltage (Chen et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nPrevious work showed that magnetic electrical field-induced antinoceptive action is mediated by activation of capsaicin-sensitive sensory afferents. In this study, a modified Hodgkin-Huxley model, in which TRP-like current (I-TRP) was incorporated, was implemented to predict the firing behavior of action potentials (APs), as the model neuron was exposed to sinusoidal changes in externally-applied voltage. \r\n\r\n...\r\nOur simulation results suggest that modulation of TRP-like channels functionally expressed in small-diameter peripheral sensory neurons should be an important mechanism through which it can contribute to the firing pattern of APs.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137263",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I(trp)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2011-02-08T11:51:23",
+ "ver_number": 7
+ },
+ "137502": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Humphries, M. D., Wood, R., Gurney, K. (2010) Reconstructing the three-dimensional GABAergic microcircuit of the striatum. PLoS Comput Biol, 6, e1001011"
+ },
+ "class_id": 19,
+ "created": "2011-02-10T12:39:40",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 137502,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83561,
+ "object_name": "Humphries, Mark D [m.d.humphries at shef.ac.uk]"
+ },
+ {
+ "object_id": 129066,
+ "object_name": "Wood, Ric [ric.wood at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 137503,
+ "object_name": "Humphries MD, Wood R, Gurney K (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Striatal GABAergic microcircuit, spatial scales of dynamics (Humphries et al, 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The main thrust of this paper was the development of the 3D anatomical network of the striatum's GABAergic microcircuit. We grew dendrite and axon models for the MSNs and FSIs and extracted probabilities for the presence of these neurites as a function of distance from the soma. From these, we found the probabilities of intersection between the neurites of two neurons given their inter-somatic distance, and used these to construct three-dimensional striatal networks. These networks were examined for their predictions for the distributions of the numbers and distances of connections for all the connections in the microcircuit. We then combined the neuron models from a previous model (Humphries et al, 2009; ModelDB ID: 128874) with the new anatomical model. We used this new complete striatal model to examine the impact of the anatomical network on the firing properties of the MSN and FSI populations, and to study the influence of all the inputs to one MSN within the network."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137502",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Striatal medium spiny neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "m.d.humphries@sheffield.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2011-04-08T11:10:11",
+ "ver_number": 6
+ },
+ "137505": {
+ "class_id": 19,
+ "created": "2011-02-15T16:23:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 137505,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 137507,
+ "object_name": "Murray, Teresa A. [bioengineer1 at hotmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 120836,
+ "object_name": "Murray TA (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Model of long range transmission of gamma oscillation (Murray 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nA minimal mathematical model was developed for a\r\npreliminary study of long-range neural transmission of gamma\r\noscillation from the CA3 to the entorhinal cortex via the CAI\r\nregion of the hippocampus, a subset within a larger complex set of\r\npathways. A module was created for each local population of\r\nneurons with common intrinsic properties and connectivity to\r\nsimplify the connection process and make the model more flexible.\r\nThree modules were created using MATLAB Simulink\u00ae and tested\r\nto confirm that they transmit gamma through the system. The\r\nmodel also revealed that a portion of the signal from CAI to the\r\nentorhinal cortex may be lost in transmission under certain\r\nconditions.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137505",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2011-02-15T16:50:05",
+ "ver_number": 1
+ },
+ "137676": {
+ "class_id": 19,
+ "created": "2011-02-26T14:08:26",
+ "gitrepo": false,
+ "id": 137676,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 141124,
+ "object_name": "Monaco, Joseph D. "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ },
+ {
+ "object_id": 129070,
+ "object_name": "Envelope synthesis"
+ },
+ {
+ "object_id": 141125,
+ "object_name": "Phase interference"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141126,
+ "object_name": "Monaco JD, Knierim JJ, Zhang K (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Sensory feedback in an oscillatory interference model of place cell activity (Monaco et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Many animals use a form of dead reckoning known as 'path integration' to maintain a sense of their location as they explore the world. However, internal motion signals and the neural activity that integrates them can be noisy, leading inevitably to inaccurate position estimates. The rat hippocampus and entorhinal cortex support a flexible system of spatial representation that is critical to spatial learning and memory. The position signal encoded by this system is thought to rely on path integration, but it must be recalibrated by familiar landmarks to maintain accuracy. To explore the interaction between path integration and external landmarks, we present a model of hippocampal activity based on the interference of theta-frequency oscillations that are modulated by realistic animal movements around a track. We show that spatial activity degrades with noise, but introducing external cues based on direct sensory feedback can prevent this degradation. When these cues are put into conflict with each other, their interaction produces a diverse array of response changes that resembles experimental observations. Feedback driven by attending to landmarks may be critical to navigation and spatial memory in mammals."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137676",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Phase interference"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Monaco, Joseph D."
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2011-09-08T15:49:57",
+ "ver_number": 12
+ },
+ "137743": {
+ "class_id": 19,
+ "created": "2011-03-01T11:52:14",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 137743,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ },
+ {
+ "object_id": 245799,
+ "object_name": "Whisking"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 137681,
+ "object_name": "Hooks BM, Hires SA, Zhang YX, Huber D, Petreanu L, Svoboda K, Shepherd GM (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Laminar analysis of excitatory circuits in vibrissal motor and sensory cortex (Hooks et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nWe mapped local excitatory pathways in each area (primary motor cortex (vM1), primary somatosensory cortex (vS1;\r\nbarrel cortex), and secondary somatosensory cortex (S2)) across all cortical layers using glutamate uncaging and laser scanning photostimulation. \r\n\r\nWe analyzed these maps to derive laminar connectivity matrices describing the average strengths of pathways between individual neurons in\r\ndifferent layers and between entire cortical layers. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137743",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-18T17:34:44.807",
+ "ver_number": 7
+ },
+ "137745": {
+ "class_id": 19,
+ "created": "2011-03-02T00:27:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122821,
+ "object_name": "KCa2.2 KCNN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 137745,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 137843,
+ "object_name": "Stanley, David A "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142117,
+ "object_name": "Stanley DA, Bardakjian BL, Spano ML, Ditto WL (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal: Stochastic amplification of KCa in Ca2+ microdomains (Stanley et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This minimal model investigates stochastic amplification of calcium-activated potassium (KCa) currents. Amplification results from calcium being released in short high amplitude pulses associated with the stochastic gating of calcium channels in microdomains. This model predicts that such pulsed release of calcium significantly increases subthreshold SK2 currents above what would be produced by standard deterministic models. However, there is little effect on a simple sAHP current kinetic scheme. This suggests that calcium stochasticity and microdomains should be considered when modeling certain KCa currents near subthreshold conditions."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137745",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Stochastic amplification"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Stanley, David A"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-02-26T11:25:36.783",
+ "ver_number": 69
+ },
+ "137845": {
+ "class_id": 19,
+ "created": "2011-03-08T13:27:02",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 137845,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142487,
+ "object_name": "Hines M, Kumar S, Sch\u00fcrmann F (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Spike exchange methods for a Blue Gene/P supercomputer (Hines et al., 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Tests several spike exchange methods on a Blue Gene/P supercomputer on up to 64K cores."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137845",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.hines@yale.edu"
+ },
+ "ver_date": "2022-05-30T15:09:24.46",
+ "ver_number": 7
+ },
+ "137846": {
+ "class_id": 19,
+ "created": "2011-03-09T17:11:50",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 137846,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114641,
+ "object_name": "Edgerton, Jeremy R. [jedgert at emory.edu]"
+ },
+ {
+ "object_id": 114642,
+ "object_name": "Hanson, Jesse E."
+ },
+ {
+ "object_id": 230424,
+ "object_name": "Schultheiss, Nathan W [nwschultheiss at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 137847,
+ "object_name": "Phase Response Curves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125885,
+ "object_name": "Schultheiss NW, Edgerton JR, Jaeger D (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "GP Neuron, somatic and dendritic phase response curves (Schultheiss et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Phase response analysis of a GP neuron model showing type I PRCs for somatic inputs and type II PRCs for dendritic excitation. Analysis of intrinsic currents underlying type II dendritic PRCs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137846",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Phase Response Curve"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Schultheiss Nathan W"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nwschultheiss@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2017-07-10T18:30:51.71",
+ "ver_number": 10
+ },
+ "137989": {
+ "class_id": 19,
+ "created": "2011-03-16T14:49:43",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 137989,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ },
+ {
+ "object_id": 83458,
+ "object_name": "Goodman PH"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 137857,
+ "object_name": "Brette R, Goodman DF (2011)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Vectorized algorithms for spiking neural network simulation (Brette and Goodman 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We describe a set of algorithms to simulate large spiking neural networks\r\nefficiently with high-level languages using vector-based operations.\r\nThese algorithms constitute the core of Brian, a spiking neural network\r\nsimulator written in the Python language. Vectorized simulation makes\r\nit possible to combine the flexibility of high-level languages with the\r\ncomputational efficiency usually associated with compiled languages.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/137989",
+ "ver_date": "2017-07-28T11:52:54.223",
+ "ver_number": 8
+ },
+ "138082": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Kinetic Modeling of Nav1.7 Provides Insight Into Erythromelalgia-associated F1449V Mutation (Gurkiewicz et al. J.Neurophysiol., 2011)"
+ },
+ "class_id": 19,
+ "created": "2011-03-19T17:55:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 138082,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 138163,
+ "object_name": "Gurkiewicz, Meron [gurkiewicz at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ },
+ {
+ "object_id": 138271,
+ "object_name": "Erythromelalgia"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138083,
+ "object_name": "Gurkiewicz M, Korngreen A, Waxman SG, Lampert A (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "HMM of Nav1.7 WT and F1449V (Gurkiewicz et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neuron mod files for the WT and F1449V Na+ currents from the paper:\r\nKinetic Modeling of Nav1.7 Provides Insight Into Erythromelalgia-associated F1449V Mutation\r\nM. Gurkiewicz, A. Korngreen, S. Waxman, and A. Lampert. J.Neurophysiol. (2011).\r\n\r\nThe parameters for the K65, K53 and K63 transitions were derived from microscopic reversibility relationships in the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138082",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Erythromelalgia"
+ },
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Nav1.7 F1449V"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gurkiewicz, Meron "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Dorsal Root Ganglion"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gurkiewicz@gmail.com"
+ },
+ "ver_date": "2011-03-24T16:37:14",
+ "ver_number": 9
+ },
+ "138205": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Migliore M, De Blasi I, Tegolo D, Migliore R (2011) A modeling study suggesting how a reduction in the context-dependent input on CA1 pyramidal neurons could generate schizophrenic behavior. Neural Networks, doi:10.1016/j.neunet.2011.01.001"
+ },
+ "class_id": 19,
+ "created": "2011-03-23T05:48:58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 138205,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ },
+ {
+ "object_id": 231425,
+ "object_name": "Hallucinations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138208,
+ "object_name": "Migliore M, De Blasi I, Tegolo D, Migliore R (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: schizophrenic behavior (Migliore et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON files from the paper: A modeling study suggesting how a reduction in the context-dependent input on CA1 pyramidal neurons could generate schizophrenic behavior. by M. Migliore, I. De Blasi, D. Tegolo, R. Migliore, Neural Networks,(2011), doi:10.1016/j.neunet.2011.01.001. Starting from the experimentally supported assumption on hippocampal neurons we explore an experimentally testable prediction at the single neuron level. The model shows how and to what extent a pathological hypofunction of a contextdependent distal input on a CA1 neuron can generate hallucinations by altering the normal recall of objects on which the neuron has been previously tuned. The results suggest that a change in the context during the recall phase may cause an occasional but very significant change in the set of active dendrites used for features recognition, leading to a distorted perception of objects."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138205",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@pa.ibf.cnr.it"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181452,
+ "object_name": "138205"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T12:37:33.57",
+ "ver_number": 16
+ },
+ "138273": {
+ "class_id": 19,
+ "created": "2011-03-25T16:20:16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 138273,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 137854,
+ "object_name": "Ostroumov K (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Stochastic 3D model of neonatal rat spinal motoneuron (Ostroumov 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Although existing models of motoneurons have indicated the distributed role of certain conductances in\r\nregulating firing, it is unclear how the spatial distribution of certain currents is ultimately shaping motoneuron output. \r\n\r\nThus, it would be helpful to\r\nbuild a bridge between histological and electrophysiological data. \r\n\r\nThe present report is based on the construction of a 3D motoneuron model based\r\non available parameters applicable to the neonatal spinal cord. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138273",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2011-03-25T17:32:34",
+ "ver_number": 2
+ },
+ "138321": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.ploscompbiol.org/article/info%3Adoi%2F10.1371%2Fjournal.pcbi.1002022"
+ },
+ "class_id": 19,
+ "created": "2011-03-27T13:36:24",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 138321,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 110661,
+ "object_name": "Korngreen, Alon [alon.korngreen at gmail.com]"
+ },
+ {
+ "object_id": 138322,
+ "object_name": "Pashut, Tamar [tamar.pashut at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 138323,
+ "object_name": "Magnetic stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138324,
+ "object_name": "Pashut T, Wolfus S, Friedman A, Lavidor M, Bar-Gad I, Yeshurun Y, Korngreen A (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "138321",
+ "name": "ModelView"
+ }
+ ],
+ "default": "138321"
+ },
+ "name": "Mechanisms of magnetic stimulation of central nervous system neurons (Pashut et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Transcranial magnetic stimulation (TMS) is a widely applied tool for probing cognitive function in humans and is one of the best tools for clinical treatments and interfering with cognitive tasks. Surprisingly, while TMS has been commercially available for decades, the cellular mechanisms underlying magnetic stimulation remain unclear. Here we investigate these mechanisms using compartmental modeling. We generated a numerical scheme allowing simulation of the physiological response to magnetic stimulation of neurons with arbitrary morphologies and active properties. Computational experiments using this scheme suggested that TMS affects neurons in the central nervous system (CNS) primarily by somatic stimulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138321",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "magnetic stimulation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Pashut, Tamar "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "alon.korngree@biu.ac.il"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181622,
+ "object_name": "138321"
+ }
+ ]
+ },
+ "ver_date": "2017-02-16T09:34:33.747",
+ "ver_number": 6
+ },
+ "138379": {
+ "class_id": 19,
+ "created": "2011-03-29T14:48:02",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 138379,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139925,
+ "object_name": "Neymotin SA, Lee H, Park E, Fenton AA, Lytton WW (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Emergence of physiological oscillation frequencies in neocortex simulations (Neymotin et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Coordination of neocortical oscillations has been hypothesized to underlie the \"binding\" essential to cognitive function.\r\n\r\nHowever, the mechanisms that generate neocortical oscillations in physiological frequency bands remain unknown.\r\n\r\nWe hypothesized that interlaminar relations in neocortex would provide multiple intermediate loops that would play particular roles in generating oscillations, adding different dynamics to the network.\r\n\r\nWe simulated networks from sensory neocortex using 9 columns of event-driven rule-based neurons wired according to anatomical data and driven with random white-noise synaptic inputs.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138379",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Hubs"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Low-threshold-spiking cortical interneuron"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181715,
+ "object_name": "138379"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T15:23:25.667",
+ "ver_number": 36
+ },
+ "138382": {
+ "citation": {
+ "attr_id": 391,
+ "value": "20981513"
+ },
+ "class_id": 19,
+ "created": "2011-03-29T23:32:42",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 138382,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138165,
+ "object_name": "Anwar H, Hong S, De Schutter E (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "138382_1",
+ "name": "Detailed Calcium dynamics model"
+ },
+ {
+ "id": "138382_2",
+ "name": "Calcium transients using different buffering models"
+ },
+ {
+ "id": "138382_3",
+ "name": "Calcium spikes using single pool model"
+ },
+ {
+ "id": "138382_4",
+ "name": "Calcium spikes using double pool model"
+ },
+ {
+ "id": "138382_5",
+ "name": "Calcium spikes using detailed model"
+ },
+ {
+ "id": "138382_6",
+ "name": "Calcium spikes using DCM"
+ }
+ ],
+ "default": "138382_1"
+ },
+ "name": "Controlling KCa channels with different Ca2+ buffering models in Purkinje cell (Anwar et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this work, we compare the dynamics of different buffering models during generation of a dendritic Ca2+ spike in a single compartment model of a Purkinje cell dendrite. The Ca2+ buffering models used are 1) a single Ca2+ pool, 2) two Ca2+ pools respectively for the fast and slow transients, 3) a detailed calcium model with buffers, pump (Schmidt et al., 2003), and diffusion and 4) a calcium model with buffers, pump and diffusion compensation. The parameters of single pool and double pool are tuned, using Neurofitter (Van Geit et al., 2007), to approximate the behavior of detailed calcium dynamics over range of 0.5 \u00c2\u00b5M to 8 \u00c2\u00b5M of intracellular calcium. The diffusion compensation is modeled using a buffer-like mechanism called DCM. To use DCM robustly for different diameter compartments, its parameters are estimated, using Neurofitter (Van Geit et al., 2007), as a function of compartment diameter (0.8 \u00c2\u00b5m-20 \u00c2\u00b5m)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138382",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Anwar, Haroon "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "anwar@oist.jp"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181350,
+ "object_name": "138382_4"
+ },
+ {
+ "object_id": 181351,
+ "object_name": "138382_5"
+ },
+ {
+ "object_id": 181352,
+ "object_name": "138382_6"
+ },
+ {
+ "object_id": 181355,
+ "object_name": "138382_2"
+ },
+ {
+ "object_id": 181356,
+ "object_name": "138382_3"
+ },
+ {
+ "object_id": 181702,
+ "object_name": "138382_1"
+ }
+ ]
+ },
+ "ver_date": "2023-01-30T14:36:33.143",
+ "ver_number": 18
+ },
+ "138421": {
+ "class_id": 19,
+ "created": "2011-03-30T11:27:58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 138421,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 115975,
+ "object_name": "Tort AB, Rotstein HG, Dugladze T, Gloveli T, Kopell NJ (2007)"
+ },
+ {
+ "object_id": 121619,
+ "object_name": "Gloveli T, Dugladze T, Rotstein HG, Traub RD, Monyer H, Heinemann U, Whittington MA, Kopell NJ (2005)"
+ },
+ {
+ "object_id": 138380,
+ "object_name": "Kopell N, Borgers C, Pervouchine D, Malerba P, Tort ABL (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Gamma and theta rythms in biophysical models of hippocampus circuits (Kopell et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... the main rhythms displayed by the hippocampus, the gamma (30\u201390 Hz) and theta (4\u201312 Hz) rhythms. We concentrate on modeling\r\nin vitro experiments, but with an eye toward possible in vivo implications. ...\r\nWe use simpler biophysical models; all cells have a single compartment only, and the\r\ninterneurons are restricted to two types: fast-spiking (FS) basket cells and oriens\r\nlacunosum-moleculare (O-LM) cells. \r\n... , we aim not so much at reproducing dynamics in great detail, but at clarifying the essential mechanisms underlying the production of the rhythms and their interactions (Kopell, 2005). ...\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138421",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2011-03-30T15:20:21",
+ "ver_number": 6
+ },
+ "138631": {
+ "class_id": 19,
+ "created": "2011-04-07T18:12:30",
+ "gitrepo": false,
+ "id": 138631,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138606,
+ "object_name": "Moustafa AA, Gluck MA (2011)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Prefrontal\u2013striatal Parkinsons comp. model of multicue category learning (Moustafa and Gluck 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nIn this\r\nmodel, PFC dopamine is key for attentional learning, whereas\r\nbasal ganglia dopamine, consistent with other models, is key for\r\nreinforcement and motor learning.\r\n\r\nThe model assumes that competitive\r\ndynamics among PFC neurons is the neural mechanism\r\nunderlying stimulus selection with limited attentional resources,\r\nwhereas competitive dynamics among striatal neurons is the\r\nneural mechanism underlying action selection. \r\n\r\nAccording to our\r\nmodel, PD is associated with decreased phasic and tonic dopamine\r\nlevels in both PFC and basal ganglia. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138631",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2011-04-08T11:09:36",
+ "ver_number": 4
+ },
+ "138634": {
+ "class_id": 19,
+ "created": "2011-04-08T13:25:41",
+ "gitrepo": false,
+ "id": 138634,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138588,
+ "object_name": "Moustafa AA, Myers CE, Gluck MA (2009)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A neurocomputational model of classical conditioning phenomena (Moustafa et al. 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here, we show that the same information-processing function proposed\r\nfor the hippocampal region in the Gluck and Myers (1993) model can also be implemented in\r\na network without using the backpropagation algorithm. Instead, our newer instantiation of\r\nthe theory uses only (a) Hebbian learning methods which match more closely with synaptic\r\nand associative learning mechanisms ascribed to the hippocampal region and (b) a more\r\nplausible representation of input stimuli. \r\nWe demonstrate here that this new more\r\nbiologically plausible model is able to simulate various behavioral effects, including latent\r\ninhibition, acquired equivalence, sensory preconditioning, negative patterning, and context\r\nshift effects. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138634",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2011-08-19T10:03:44",
+ "ver_number": 2
+ },
+ "138950": {
+ "class_id": 19,
+ "created": "2011-04-25T16:00:56",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 138950,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128503,
+ "object_name": "Goldwyn, Joshua [jhgoldwyn at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138952,
+ "object_name": "Goldwyn JH, Shea-Brown E (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Stochastic versions of the Hodgkin-Huxley equations (Goldwyn, Shea-Brown 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A Matlab gui for simulating different channel noise models using the Hodgkin-Huxley equations. Methods provided and reviewed in Goldwyn and Shea-Brown (2011) are: current noise, subunit noise, conductance noise, and Markov chain, as well as the standard deterministic Hodgkin-Huxley model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138950",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Channel noise"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jgoldwyn@uw.edu"
+ },
+ "ver_date": "2018-02-26T11:27:05.08",
+ "ver_number": 10
+ },
+ "138951": {
+ "class_id": 19,
+ "created": "2011-04-25T16:09:18",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 138951,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140050,
+ "object_name": "Monaco JD, Abbott LF, Abbott LF (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Modular grid cell responses as a basis for hippocampal remapping (Monaco and Abbott 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Hippocampal place fields, the local regions of activity recorded from place cells in exploring rodents, can undergo large changes in relative\r\nlocation during remapping.\r\n\r\nThis process would appear to require some form of modulated global input.\r\n\r\nGrid-cell responses recorded from layer II of medial entorhinal cortex in rats have been observed to realign concurrently with hippocampal remapping, making them a candidate input source.\r\n\r\nHowever, this realignment occurs coherently across colocalized ensembles of grid cells (Fyhn et al., 2007).\r\n\r\nThe hypothesized entorhinal contribution to remapping depends on whether this coherence extends to all grid cells, which is currently\r\nunknown.\r\n\r\nWe study whether dividing grid cells into small numbers of independently realigning modules can both account for this\r\nlocalized coherence and allow for hippocampal remapping.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138951",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ },
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2016-07-19T17:27:39.313",
+ "ver_number": 8
+ },
+ "138970": {
+ "citation": {
+ "attr_id": 391,
+ "value": "B. Sen Bhattacharya, D. Coyle, L. Maguire, \"A thalamo-cortico-thalamic neural mass model to study alpha rhythms in Alzheimer's Disease\", (in press) Neural Networks Sp. issue on Brain Disorders, 2011. doi:10.1016/j.neunet.2011.02.009"
+ },
+ "class_id": 19,
+ "created": "2011-05-04T07:14:00",
+ "gitrepo": false,
+ "id": 138970,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139147,
+ "object_name": "Sen-Bhattacharya, Basabdatta [basab.sen.b at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138938,
+ "object_name": "Bhattacharya BS, Coyle D, Maguire LP (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "A Neural mass computational model of the Thalamocorticothalamic circuitry (Bhattacharya et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The model presented here is a bio-physically plausible version of a simple thalamo-cortical neural mass computational model proposed by Lopes da Silva in 1974 to simulate brain EEG activity within the alpha band (8-13 Hz). The thalamic and cortical circuitry are presented as separate modules in this model with cell populations as in biology. The connectivity between cell populations are as reported by Sherman, S. in Scholarpedia, 2006. The values of the synaptic connectivity parameters are as reported by Van Horn et al, 2000. In our paper (doi:10.1016/j.neunet.2011.02.009), we study the model behaviour while varying the values of the synaptic connectivity parameters (Cyyy) in the model about their respective 'basal' (intial) values."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/138970",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Brain Rhythms"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sen Bhattacharya, Basabdatta "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Thalmo-cortical cell population"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "bs.bhattacharya@ulster.ac.uk"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-10-24T08:30:01.117",
+ "ver_number": 13
+ },
+ "139150": {
+ "class_id": 19,
+ "created": "2011-05-05T16:31:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 139150,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124046,
+ "object_name": "Polsky, Alon [alonpol at tx.technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139271,
+ "object_name": "Poleg-Polsky A, Diamond JS (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "139150",
+ "name": "ModelView"
+ }
+ ],
+ "default": "139150"
+ },
+ "name": "Interacting synaptic conductances during, distorting, voltage clamp (Poleg-Polsky and Diamond 2011)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This simulation examines the accuracy of the voltage clamp technique\r\nin detecting the excitatory and the inhibitory components of the\r\nsynaptic drive."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139150",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "apmega@yahoo.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181522,
+ "object_name": "139150"
+ }
+ ]
+ },
+ "ver_date": "2013-12-10T15:30:26",
+ "ver_number": 8
+ },
+ "139266": {
+ "citation": {
+ "attr_id": 391,
+ "value": "paper in preparation"
+ },
+ "class_id": 19,
+ "created": "2011-05-09T13:16:15",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 139266,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139269,
+ "object_name": "Zandt, Bas-Jan [Bas-Jan.Zandt at biomed.uib.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139270,
+ "object_name": "Anoxic depolarization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140468,
+ "object_name": "Zandt BJ, ten Haken B, van Dijk JG, van Putten MJ (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Single neuron with ion concentrations to model anoxic depolarization (Zandt et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A minimal single neuron model, including changing ion concentrations and homeostasis mechanisms. It shows the sudden depolarization that occurs after prolonged anoxia/ischemia."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139266",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Anoxic depolarization"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Cl, leak; I Na, leak"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zandt, Bas-Jan\r\n"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "b.zandt@utwente.nl"
+ },
+ "ver_date": "2015-08-04T15:15:39.327",
+ "ver_number": 9
+ },
+ "139296": {
+ "citation": {
+ "attr_id": 391,
+ "value": "DOI: 10.1007/s10827-011-0332-1"
+ },
+ "class_id": 19,
+ "created": "2011-05-11T09:12:25",
+ "gitrepo": false,
+ "id": 139296,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139299,
+ "object_name": "Taylor, Peter Neal [peter.taylor at postgrad.manchester.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139298,
+ "object_name": "Taylor PN, Baier G (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A spatially extended model for macroscopic spike-wave discharges (Taylor and Baier 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A spatially extended neural field model for generating spike-wave based on the Amari (1977) model implemented in MATLAB."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139296",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Taylor, Peter Neal"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "peter.taylor@postgrad.manchester.ac.uk"
+ },
+ "ver_date": "2011-05-11T11:12:04",
+ "ver_number": 4
+ },
+ "139418": {
+ "class_id": 19,
+ "created": "2011-05-19T09:51:44",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139418,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189948,
+ "object_name": "Fietkiewicz, Chris"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 232102,
+ "object_name": "Respiratory control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142658,
+ "object_name": "Fietkiewicz C, Loparo KA, Wilson CG (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Bursting respiratory net: clustered architecture gives large phase diff`s (Fietkiewicz et al 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Using a previous model of respiratory rhythm generation, we modified the network architecture such that cells can be segregated into two clusters. Cells within a given cluster burst with smaller phase differences than do cells from different clusters. This may explain the large phase differences seen experimentally, as reported in the paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139418",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Respiratory rhythmicity"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Fietkiewicz, Chris"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Bursting pacemaker from pre-B\u00c3\u00b6tzinger complex"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181274,
+ "object_name": "139418_1"
+ },
+ {
+ "object_id": 181770,
+ "object_name": "139418_2"
+ }
+ ]
+ },
+ "ver_date": "2021-05-22T13:57:17.283",
+ "ver_number": 13
+ },
+ "139421": {
+ "class_id": 19,
+ "created": "2011-05-20T13:16:18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139421,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33748,
+ "object_name": "Lazarewicz, Maciej [mlazarew at gmu.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 13855,
+ "object_name": "Therapeutics"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267629,
+ "object_name": "Neymotin SA, Lazarewicz MT, Sherif M, Contreras D, Finkel LH, Lytton WW (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Ketamine disrupts theta modulation of gamma in a computer model of hippocampus (Neymotin et al 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154093,
+ "object_name": "Hippocampus CA3 interneuron basket GABA cell"
+ },
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Abnormalities in oscillations have been suggested to play a role in schizophrenia. \r\n\r\nWe studied theta-modulated gamma oscillations in a computer model of hippocampal CA3 in vivo with and\r\nwithout simulated application of ketamine, an NMDA receptor antagonist and psychotomimetic.\r\n\r\nNetworks of 1200 multi-compartment neurons (pyramidal, basket and oriens-lacunosum moleculare,\r\nOLM, cells) generated theta and gamma oscillations from intrinsic network dynamics: basket cells\r\nprimarily generated gamma and amplified theta, while OLM cells strongly contributed to theta.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139421",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Mohamed Sherif"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "basket cell, oriens-lacunosum moleculare interneur"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-10T14:07:54.833",
+ "ver_number": 31
+ },
+ "139457": {
+ "class_id": 19,
+ "created": "2011-05-24T15:38:40",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139457,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139458,
+ "object_name": "Gabbiani F, Cox SJ (2010)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Mathematics for Neuroscientists (Gabbiani and Cox 2010)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This textbook provides a good source for learning the mathematics relevant to computational neuroscience and also the neuroscience itself. There are 232 computer code examples from the book available through the http://www.elsevierdirect.com/companions/9780123748829/pictures/code/index.html code link here and in the below page copied from the books companion web site."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139457",
+ "ver_date": "2016-06-02T14:53:00.717",
+ "ver_number": 4
+ },
+ "139653": {
+ "class_id": 19,
+ "created": "2011-06-01T15:54:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139653,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140733,
+ "object_name": "Hay, Etay [etay.hay at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145814,
+ "object_name": "Hay E, Hill S, Sch\u00fcrmann F, Markram H, Segev I (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "139653_1",
+ "name": "Fig 4A. (BAC_firing.hoc)"
+ },
+ {
+ "id": "139653_2",
+ "name": "Fig 4B. Upper trace. (Step_current_firing.hoc)"
+ },
+ {
+ "id": "139653_3",
+ "name": "Fig 5A. (critical_frequency.hoc)"
+ }
+ ],
+ "default": "139653_1"
+ },
+ "name": "L5b PC model constrained for BAC firing and perisomatic current step firing (Hay et al., 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nL5b pyramidal cells have been the subject of extensive experimental and modeling studies, yet conductance-based models of these cells that faithfully reproduce both their perisomatic Na+-spiking behavior as well as key dendritic active properties, including Ca2+ spikes and back-propagating action potentials, are still lacking.\r\n\r\nBased on a large body of experimental recordings from both the soma and dendrites of L5b pyramidal cells in adult rats, we characterized key features of the somatic and dendritic firing and quantified their statistics.\r\n\r\nWe used these features to constrain the density of a set of ion channels over the soma and dendritic surface via multi-objective optimization with an evolutionary algorithm, thus generating a set of detailed conductance-based models that faithfully replicate the back-propagating action potential activated Ca2+ spike firing and the perisomatic firing response to current steps, as well as the experimental variability of the properties.\r\n...\r\nThe models we present provide several experimentally-testable predictions and can serve as a powerful tool for theoretical investigations of the contribution of single-cell dynamics to network activity and its computational capabilities.\r\n\""
+ },
+ "opensourcebrain": {
+ "value": "l5bpyrcellhayetal2011"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139653",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-01-30T09:40:26.523",
+ "ver_number": 23
+ },
+ "139654": {
+ "citation": {
+ "attr_id": 391,
+ "value": "R\u00f6ssert C, Straka H, Moore LE, Glasauer S (2011) Cellular and network contributions to vestibular signal processing: impact of ion conductances, synaptic inhibition and noise. J Neurosci (to appear)"
+ },
+ "class_id": 19,
+ "created": "2011-06-06T12:46:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139654,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139758,
+ "object_name": "Roessert, Christian [christian.a at roessert.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245693,
+ "object_name": "Vestibular"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139759,
+ "object_name": "R\u00f6ssert C, Moore LE, Straka H, Glasauer S (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "139654_1",
+ "name": "Phasic model T8 step"
+ },
+ {
+ "id": "139654_2",
+ "name": "Phasic model T8 ZAP"
+ },
+ {
+ "id": "139654_3",
+ "name": "Tonic model T1 step"
+ },
+ {
+ "id": "139654_4",
+ "name": "Tonic model T1 ZAP"
+ },
+ {
+ "id": "139654_5",
+ "name": "Synaptic train stimulation, with inhibition"
+ },
+ {
+ "id": "139654_6",
+ "name": "Synaptic train stimulation, no inhibition"
+ }
+ ],
+ "default": "139654_1"
+ },
+ "name": "Frog second-order vestibular neuron models (Rossert et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 139834,
+ "object_name": "Vestibular neuron"
+ },
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 214,
+ "object_name": "Glycine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This implements spiking Hodgkin-Huxley type models of tonic and phasic second-order vestibular neurons. Models fitted to intracellular spike and membrane potential recordings from frog (Rana temporaria). The models can be stimulated by intracellular step current, frequency current (ZAP) or synaptic stimulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139654",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "R\u00c3\u0192\u00c2\u00b6ssert, Christian "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Vestibular neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "christian.a@roessert.de"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181615,
+ "object_name": "139654_3"
+ },
+ {
+ "object_id": 181616,
+ "object_name": "139654_2"
+ },
+ {
+ "object_id": 181617,
+ "object_name": "139654_1"
+ },
+ {
+ "object_id": 181618,
+ "object_name": "139654_6"
+ },
+ {
+ "object_id": 181619,
+ "object_name": "139654_5"
+ },
+ {
+ "object_id": 181620,
+ "object_name": "139654_4"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:00:19.323",
+ "ver_number": 14
+ },
+ "139655": {
+ "class_id": 19,
+ "created": "2011-06-06T17:36:32",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139655,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145179,
+ "object_name": "Kim M, Park AJ, Havekes R, Chay A, Guercio LA, Oliveira RF, Abel T, Blackwell KT (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 139757,
+ "object_name": "NeuroRD"
+ }
+ ]
+ },
+ "name": "Hippocampus CA1: Simulations of LTP signaling pathways (Kim M et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a multi-compartmental, stochastic version of the Kim et al. 2010 paper. There are a few additional reactions, and some of the rate constants have been updated. It addresses the role of molecule anchoring in PKA dependent hippocampal LTP.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139655",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "ver_date": "2017-08-01T17:25:28.637",
+ "ver_number": 8
+ },
+ "139656": {
+ "class_id": 19,
+ "created": "2011-06-07T02:26:28",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139656,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156119,
+ "object_name": "Simoes-de-Souza, Fabio [fabio.souza at ufabc.edu.br]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139997,
+ "object_name": "Sim\u00f5es de Souza F, De Schutter E (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cerebellar cortex oscil. robustness from Golgi cell gap jncs (Simoes de Souza and De Schutter 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Previous one-dimensional network modeling of the cerebellar granular layer has been successfully\r\nlinked with a range of cerebellar cortex oscillations observed in vivo. However, the recent discovery of gap\r\njunctions between Golgi cells (GoCs), which may cause oscillations by themselves, has raised the question of how\r\ngap-junction coupling affects GoC and granular-layer oscillations. To investigate this question, we developed a\r\nnovel two-dimensional computational model of the GoC-granule cell (GC) circuit with and without gap junctions\r\nbetween GoCs. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139656",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T12:57:22.457",
+ "ver_number": 19
+ },
+ "139657": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Cornelia Kopp-Scheinpflug, Adam JB Tozer, Susan W Robinson Bruce L Tempel, Matthias H Hennig and Ian D Forsythe (2011). The Sound of Silence: ionic mechanisms encoding sound termination. Neuron, in press."
+ },
+ "class_id": 19,
+ "created": "2011-06-07T08:11:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122818,
+ "object_name": "HCN Cnga1"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139657,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139659,
+ "object_name": "Hennig, Matthias H [mhhennig at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139660,
+ "object_name": "Kopp-Scheinpflug C, Tozer AJ, Robinson SW, Tempel BL, Hennig MH, Forsythe ID (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "139657_1",
+ "name": "50 hz"
+ },
+ {
+ "id": "139657_2",
+ "name": "100 hz"
+ },
+ {
+ "id": "139657_3",
+ "name": "200 hz"
+ },
+ {
+ "id": "139657_4",
+ "name": "300 hz"
+ },
+ {
+ "id": "139657_5",
+ "name": "400 hz"
+ }
+ ],
+ "default": "139657_1"
+ },
+ "name": "Superior paraolivary nucleus neuron (Kopp-Scheinpflug et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 139658,
+ "object_name": "Superior paraolivary nucleus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 214,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model of neurons in the brainstem superior paraolivary nucleus (SPN), which produce very salient offset firing during sound stimulation. Rebound offset firing is triggered by IPSPs coming from the medial nucleus of the trapezoid body (MNTB). This model shows that AP firing can emerge from inhibition through integration of large IPSPs, driven by an\r\nextremely negative chloride reversal potential, combined with a large hyperpolarization-\r\nactivated non-specific cationic current (IH), with a secondary contribution from a T-type calcium conductance (ITCa). As a result, tiny gaps in sound stimuli of just 3-4ms can elicit reliable APs that signal such brief offsets."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139657",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mhhennig@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181751,
+ "object_name": "139657_4"
+ },
+ {
+ "object_id": 181752,
+ "object_name": "139657_5"
+ },
+ {
+ "object_id": 181754,
+ "object_name": "139657_1"
+ },
+ {
+ "object_id": 181755,
+ "object_name": "139657_2"
+ },
+ {
+ "object_id": 181756,
+ "object_name": "139657_3"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T12:48:44.087",
+ "ver_number": 9
+ },
+ "139760": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Halfmann, K., & Crisp, K. (2011). A kinematic study of pulsation in the dorsal blood vessel of the blackworm, Lumbriculus variegatus. Impulse, "
+ },
+ "class_id": 19,
+ "created": "2011-06-08T12:30:18",
+ "gitrepo": false,
+ "id": 139760,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139836,
+ "object_name": "Halfmann K, Crisp K (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Model of peristalsis in the dorsal blood vessel of Lumbriculus variegatus (Halfmann and Crisp 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The blackworm, Lumbriculus variegatus, has a segmented dorsal blood vessel that acts as a peristaltic pump to move blood through its closed circulatory system. Here, we conducted a kinematic study using videography and computational modeling as a first step toward understanding the control of DBV pulsation. A simple feed-forward system of distributed, coupled neuronal oscillators is a sufficient model was a sufficient model to explain the control of pulsation in the blackworm."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139760",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kameko-halfmann@uiowa.edu"
+ },
+ "ver_date": "2011-06-10T10:06:04",
+ "ver_number": 7
+ },
+ "139883": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Shyam Diwakar, Paola Lombardo, Sergio Solinas, Giovanni Naldi, Egidio D'Angelo. Local field potential modeling predicts dense activation in cerebellar granule cells clusters under LTP and LTD control, PLoS ONE, 2011."
+ },
+ "class_id": 19,
+ "created": "2011-06-12T16:49:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 139883,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116853,
+ "object_name": "Diwakar, Shyam [shyam at amrita.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139993,
+ "object_name": "Diwakar S, Lombardo P, Solinas S, Naldi G, D'Angelo E (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 54156,
+ "object_name": "Octave"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "139883_1",
+ "name": "In vitro"
+ },
+ {
+ "id": "139883_2",
+ "name": "In vivo"
+ }
+ ],
+ "default": "139883_1"
+ },
+ "name": "Reconstructing cerebellar granule layer evoked LFP using convolution (ReConv) (Diwakar et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model allows reconstruction of evoked local field potentials as seen in the cerebellar granular layer. The approach uses a detailed model of cerebellar granule neuron to generate data traces and then uses a \"ReConv\" or jittered repetitive convolution technique to reproduce post-synaptic local field potentials in the granular layer. The algorithm was used to generate both in vitro and in vivo evoked LFP and reflected the changes seen during LTP and LTD, when such changes were induced in the underlying neurons by modulating release probability of synapses and sodium channel regulated intrinsic excitability of the cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/139883",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "evoked LFP"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "population signal"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shyam@amrita.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2022-12-16T10:49:58.413",
+ "ver_number": 14
+ },
+ "140033": {
+ "class_id": 19,
+ "created": "2011-06-16T06:27:48",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 266550,
+ "object_name": "FMR1 FMRP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 140033,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97968,
+ "object_name": "Giugliano, Michele [mgiugliano at gmail.com]"
+ },
+ {
+ "object_id": 140045,
+ "object_name": "Loebel, Alex [alex.loebel at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140967,
+ "object_name": "Testa-Silva G, Loebel A, Giugliano M, de Kock CP, Mansvelder HD, Meredith RM (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hyperconnectivity, slow synapses in PFC mental retardation and autism model (Testa-Silva et al 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The subdirectory 'matlab' contains MATLAB scripts (The Mathworks, USA) that can be used to reproduce the panels of Figures 4-5.\r\n\r\nThis directory contains files to reproduce sample computer simulations presented in the 2011 paper authored by\r\n\r\nMeredith, R., Testa-Silva, G., Loebel, A., Giugliano, M., de Kock, C.; Mansvelder, H. \r\n\"Hyperconnectivity and slow synapses in prefrontal cortex of a model for mental retardation and autism\".\r\n\r\n\r\nABSTRACT\r\n\"... We propose that these findings are tightly linked: using a network model, we show that slower synapses are essential to counterbalance hyperconnectivity in order to maintain a dynamic range of excitatory activity. However, the slow synaptic time constants induce decreased responsiveness to low frequency stimulation, which may explain deficits in integration and information processing in attentional neuronal networks in neurodevelopmental disorders.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140033",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Alex Loebel"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2020-06-10T13:53:50.857",
+ "ver_number": 15
+ },
+ "140038": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.ncbi.nlm.nih.gov/pubmed/19571204"
+ },
+ "class_id": 19,
+ "created": "2011-06-20T18:01:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 88208,
+ "object_name": "Late Na"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 140038,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140039,
+ "object_name": "Devor, Marshall [marshlu at vms.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124739,
+ "object_name": "Kovalsky Y, Amir R, Devor M (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dorsal root ganglion (DRG) neuronal model (Kovalsky et al. 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model, diverged from oscillatory parameters seen in live cells and failed to produce characteristic ectopic discharge patterns. Here we show that use of a more complete set of Na+ conductances--which includes several delayed components--enables simulation of the entire repertoire of oscillation-triggered electrogenic phenomena seen in live dorsal root ganglion (DRG) neurons. This includes a physiological window of induction and natural patterns of spike discharge. An INa+ component at 2-20 ms was particularly important, even though it represented only a tiny fraction of overall INa+ amplitude. With the addition of a delayed rectifier IK+ the singlet firing seen in some DRG neurons can also be simulated. The model reveals the key conductances that underlie afferent ectopia, conductances that are potentially attractive targets in the search for more effective treatments of neuropathic pain."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140038",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Devor, Marshall "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lee.dongchul@gmail.com"
+ },
+ "ver_date": "2011-06-21T10:34:23",
+ "ver_number": 3
+ },
+ "140246": {
+ "class_id": 19,
+ "created": "2011-06-29T16:03:06",
+ "gitrepo": false,
+ "id": 140246,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140100,
+ "object_name": "Csercsik D, Farkas I, Hrabovszky E, Liposits Z (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A simple integrative electrophysiological model of bursting GnRH neurons (Csercsik et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 113950,
+ "object_name": "GnRH neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper a modular model of the GnRH\r\nneuron is presented. For the aim of simplicity, the\r\ncurrents corresponding to fast time scales and action\r\npotential generation are described by an impulsive system,\r\nwhile the slower currents and calcium dynamics\r\nare described by usual ordinary differential equations\r\n(ODEs). The model is able to reproduce the depolarizing\r\nafterpotentials, afterhyperpolarization, periodic\r\nbursting behavior and the corresponding calcium transients\r\nobserved in the case of GnRH neurons."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140246",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2017-07-19T16:40:50.98",
+ "ver_number": 8
+ },
+ "140249": {
+ "class_id": 19,
+ "created": "2011-07-01T09:53:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2397,
+ "object_name": "I Mixed"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 140249,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140251,
+ "object_name": "Halnes, Geir [geir.halnes at nmbu.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141509,
+ "object_name": "Halnes G, Augustinaite S, Heggelund P, Einevoll GT, Migliore M (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A multi-compartment model for interneurons in the dLGN (Halnes et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 140252,
+ "object_name": "Thalamus lateral geniculate nucleus interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model for dLGN interneurons is presented in two parameterizations (P1 & P2), which were fitted to current-clamp data from two different interneurons (IN1 & IN2). The model qualitatively reproduces the responses in IN1 & IN2 under 8 different experimental condition, and quantitatively reproduces the I/O-relations (#spikes elicited as a function of injected current)."
+ },
+ "opensourcebrain": {
+ "value": "dlgninterneuronhalnesetal2011"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140249",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Halnes, Geir"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Thalamic Interneuron in dorsal LGN"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "geir.halnes@umb.no"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181151,
+ "object_name": "140249_b1"
+ },
+ {
+ "object_id": 181152,
+ "object_name": "140249_b2"
+ },
+ {
+ "object_id": 181254,
+ "object_name": "140249_a1"
+ },
+ {
+ "object_id": 181255,
+ "object_name": "140249_a2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:06:02",
+ "ver_number": 16
+ },
+ "140254": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Klaus A, Planert H, Hjorth J, Berke JD, Silberberg G and Hellgren Kotaleski J (2011). Striatal fast-spiking interneurons: from firing patterns to postsynaptic impact. Front. Syst. Neurosci. 5:57. doi: 10.3389/fnsys.2011.00057"
+ },
+ "class_id": 19,
+ "created": "2011-07-05T16:03:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 140254,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140256,
+ "object_name": "Klaus, Andreas "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 97751,
+ "object_name": "Stuttering"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140255,
+ "object_name": "Klaus A, Planert H, Hjorth J, Berke JD, Silberberg G, Kotaleski JH (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ },
+ {
+ "object_id": 140257,
+ "object_name": "PGENESIS"
+ }
+ ]
+ },
+ "name": "Firing patterns in stuttering fast-spiking interneurons (Klaus et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a morphologically extended version of the fast-spiking interneuron by Golomb et al. (2007).\r\n\r\nThe model captures the stuttering firing pattern and subthreshold oscillations in response to step current input as observed in many cortical and striatal fast-spiking cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140254",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Klaus, Andreas"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Fast-spiking interneuron"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Genesis and PGenesis"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Andreas.Klaus@nih.gov"
+ },
+ "ver_date": "2011-07-06T15:23:11",
+ "ver_number": 6
+ },
+ "140299": {
+ "class_id": 19,
+ "created": "2011-07-06T02:43:52",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 140299,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 141234,
+ "object_name": "Nomura, Masaki [nomura at rcai.riken.jp]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141230,
+ "object_name": "Kubota Y, Karube F, Nomura M, Gulledge AT, Mochizuki A, Schertel A, Kawaguchi Y (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "140299_1",
+ "name": "BE17BNoActive"
+ },
+ {
+ "id": "140299_2",
+ "name": "BE59DNoActive"
+ },
+ {
+ "id": "140299_3",
+ "name": "BE77CNoActive"
+ },
+ {
+ "id": "140299_4",
+ "name": "LV38ENoActive"
+ }
+ ],
+ "default": "140299_1"
+ },
+ "name": "Four cortical interneuron subtypes (Kubota et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Using electron microscopy and serial reconstructions, we analyzed the dendritic trees of\r\nfour morphologically distinct neocortical interneuron subtypes to reveal two underlying organizational\r\nprinciples common to all.\r\n\r\nFirst, cross-sectional areas at any given point within a dendrite were proportional\r\nto the summed length of all dendritic segments distal to that point.\r\n\r\n...\r\nSecond, dendritic cross-sections\r\nbecame progressively more elliptical at more proximal, larger diameter, dendritic locations.\r\n\r\nFinally,\r\ncomputer simulations revealed that these conserved morphological features limit distance dependent\r\nfiltering of somatic EPSPs and facilitate distribution of somatic depolarization into all dendritic\r\ncompartments.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140299",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Precise Morphology"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Nomura, Masaki"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "nonpyramidal neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nomura@rcai.riken.jp"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181326,
+ "object_name": "140299_2"
+ },
+ {
+ "object_id": 181332,
+ "object_name": "140299_4"
+ },
+ {
+ "object_id": 181570,
+ "object_name": "140299_1"
+ },
+ {
+ "object_id": 181647,
+ "object_name": "140299_3"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:34:51",
+ "ver_number": 11
+ },
+ "140462": {
+ "class_id": 19,
+ "created": "2011-07-12T10:54:45",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88117,
+ "object_name": "I_KHT"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 140462,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140470,
+ "object_name": "Masurkar, Arjun [avmasurkar at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140405,
+ "object_name": "Masurkar AV, Chen WR (2011)"
+ },
+ {
+ "object_id": 140439,
+ "object_name": "Masurkar AV, Chen WR (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "140462",
+ "name": "ModelView"
+ }
+ ],
+ "default": "140462"
+ },
+ "name": "Calcium and potassium currents of olfactory bulb juxtaglomerular cells (Masurkar and Chen 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 140469,
+ "object_name": "Olfactory bulb main juxtaglomerular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Inward and outward currents of the olfactory bulb juxtaglomerular cells are characterized in the experiments and modeling in these two Masurkar and Chen 2011 papers."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140462",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181542,
+ "object_name": "140462"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:07:59.457",
+ "ver_number": 9
+ },
+ "140465": {
+ "class_id": 19,
+ "created": "2011-07-13T12:05:50",
+ "gitrepo": false,
+ "id": 140465,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140833,
+ "object_name": "Bol, Kieran [kieran_bol at hotmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 116857,
+ "object_name": "Biofeedback"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140832,
+ "object_name": "Bol K, Marsat G, Harvey-Girard E, Longtin A, Maler L (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Cancelling redundant input in ELL pyramidal cells (Bol et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88116,
+ "object_name": "ELL pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper investigates the property of the electrosensory lateral line lobe (ELL) of the brain of weakly electric fish to cancel predictable stimuli. Electroreceptors on the skin encode all signals in their firing activity, but superficial pyramidal (SP) cells in the ELL that receive this feedforward input do not respond to constant sinusoidal signals. This cancellation putatively occurs using a network of feedback delay lines and burst-induced synaptic plasticity between the delay lines and the SP cell that learns to cancel the redundant input. Biologically, the delay lines are parallel fibres from cerebellar-like granule cells in the eminentia granularis posterior.\r\n\r\nA model of this network (e.g. electroreceptors, SP cells, delay lines and burst-induced plasticity) was constructed to test whether the current knowledge of how the network operates is sufficient to cancel redundant stimuli. \r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140465",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Bol, Kieran "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kbol098@uottawa.ca"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2011-08-08T11:03:57",
+ "ver_number": 4
+ },
+ "140471": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 21723921"
+ },
+ "class_id": 19,
+ "created": "2011-07-15T11:36:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 140471,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140473,
+ "object_name": "Jaffe, David B [david.jaffe at utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140472,
+ "object_name": "Jaffe DB, Wang B, Brenner R (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Shaping of action potentials by different types of BK channels (Jaffe et al., 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Dentate gyrus granule cells highly express the beta4 accessory subunit which confer BK channels with type II properties. The properties of heterologously-expressed BK channels (with and without the beta4 subunit) were used to construct channel models. These were then used to study how they affect single action potentials and trains of spikes in a model dentate gyrus granule cells (based on Aradi and Holmes, 1999)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140471",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Jaffe, David "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "david.jaffe@utsa.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181307,
+ "object_name": "140471"
+ }
+ ]
+ },
+ "ver_date": "2013-12-10T15:32:02",
+ "ver_number": 10
+ },
+ "140599": {
+ "class_id": 19,
+ "created": "2011-07-20T13:52:03",
+ "gitrepo": false,
+ "id": 140599,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140600,
+ "object_name": "Mechler, Ferenc [fmechler at med.cornell.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140550,
+ "object_name": "Mechler F, Victor JD (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Dipole Localization Kit (Mechler & Victor, 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We localize a single neuron from the spatial sample of its EAP\r\namplitudes recorded with a multisite probe (with 6 or more independent\r\nmeasurement sites or channels, e.g., a silicon polytrode, a stepped\r\ntetrode, etc.) This is an inverse problem and we solve it by fitting a\r\nmodel to the EAPs that consists of a volume conductor model of the\r\nneural tissue (known), a realistic model of the probe (known), and a\r\nsingle dipole current source of the model neuron (unknown). The dipole\r\nis free to change position, size, and orientation (a total of 6\r\nparameters) at each moment during the action potential."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140599",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2015-07-26T13:09:27.877",
+ "ver_number": 16
+ },
+ "140732": {
+ "class_id": 19,
+ "created": "2011-07-28T23:32:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 140732,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140769,
+ "object_name": "Anderson WD, Galv\u00e1n EJ, Mauna JC, Thiels E, Barrionuevo G (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "CA3 Radiatum/Lacunosum-Moleculare interneuron, Ih (Anderson et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ },
+ {
+ "object_id": 140767,
+ "object_name": "Hippocampus CA3 stratum radiatum lacunosum-moleculare interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The present study examines the biophysical\r\nproperties and functional implications of Ih in hippocampal\r\narea CA3 interneurons with somata in strata radiatum and\r\nlacunosum-moleculare.... The functional\r\nconsequences of Ih were examined with regard to temporal\r\nsummation and impedance measurements. ...\r\nFrom impedance measurements, we\r\nfound that Ih did not confer theta-band resonance, but\r\nflattened the impedance\u2013frequency relations instead. ... Finally, a model of Ih was employed in\r\ncomputational analyses to confirm and elaborate upon the\r\ncontributions of Ih to impedance and temporal summation.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140732",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Ih"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "CA3 radiatum, lacunosom-moleculare interneuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "warrena@temple.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T14:23:40.323",
+ "ver_number": 6
+ },
+ "140788": {
+ "biosimulations": {
+ "value": "modeldb-140788"
+ },
+ "class_id": 19,
+ "created": "2011-08-04T13:39:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 140788,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140824,
+ "object_name": "Kurian, Mini "
+ },
+ {
+ "object_id": 140825,
+ "object_name": "Crook, Sharon "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140794,
+ "object_name": "Kurian M, Crook SM, Jung R (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Motoneuron model of self-sustained firing after spinal cord injury (Kurian et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nDuring the acute-stage of spinal cord injury (SCI), the endogenous ability to generate plateaus is lost; however, during the chronic-stage of SCI, plateau potentials reappear with prolonged self-sustained firing that has been implicated in the development of spasticity. In this work, we extend previous modeling studies to systematically investigate the mechanisms underlying the generation of plateau potentials in motoneurons, including the influences of specific ionic currents, the morphological characteristics of the soma and dendrite, and the interactions between persistent inward currents and synaptic input.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140788",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "INaP, ICaP"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kurian, Mini; Crook, Sharon"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "minikurian@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2011-08-08T17:04:37",
+ "ver_number": 11
+ },
+ "140789": {
+ "class_id": 19,
+ "created": "2011-08-05T09:41:32",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 140789,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147582,
+ "object_name": "Matthia (Norenberg), Anja [anja.matthiae at charite.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147581,
+ "object_name": "N\u00f6renberg A, Hu H, Vida I, Bartos M, Jonas P (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "140789",
+ "name": "ModelView"
+ }
+ ],
+ "default": "140789"
+ },
+ "name": "Detailed passive cable model of Dentate Gyrus Basket Cells (Norenberg et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Fast-spiking, parvalbumin-expressing basket cells (BCs) play a key role in feedforward and feedback inhibition in the hippocampus. \r\n...\r\nTo quantitatively address this question, we developed detailed passive cable models of BCs in the dentate gyrus based on dual somatic or somatodendritic recordings and complete morphologic reconstructions. \r\n\r\nBoth specific membrane capacitance and axial resistivity were comparable to those of pyramidal neurons, but the average somatodendritic specific membrane resistance (R(m)) was substantially lower in BCs. \r\n\r\nFurthermore, R(m) was markedly nonuniform, being lowest in soma and proximal dendrites, intermediate in distal dendrites, and highest in the axon. \r\n...\r\nFurther computational analysis revealed that these unique cable properties accelerate the time course of synaptic potentials at the soma in response to fast inputs, while boosting the efficacy of slow distal inputs. \r\n\r\nThese properties will facilitate both rapid phasic and efficient tonic activation of BCs in hippocampal microcircuits.\r\n"
+ },
+ "opensourcebrain": {
+ "value": "norenbergetal2010_dgbasketcell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140789",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Matthi\u00e4 (N\u00f6renberg), Anja"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181535,
+ "object_name": "140789"
+ }
+ ]
+ },
+ "ver_date": "2014-02-06T17:15:53",
+ "ver_number": 14
+ },
+ "140828": {
+ "class_id": 19,
+ "created": "2011-08-07T18:18:07",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 140828,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 129136,
+ "object_name": "Branco T, Clark BA, H\u00e4usser M (2010)"
+ },
+ {
+ "object_id": 140857,
+ "object_name": "Branco T, H\u00e4usser M (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "140828",
+ "name": "ModelView"
+ }
+ ],
+ "default": "140828"
+ },
+ "name": "Dendritic Discrimination of Temporal Input Sequences (Branco et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Compartmental model of a layer 2/3 pyramidal cell in the rat somatosensory cortex, exploring NMDA-dependent sensitivity to the temporal sequence of synaptic activation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140828",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Branco,Tiago"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "t.branco@ucl.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181657,
+ "object_name": "140828"
+ }
+ ]
+ },
+ "ver_date": "2020-09-16T14:29:05.583",
+ "ver_number": 14
+ },
+ "140881": {
+ "class_id": 19,
+ "created": "2011-08-17T16:11:47",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 140881,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140882,
+ "object_name": "Lytton WW, Neymotin SA, Wester JC, Contreras D (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Computational Surgery (Lytton et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Figure 2 in\r\n Neocortical simulation for epilepsy surgery guidance: Localization and intervention,\r\n by William W. Lytton, Samuel A. Neymotin, Jason C. Wester, and Diego Contreras\r\n in Computational Surgery and Dual Training, Springer, 2011\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140881",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T15:26:14.297",
+ "ver_number": 7
+ },
+ "140964": {
+ "class_id": 19,
+ "created": "2011-08-18T15:28:48",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 140964,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140863,
+ "object_name": "Mihalas S, Dong Y, von der Heydt R, Niebur E (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 87474,
+ "object_name": "XML (web link to model)"
+ },
+ {
+ "object_id": 140884,
+ "object_name": "ERNST (Event Related Neuronal Simulation Tool) (web link to model)"
+ }
+ ]
+ },
+ "name": "Event-related simulation of neural processing in complex visual scenes (Mihalas et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We here present an environment for the\r\nimplementation of large networks of generalized integrate-and-fire\r\nneurons which uses an asynchronous event-based algorithm.\r\n...\r\nThe neuronal network to be simulated\r\nand all parameters are defined in extendible markup language.\r\nA model of the primate early visual system is implemented. The\r\nuse of the tool is illustrated by simulating the processing of both\r\nsimple and complex visual scenes through retina, thalamus and\r\nprimary visual cortex.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/140964",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:55:03.307",
+ "ver_number": 6
+ },
+ "141061": {
+ "class_id": 19,
+ "created": "2011-09-02T16:58:28",
+ "gitrepo": false,
+ "id": 141061,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141228,
+ "object_name": "Neymotin SA, Lytton WW, Olypher AV, Fenton AA (2011)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Measuring neuronal identification quality in ensemble recordings (isoitools) (Neymotin et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we describe information theoretic\r\nmeasures of action potential waveform isolation applicable to any dataset, that have an intuitive,\r\nuniversal interpretation, and that are not dependent on the methods or choice of parameters for\r\nsingle unit isolation, and that have been validated using a dataset.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141061",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spike-sorting"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Andre Fenton"
+ },
+ "ver_date": "2011-12-19T14:21:08",
+ "ver_number": 8
+ },
+ "141062": {
+ "class_id": 19,
+ "created": "2011-09-08T09:18:08",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141062,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123929,
+ "object_name": "Masquelier, Tim [timothee.masquelier at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141131,
+ "object_name": "Masquelier T (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Relative spike time coding and STDP-based orientation selectivity in V1 (Masquelier 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ },
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ },
+ {
+ "object_id": 7020,
+ "object_name": "Retina bipolar GLU cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Phenomenological spiking model of the cat early visual system. We show how natural vision can drive spike time correlations on sufficiently fast time scales to lead to the acquisition of orientation-selective V1 neurons through STDP. This is possible without reference times such as stimulus onsets, or saccade landing times. But even when such reference times are available, we demonstrate that the relative spike times encode the images more robustly than the absolute ones."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141062",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:55:20.527",
+ "ver_number": 9
+ },
+ "141063": {
+ "class_id": 19,
+ "created": "2011-09-08T10:52:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141063,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144508,
+ "object_name": "Orio, Patricio [patricio.orio at uv.cl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146837,
+ "object_name": "Orio P, Parra A, Madrid R, Gonz\u00e1lez O, Belmonte C, Viana F (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Role of Ih in firing patterns of cold thermoreceptors (Orio et al., 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we investigated the role of Ih in cold-sensitive (CS) nerve endings, where cold sensory transduction actually takes place. Corneal CS nerve endings in mice show a rhythmic spiking activity at neutral skin temperature that switches to bursting mode when the temperature is lowered. \r\n...\r\nMathematical modeling shows that the firing phenotype of CS nerve endings from HCN1-/- mice can be reproduced by replacing HCN1 channels with the slower HCN2 channels rather than by abolishing Ih. We propose that Ih carried by HCN1 channels helps tune the frequency of the oscillation and the length of bursts underlying regular spiking in cold thermoreceptors, having important implications for neural coding of cold sensation. \r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141063",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Orio, Patricio"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cold sensitive nerve ending"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2017-03-18T10:15:51.553",
+ "ver_number": 10
+ },
+ "141192": {
+ "class_id": 19,
+ "created": "2011-09-11T11:19:20",
+ "gitrepo": false,
+ "id": 141192,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141195,
+ "object_name": "Maran SK, Sieling FH, Demla K, Prinz AA, Canavier CC (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A four compartmental model for ABPD complex in crustacean pyloric network (Maran et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Central pattern generators (CPGs) frequently include bursting neurons that serve as pacemakers for rhythm generation.\r\n\r\nPhase resetting curves (PRCs) can provide insight into mechanisms underlying phase locking in such circuits.\r\n\r\nPRCs were constructed for a pacemaker bursting complex in the pyloric circuit in the stomatogastric ganglion of the lobster and crab.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141192",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Maran, Selva (selvamaran@gmail.com)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "STG pyloric pacemaker complex (ABPD)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "selvamaran@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "ver_date": "2011-09-12T13:38:05",
+ "ver_number": 13
+ },
+ "141226": {
+ "class_id": 19,
+ "created": "2011-09-19T14:37:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141226,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33795,
+ "object_name": "Bhalla, Upinder S [bhalla at ncbs.res.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 139642,
+ "object_name": "Bhalla US (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Multiscale interactions between chemical and electric signaling in LTP (Bhalla 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Synaptic plasticity leads to long-term changes in excitability, whereas cellular homeostasis maintains\r\nexcitability. Both these processes involve interactions between molecular events, electrical events, and\r\nnetwork activity. Here I explore these intersections with a multilevel model that embeds molecular events\r\nfollowing synaptic calcium influx into a multicompartmental electrical model of a CA1 hippocampal\r\nneuron. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141226",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Multiscale, Homeostasis"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2017-02-23T11:03:26.697",
+ "ver_number": 4
+ },
+ "141270": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Stochastic signaling network mediates the probabilistic induction of long-term depression"
+ },
+ "class_id": 19,
+ "created": "2011-09-21T19:23:16",
+ "gitrepo": false,
+ "id": 141270,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 112689,
+ "object_name": "De Schutter, Erik [erik at oist.jp]"
+ },
+ {
+ "object_id": 144557,
+ "object_name": "Antunes, Gabriela [gabri_antunes at hotmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144497,
+ "object_name": "Antunes G, De Schutter E (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 144556,
+ "object_name": "STEPS"
+ }
+ ]
+ },
+ "name": "Cerebellar long-term depression (LTD) (Antunes and De Schutter 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Many cellular processes involve small number of molecules and undergo stochastic fluctuations in their levels of activity. Among these processes is cerebellar long-term depression (LTD), a form of synaptic plasticity expressed as a reduction in the number of synaptic AMPA receptors (AMPARs) in Purkinje cells. Using a stochastic model of the signaling network and mechanisms of AMPAR trafficking involved in LTD, we show that the network activity in single synapses switches between two discrete stable states (LTD and non-LTD). Stochastic fluctuations affecting more intensely the level of activity of a few components of the network lead to the probabilistic induction of LTD and threshold dithering. The non-uniformly distributed stochasticity of the network allows the stable occurrence of several different macroscopic levels of depression, determining the experimentally observed sigmoidal relationship between the magnitude of depression and the concentration of the triggering signal."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141270",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Antunes, Gabriela "
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "STEPS"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gabri_antunes@hotmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2012-07-06T10:53:04",
+ "ver_number": 11
+ },
+ "141272": {
+ "class_id": 19,
+ "created": "2011-09-22T16:05:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141272,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144508,
+ "object_name": "Orio, Patricio [patricio.orio at uv.cl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ },
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144507,
+ "object_name": "Orio P, Soudry D (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83452,
+ "object_name": "SciLab"
+ }
+ ]
+ },
+ "name": "Simple and accurate Diffusion Approximation algor. for stochastic ion channels (Orio & Soudry 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We derived the (Stochastic Differential Equations) SDE explicitly for any given ion channel kinetic scheme. The resulting generic equations were surprisingly simple and interpretable \u2013 allowing an easy, transparent and efficient (Diffusion Approximation) DA implementation, avoiding unnecessary approximations. The algorithm was tested in a voltage clamp simulation and in two different current clamp simulations, yielding the same results as (Markov Chains) MC modeling. Also, the simulation efficiency of this DA method demonstrated considerable superiority over MC methods, except when short time steps or low channel numbers were used.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141272",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Stochastic simulation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Orio, Patricio"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 614
+ },
+ "ver_date": "2018-02-26T11:31:19.97",
+ "ver_number": 17
+ },
+ "141273": {
+ "class_id": 19,
+ "created": "2011-09-23T11:56:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141273,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 141508,
+ "object_name": "Vierling-Claassen, Dorea "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138955,
+ "object_name": "Vierling-Claassen D, Cardin JA, Moore CI, Jones SR (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Engaging distinct oscillatory neocortical circuits (Vierling-Claassen et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Selective optogenetic drive of fast-spiking (FS) interneurons (INs) leads to enhanced local field potential (LFP) power across the traditional \u201cgamma\u201d frequency band (20\u201380 Hz; Cardin et al., 2009).\r\n\r\nIn contrast, drive to regular-spiking (RS) pyramidal cells enhances power at lower frequencies, with a peak at 8 Hz.\r\n\r\nThe first result is consistent with previous computational studies emphasizing the role of FS and the time constant of GABAA synaptic inhibition in gamma rhythmicity.\r\n\r\nHowever, the same theoretical models do not typically predict low-frequency LFP enhancement with RS drive.\r\n\r\nTo develop hypotheses as to how the same network can support these contrasting behaviors, we constructed a biophysically principled network model of primary somatosensory neocortex containing FS, RS, and low-threshold spiking (LTS) INs. ...\""
+ },
+ "opensourcebrain": {
+ "value": "vierlingclaassenetal2010"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141273",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T17:16:24.333",
+ "ver_number": 7
+ },
+ "141274": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A mathematical model of action potentials of mouse sinoatrial node cells with molecular bases. Kharche S, Yu J, Lei M, Zhang H. Am J Physiol Heart Circ Physiol. 2011 Sep;301(3):H945-63."
+ },
+ "class_id": 19,
+ "created": "2011-09-26T11:02:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88206,
+ "object_name": "I_HERG"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 88212,
+ "object_name": "KCNQ1"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 92083,
+ "object_name": "Nav1.2 SCN2A"
+ },
+ {
+ "object_id": 122807,
+ "object_name": "HERG KCNH2"
+ },
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 141274,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 141449,
+ "object_name": "Kharche, Sanjay "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 141450,
+ "object_name": "Cardiac pacemaking"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141276,
+ "object_name": "Kharche S, Yu J, Lei M, Zhang H (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Biophysically detailed model of the mouse sino-atrial node cell (Kharche et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52422,
+ "object_name": "Cardiac atrial cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is developed to study the role of various electrophysiological mechanisms in generating cardiac pacemaking action potentials (APs).The model incorporates membrane ionic currents and intracellular mechanisms contributing to spontaneous mouse SAN APs. The model was validated by testing the functional roles of individual membrane currents in one and multiple parameter analyses.The roles of intracellular Ca2+-handling mechanisms on cardiac pacemaking were also investigated in the model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141274",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "cardiac pacemaking"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kharche, Sanjay"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "cardiac cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Sanjay.Kharche@manchester.ac.uk"
+ },
+ "ver_date": "2011-09-26T17:10:54",
+ "ver_number": 4
+ },
+ "141505": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Kerr CC, Neymotin SA, Chadderdon GL, Fietkiewicz CT, Francis JT, Lytton WW (under second-round review). Electrostimulation as a prosthesis for repair of information flow in a computer model of neocortex. IEEE Transactions on Neural Systems & Rehabilitation Engineering."
+ },
+ "class_id": 19,
+ "created": "2011-09-28T06:27:25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141505,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 146031,
+ "object_name": "Kerr, Cliff [cliffk at neurosim.downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141506,
+ "object_name": "Kerr CC, Neymotin SA, Chadderdon GL, Fietkiewicz CT, Francis JT, Lytton WW (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Prosthetic electrostimulation for information flow repair in a neocortical simulation (Kerr 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is an extension of a model ( http://modeldb.yale.edu/138379 ) recently published in Frontiers in Computational Neuroscience. This model consists of 4700 event-driven, rule-based neurons, wired according to anatomical data, and driven by both white-noise synaptic inputs and a sensory signal recorded from a rat thalamus. Its purpose is to explore the effects of cortical damage, along with the repair of this damage via a neuroprosthesis."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141505",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kerr, Cliff"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cliffk@neurosim.downstate.edu\r\n"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T15:28:07.223",
+ "ver_number": 23
+ },
+ "141507": {
+ "class_id": 19,
+ "created": "2011-09-30T09:09:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141507,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97901,
+ "object_name": "Anderson WS, Kudela P, Cho J, Bergey GK, Franaszczuk PJ (2007)"
+ },
+ {
+ "object_id": 185315,
+ "object_name": "Anderson WS, Kudela P, Weinberg S, Bergey GK, Franaszczuk PJ (2009)"
+ },
+ {
+ "object_id": 185317,
+ "object_name": "Anderson WS, Azhar F, Kudela P, Bergey GK, Franaszczuk PJ (2012)"
+ },
+ {
+ "object_id": 185319,
+ "object_name": "Azhar F, Anderson WS (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Network model with neocortical architecture (Anderson et al 2007,2012; Azhar et al 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Architecturally realistic neocortical model using seven classes of excitatory and inhibitory single compartment Hodgkin-Huxley cells. This is an addendum to ModelDB Accession # 98902, Studies of stimulus parameters for seizure disruption (Anderson et al. 2007). Wiring is adapted from the minicolumn hypothesis and incorporates visual and neocortical wiring data. Simulation demonstrates spontaneous bursting onset and cessation. This activity can be induced by random fluctuations in the surrounding background input."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141507",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:56:52.483",
+ "ver_number": 28
+ },
+ "141699": {
+ "citation": {
+ "attr_id": 391,
+ "value": "21984318"
+ },
+ "class_id": 19,
+ "created": "2011-10-11T11:23:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141699,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 141703,
+ "object_name": "So, Rosa "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141702,
+ "object_name": "So RQ, Kent AR, Grill WM (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Basal ganglia-thalamic network model for deep brain stimulation (So et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model of the basal ganglia-thalamic network, modified from the Rubin and Terman model (High frequency stimulation of the Subthalamic Nucleus, Rubin and Terman 2004). We subsequently used this model to investigate the effectiveness of STN and GPi DBS as well as lesion when various proportions of local cells and fibers of passage were activated or silenced. The BG network exhibited characteristics consistent with published experimental data, both on the level of single cells and on the network level. Perhaps most notably, and in contrast to the original RT model, the changes in the thalamic error index with changes in the DBS frequency matched well the changes in clinical symptoms with changes in DBS frequency."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141699",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "So, Rosa"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yq11@duke.edu"
+ },
+ "ver_date": "2019-11-22T17:27:09.35",
+ "ver_number": 6
+ },
+ "141835": {
+ "class_id": 19,
+ "created": "2011-10-13T11:33:12",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141835,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141834,
+ "object_name": "Ermentrout GB, Terman DH (2010)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Mathematical Foundations of Neuroscience (Ermentrout and Terman 2010)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Ermentrout and Terman's book on dynamical systems and computational methods in neuroscience has associated computer code available at http://www.math.pitt.edu/~bard/bardware/neurobook/allodes.html. The main emphasis in the book is on single-neuron biophysics and there is also systems neuroscience theory and applications to networks. The electronic text of the book is freely available!"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141835",
+ "ver_date": "2016-06-16T13:29:19.673",
+ "ver_number": 7
+ },
+ "141991": {
+ "class_id": 19,
+ "created": "2011-10-17T19:06:20",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 141991,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143084,
+ "object_name": "Jercog, Pablo [pjercog at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143085,
+ "object_name": "Synaptic-input statistic"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141992,
+ "object_name": "Jercog PE, Svirskis G, Kotak VC, Sanes DH, Rinzel J (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Two Models for synaptic input statistics for the MSO neuron model (Jercog et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88110,
+ "object_name": "Medial Superior Olive (MSO) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model is a point neuron model with ionic currents from Rothman & Mannis (2003) and with an update of the low threshold potassium current (IKLT) measured in-vitro by Mathews & Jercog et al (2010).\r\nThis model in conjunction with the synaptic input models presented here has been used to gain insight into mechanisms that account for experimentally observed asymmetries in ITD tuning (Brand et al, 2002).\r\nAsymmetry and displacement of the ITD response function is achieved in the model by the interplay between asymmetry of the excitatory inputs arriving from the two sides and the precise voltage dependent activation of IKLT.\r\nIn Jercog et al (2010) we propose two different mathematical ways, physiologically plausible scenarios, of generating the asymmetry in the bilateral synaptic input events. Here, we present two models for simulating the stochastic synaptic input trains."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/141991",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Synaptic-input Statistic"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "jercog, pablo, "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pjercog@gmail.com"
+ },
+ "ver_date": "2018-10-18T17:00:45.587",
+ "ver_number": 30
+ },
+ "142062": {
+ "class_id": 19,
+ "created": "2011-10-19T13:42:52",
+ "gitrepo": false,
+ "id": 142062,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142012,
+ "object_name": "Richert M, Nageswaran JM, Dutt N, Krichmar JL (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Efficient simulation environment for modeling large-scale cortical processing (Richert et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We have developed a spiking neural network simulator, which is both easy to use and computationally efficient, for the generation of large-scale computational neuroscience models. The simulator implements current or conductance based Izhikevich neuron networks, having spike-timing dependent plasticity and short-term plasticity. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/142062",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2011-10-19T15:05:47",
+ "ver_number": 8
+ },
+ "142104": {
+ "class_id": 19,
+ "created": "2011-10-20T16:31:11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 142104,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 137843,
+ "object_name": "Stanley, David A "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154582,
+ "object_name": "Stanley DA, Talathi SS, Parekh MB, Cordiner DJ, Zhou J, Mareci TH, Ditto WL, Carney PR (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hippocampal CA3 network and circadian regulation (Stanley et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154093,
+ "object_name": "Hippocampus CA3 interneuron basket GABA cell"
+ },
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ },
+ {
+ "object_id": 154750,
+ "object_name": "Hippocampus septum medial GABAergic neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model produces the hippocampal CA3 neural network model used \r\nin the paper below. It has two modes of operation, a default mode and a circadian mode. In the circadian mode, parameters are swept through a range of values. \r\nThis model can be quite easily adapted to produce theta and gamma oscillations, as certain parameter sweeps will reveal (see Figures). BASH scripts interact with GENESIS\r\n2.3 to implement parameter sweeps.\r\nThe model contains four cell types derived from prior papers.\r\nCA3 pyramidal are derived from Traub et al (1991); Basket, \r\nstratum oriens (O-LM), and Medial Septal GABAergic\r\n(MSG) interneurons are taken from Hajos et al (2004)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/142104",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "medial septal GABAergic"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Bash"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Parameter Sweep"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 154751,
+ "object_name": "Medial Septum"
+ }
+ ]
+ },
+ "ver_date": "2015-02-17T23:50:14.793",
+ "ver_number": 27
+ },
+ "142199": {
+ "citation": {
+ "attr_id": 391,
+ "value": "I. Hayut, B.W. Connors, E.E. Fanselow and D. Golomb, LTS and FS inhibitory interneurons, short-term synaptic plasticity, and cortical circuit dynamics. PLoS Comput. Biol. 7(10): e1002248."
+ },
+ "class_id": 19,
+ "created": "2011-10-28T10:52:05",
+ "gitrepo": false,
+ "id": 142199,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57906,
+ "object_name": "Golomb, David [golomb at bgu.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142200,
+ "object_name": "Hayut I, Fanselow EE, Connors BW, Golomb D (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Rate model of a cortical RS-FS-LTS network (Hayut et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A rate model of cortical networks composed of RS, FS and LTS neurons. Synaptic depression is modelled according to the Tsodyks-Markram scheme."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/142199",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortical RS, FS and LTS neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "golomb@bgu.ac.il"
+ },
+ "ver_date": "2011-10-28T23:45:55",
+ "ver_number": 6
+ },
+ "142273": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Krasne FB, Fanselwo MS, Zelikowsy M. (2011). Design of a neurally pluasibel model of fear learning. Front. Behav. Neurosci., 5, Artile 41."
+ },
+ "class_id": 19,
+ "created": "2011-10-30T15:20:07",
+ "gitrepo": false,
+ "id": 142273,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 142276,
+ "object_name": "Krasne, Frank [krasne at psych.ucla.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142275,
+ "object_name": "Krasne FB, Fanselow MS, Zelikowsky M (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "FRAT: An amygdala-centered model of fear conditioning (Krasne et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of Pavlovian fear conditioning and extinction (due to neuromodulator-controlled LTP on principal cells and inhibory interneurons)occur in amygdala and contextual representations are learned in hippocampus. Many properties of fear conditioning are accounted for."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/142273",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Krasne, Frank "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "krasne@psych.ucla.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 142628,
+ "object_name": "Amygdala"
+ }
+ ]
+ },
+ "ver_date": "2011-11-10T14:21:47",
+ "ver_number": 5
+ },
+ "142630": {
+ "biosimulations": {
+ "value": "modeldb-142630"
+ },
+ "class_id": 19,
+ "created": "2011-11-08T14:05:53",
+ "gitrepo": false,
+ "id": 142630,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136797,
+ "object_name": "Barreto, Ernest "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140546,
+ "object_name": "Barreto E, Cressman JR (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Ion concentration dynamics as a mechanism for neuronal bursting (Barreto & Cressman 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We describe a simple conductance-based model neuron that includes intra and\r\nextracellular ion concentration dynamics and show that this model exhibits periodic\r\nbursting. The bursting arises as the fast-spiking behavior of the neuron is modulated\r\nby the slow oscillatory behavior in the ion concentration variables and vice versa. By\r\nseparating these time scales and studying the bifurcation structure of the neuron, we catalog\r\nseveral qualitatively different bursting profiles that are strikingly similar to those seen in\r\nexperimental preparations. Our work suggests that ion concentration dynamics may play an\r\nimportant role in modulating neuronal excitability in real biological systems.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/142630",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hodgkin-Huxley + ion concentration dynamics"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ebarreto@gmu.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2011-12-21T16:46:12",
+ "ver_number": 13
+ },
+ "142990": {
+ "class_id": 19,
+ "created": "2011-11-18T12:02:27",
+ "gitrepo": false,
+ "id": 142990,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144029,
+ "object_name": "Yarrow, Stuart [s.yarrow at ed.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144028,
+ "object_name": "Yarrow S, Challis E, Seri\u00e8s P (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Fisher and Shannon information in finite neural populations (Yarrow et al. 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we model populations of rate-coding neurons with bell-shaped tuning curves and multiplicative Gaussian noise. This Matlab code supports the calculation of information theoretic (mutual information, stimulus-specific information, stimulus-specific surprise) and Fisher-based measures (Fisher information, I_Fisher, SSI_Fisher) in these population models. The information theoretic measures are computed by Monte Carlo integration, which allows computationally-intensive decompositions of the mutual information to be computed for relatively large populations (hundreds of neurons)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/142990",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yarrow, Stuart "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Generic rate-coding neuron"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Coding population"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.yarrow@ed.ac.uk"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T14:26:26.863",
+ "ver_number": 13
+ },
+ "142993": {
+ "class_id": 19,
+ "created": "2011-11-21T17:24:54",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 143068,
+ "object_name": "CLC-2 CLCN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 142993,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53570,
+ "object_name": "Prescott, Steven [steve.prescott at sickkids.ca]]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143004,
+ "object_name": "Chloride regulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142626,
+ "object_name": "Ratt\u00e9 S, Prescott SA (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "ClC-2 channels regulate neuronal excitability, not intracellular Cl- levels (Ratte & Prescott 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The model is for a generic, single compartment neuron with multiple ion currents. The most notable mechanisms include ClC-2 (a rectifying chloride-leak channel) and KCC2 (potassium chloride co-transporter 2). A significant feature of the model is that it tracks intracellular chloride concentration. Moreover, the GABA-A receptor is modeled as passing both chloride and bicarbonate ions, which is important for proper calculation of the GABA reversal potential. Ornstein-Unlenbeck processes to simulate synaptic inhibition and excitation are also included.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/142993",
+ "ver_date": "2011-11-22T18:45:23",
+ "ver_number": 12
+ },
+ "143072": {
+ "biosimulations": {
+ "value": "modeldb-143072"
+ },
+ "class_id": 19,
+ "created": "2011-11-22T16:45:30",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143072,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53570,
+ "object_name": "Prescott, Steven [steve.prescott at sickkids.ca]]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142992,
+ "object_name": "Coggan JS, Ocker GK, Sejnowski TJ, Prescott SA (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Explaining pathological changes in axonal excitability by dynamical analysis (Coggan et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... To help decipher the biophysical basis for \u2018paroxysmal\u2019\r\nspiking, we replicated afterdischarge (i.e. continued spiking after a brief stimulus) in a\r\nminimal conductance-based axon model.\r\n\r\n...\r\nA perturbation\r\ncould abruptly switch the system between two (quasi-)stable attractor states: rest and\r\nrepetitive spiking.\r\n...\r\n Initiation of afterdischarge was explained by activation of the\r\npersistent inward current forcing the system to cross a saddle point that separates the basins of\r\nattraction associated with each attractor.\r\n\r\nTermination of afterdischarge was explained by the\r\nattractor associated with repetitive spiking being destroyed.\r\n...\r\nThe model also explains other features of\r\nparoxysmal symptoms, including temporal summation and refractoriness.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143072",
+ "ver_date": "2019-05-07T16:11:29.287",
+ "ver_number": 8
+ },
+ "143083": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Muller L, Brette R and Gutkin B (2011) Spike-timing dependent plasticity and feed-forward input oscillations produce precise and invariant spike phase-locking. Front. Comput. Neurosci. 5:45. doi: 10.3389/fncom.2011.00045"
+ },
+ "class_id": 19,
+ "created": "2011-11-28T10:17:35",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143083,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ },
+ {
+ "object_id": 143086,
+ "object_name": "Muller, Lyle [muller at inaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143087,
+ "object_name": "Muller L, Brette R, Gutkin B (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "STDP and oscillations produce phase-locking (Muller et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In this note, we investigate a simple mechanism for learning precise LFP-to-spike coupling in feed-forward networks \u2013 the reliable, periodic modulation of presynaptic firing rates during oscillations, coupled with spike-timing dependent plasticity. When oscillations are within the biological range (2\u2013150 Hz), firing rates of the inputs change on a timescale highly relevant to spike-timing dependent plasticity (STDP). Through analytic and computational methods, we find points of stable phase-locking for a neuron with plastic input synapses.\r\n\r\nThese points correspond to precise phase-locking behavior in the feed-forward network. The location of these points depends on the oscillation frequency of the inputs, the STDP time constants, and the balance of potentiation and de-potentiation in the STDP rule.\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143083",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Muller L"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lyle.e.muller@gmail.com"
+ },
+ "ver_date": "2017-07-28T17:31:29.82",
+ "ver_number": 10
+ },
+ "143100": {
+ "citation": {
+ "attr_id": 391,
+ "value": "21993572"
+ },
+ "class_id": 19,
+ "created": "2011-12-04T21:58:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 88212,
+ "object_name": "KCNQ1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 143100,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143112,
+ "object_name": "Kitano, Katsunori [kkt23219 at is.ritsumei.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 137847,
+ "object_name": "Phase Response Curves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143101,
+ "object_name": "Fujita T, Fukai T, Kitano K (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "143100",
+ "name": "ModelView"
+ }
+ ],
+ "default": "143100"
+ },
+ "name": "Phase response curve of a globus pallidal neuron (Fujita et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We investigated how changes in ionic conductances alter the phase response curve (PRC) of a globus pallidal (GP) neuron and stability of a synchronous activity of a GP network, using a single-compartmental conductance-based neuron model. The results showed the PRC and the stability were influenced by changes in the persistent sodium current, the Kv3 potassium, the M-type potassium and the calcium-dependent potassium current."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143100",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kitano, Katsunori"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kitano@ci.ritsumei.ac.jp"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181771,
+ "object_name": "143100"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T01:06:08",
+ "ver_number": 18
+ },
+ "143114": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Effects of membrane afterhyperpolarization on discharge interval statistics: A model study of responses of lateral superior olive neurons to ipsilateral and bilateral acoustic stimuli. J. Neurophysiol. 103: 2355-2371."
+ },
+ "class_id": 19,
+ "created": "2011-12-05T17:37:44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143114,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53903,
+ "object_name": "Zhou, Yi [yizhou at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143115,
+ "object_name": "Zhou Y, Colburn HS (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Effects of the membrane AHP on the Lateral Superior Olive (LSO) (Zhou & Colburn 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 143146,
+ "object_name": "Lateral Superior Olive (LSO) cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This simulation study investigated how membrane afterhyperpolarization (AHP) influences spiking activity of neurons in the Lateral Superior Olive (LSO). The model incorporates a general integrate-and-fire spiking mechanism with a first-order adaptation channel. Simulations focus on differentiating the effects of GAHP, tauAHP, and input strength on (1) spike interval statistics, such as negative serial correlation and chopper onset, and (2) neural sensitivity to interaural level difference (ILD) of LSO neurons. The model simulated electrophysiological data collected in cat LSO (Tsuchitani and Johnson, 1985)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143114",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Lateral Superior Olive (LSO) cell"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Integrate-and-fire"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zhouyi@jhu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:01:40.853",
+ "ver_number": 15
+ },
+ "143148": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22157113"
+ },
+ "class_id": 19,
+ "created": "2011-12-14T12:20:50",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143148,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117967,
+ "object_name": "Mensi, Skander [skander.mensi at epfl.ch]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143151,
+ "object_name": "Mensi S, Naud R, Pozzorini C, Avermann M, Petersen CC, Gerstner W (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Extraction and classification of three cortical neuron types (Mensi et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This script proposes a new convex fitting procedure that allows the parameters estimation of a large class of stochastic Integrate-and-Fire model upgraded with spike-triggered current and moving threshold from patch-clamp experiments (i.e. given the injected current and the recorded membrane potential).\r\nThis script applies the method described in the paper to estimate the parameters of a reference model from a single voltage trace and the corresponding input current and evaluate the performance of the fitted model on a separated test set."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143148",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Somatic neuron model"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "spike-triggered current"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cortical neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "skander.mensi@epfl.ch"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-05-15T09:55:11.677",
+ "ver_number": 16
+ },
+ "143248": {
+ "class_id": 19,
+ "created": "2011-12-21T10:39:14",
+ "gitrepo": false,
+ "id": 143248,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143249,
+ "object_name": "Castro L, Aguiar P (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Phase precession through acceleration of local theta rhythm (Castro & Aguiar 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we\r\npresent a biophysical spiking model for phase precession in\r\nhippocampal CA1 which focuses on the interaction between\r\nplace cells and local inhibitory interneurons.\r\n\r\nThe model\u2019s\r\nfunctional block is composed of a place cell (PC) connected\r\nwith a local inhibitory cell (IC) which is modulated by the\r\npopulation theta rhythm.\r\n\r\nBoth cells receive excitatory inputs\r\nfrom the entorhinal cortex (EC).\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143248",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2012-01-10T13:47:06",
+ "ver_number": 6
+ },
+ "143253": {
+ "biosimulations": {
+ "value": "modeldb-143253"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Huang CW, Chow JC, Tsai JJ, Wu SN. Characterizing the effects of eugenol on neuronal ionic currents and hyperexcitability. Psychopharmacology 2011; Dec 13; [Epub ahead of print]"
+ },
+ "class_id": 19,
+ "created": "2011-12-27T08:30:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 143253,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 84610,
+ "object_name": "Huang, Chin-Wei"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143255,
+ "object_name": "Huang CW, Chow JC, Tsai JJ, Wu SN (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Effects of eugenol on the firing of action potentials in NG108-15 neurons (Huang et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88207,
+ "object_name": "Neuroblastoma"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Rationale: Eugenol (EUG, 4-allyl-2-methoxyphenol), the main component of essential oil extracted from cloves, has various uses in medicine because of its potential to modulate neuronal excitability. \r\n\r\nHowever, its effects on the ionic mechanisms remains incompletely understood. \r\n\r\nObjectives: We aimed to investigate EUG`s effects on neuronal ionic currents and excitability, especially on voltage-gated ion currents, and to verify the effects on a hyperexcitability-temporal lobe seizure model. \r\n\r\nMethods: With the aid of patch-clamp technology, we first investigated the effects of EUG on ionic currents in NG108-15 neuronal cells differentiated with cyclic AMP. We then used modified Pinsky-Rinzel simulation modeling to evaluate its effects on spontaneous action potentials (APs). \r\n\r\nFinally, we investigated its effects on pilocarpine-induced seizures in rats. \r\n\r\nResults: EUG depressed the transient and late components of INa in the neurons. \r\n\r\nIt not only increased the degree of INa inactivation, but specifically suppressed the non-inactivating INa (INa(NI)). \r\n\r\n... In addition, EUG diminished L-type Ca2+ current and delayed rectifier K+ current only at higher concentrations. EUG`s effects on APs frequency reduction was verified by the simulation modeling. \r\n\r\nIn pilocarpine-induced seizures, the EUG-treated rats showed no shorter seizure latency but a lower seizure severity and mortality than the control rats. \r\n\r\n...\r\nConclusion: The synergistic blocking effects of INa and INa(NI) contributes to the main mechanism through which EUG affects the firing of neuronal APs and modulate neuronal hyperexcitability such as pilocarpine-induced temporal lobe seizures.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143253",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2012-01-03T16:58:23",
+ "ver_number": 6
+ },
+ "143442": {
+ "class_id": 19,
+ "created": "2012-01-04T16:36:32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 143442,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142175,
+ "object_name": "Foust AJ, Yu Y, Popovic M, Zecevic D, McCormick DA (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "143442",
+ "name": "ModelView"
+ }
+ ],
+ "default": "143442"
+ },
+ "name": "Spike repolarization in axon collaterals (Foust et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Voltage sensing dye experiments and simulations characterize the location and re-polarizing function of Kv1 channels in cortical neurons.\r\n\"... (the papers) results indicate that action potential-induced synaptic transmission may operate through a mix of analog\u2013digital transmission owing to the properties of Kv1 channels in axon collaterals and presynaptic boutons.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143442",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181882,
+ "object_name": "143442"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 488
+ },
+ "ver_date": "2014-02-25T01:09:34",
+ "ver_number": 4
+ },
+ "143446": {
+ "class_id": 19,
+ "created": "2012-01-05T14:46:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143446,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 7134,
+ "object_name": "Wilson M, Bower JM (1992)"
+ },
+ {
+ "object_id": 110235,
+ "object_name": "Bower JM, Beeman D (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 18747,
+ "object_name": "GENESIS (web link to model)"
+ }
+ ]
+ },
+ "name": "Simulations of oscillations in piriform cortex (Wilson & Bower 1992)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"1. A large-scale computer model of the piriform cortex was\r\nconstructed on the basis of the known anatomic and physiological\r\norganization of this region.\r\n2. The oscillatory field potential and electroencephalographic\r\n(EEG) activity generated by the model was compared with actual\r\nphysiological results. The model was able to produce patterns of\r\nactivity similar to those recorded physiologically in response to\r\nboth weak and strong electrical shocks to the afferent input. The\r\nmodel also generated activity patterns similar to EEGs recorded in\r\nbehaving animals.\r\n3. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143446",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115949,
+ "object_name": "Olfactory cortex"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 611
+ },
+ "ver_date": "2018-10-17T16:08:16.58",
+ "ver_number": 6
+ },
+ "143602": {
+ "class_id": 19,
+ "created": "2012-01-06T14:41:34",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 143602,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33787,
+ "object_name": "Graham, Bruce [B.Graham at cs.stir.ac.uk]"
+ },
+ {
+ "object_id": 74299,
+ "object_name": "Gillies, Andrew [andrew at anc.ed.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 142627,
+ "object_name": "Sterratt D, Graham B, Gillies A, Willshaw D (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Principles of Computational Modelling in Neuroscience (Book) (Sterratt et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... This book provides a step-by-step account of how to model the neuron and neural circuitry to understand the nervous system at all levels, from ion channels to networks. Starting with a simple model of the neuron as an electrical circuit, gradually more details are added to include the effects of neuronal morphology, synapses, ion channels and intracellular signaling. The principle of abstraction is explained through chapters on simplifying models, and how simplified models can be used in networks. This theme is continued in a final chapter on modeling the development of the nervous system. Requiring an elementary background in neuroscience and some high school mathematics, this textbook is an ideal basis for a course on computational neuroscience.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143602",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2012-01-06T15:35:16",
+ "ver_number": 3
+ },
+ "143604": {
+ "class_id": 19,
+ "created": "2012-01-06T17:23:29",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143604,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ },
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144564,
+ "object_name": "Chiu CQ, Lur G, Morse TM, Carnevale NT, Ellis-Davies GC, Higley MJ (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "143604_1",
+ "name": "spine inhibiton with bAP (compartmentalized inhibition)"
+ },
+ {
+ "id": "143604_2",
+ "name": "10x dend inhib with bAP (widespread inhib with smaller change in amplitude)"
+ }
+ ],
+ "default": "143604_1"
+ },
+ "name": "Compartmentalization of GABAergic inhibition by dendritic spines (Chiu et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A spiny dendrite model supports the hypothesis that only inhibitory inputs on spine heads, not shafts, compartmentalizes inhibition of calcium signals to spine heads as seen in paired inhibition with back-propagating action potential experiments on prefrontal cortex layer 2/3 pyramidal neurons in mouse (Chiu et al. 2013)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143604",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181268,
+ "object_name": "143604_1"
+ },
+ {
+ "object_id": 181269,
+ "object_name": "143604_2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:39:53",
+ "ver_number": 96
+ },
+ "143633": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 21994263"
+ },
+ "class_id": 19,
+ "created": "2012-01-10T23:31:57",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 143633,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 13855,
+ "object_name": "Therapeutics"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143489,
+ "object_name": "Birdno MJ, Kuncel AM, Dorval AD, Turner DA, Gross RE, Grill WM (2012)"
+ },
+ {
+ "object_id": 263622,
+ "object_name": "Yi G, Grill WM (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Thalamic network model of deep brain stimulation in essential tremor (Birdno et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Thus the decreased effectiveness\r\nof temporally irregular DBS trains is due to long pauses in the\r\nstimulus trains, not the degree of temporal irregularity alone.\r\n\r\nWe also\r\nconducted computer simulations of neuronal responses to the experimental\r\nstimulus trains using a biophysical model of the thalamic\r\nnetwork.\r\n\r\nTrains that suppressed tremor in volunteers also suppressed\r\nfluctuations in thalamic transmembrane potential at the frequency\r\nassociated with cerebellar burst-driver inputs.\r\n\r\nClinical and computational\r\nfindings indicate that DBS suppresses tremor by masking burst-driver\r\ninputs to the thalamus and that pauses in stimulation prevent\r\nsuch masking. Although stimulation of other anatomic targets may\r\nprovide tremor suppression, we propose that the most relevant neuronal\r\ntargets for effective tremor suppression are the afferent cerebellar\r\nfibers that terminate in the thalamus.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143633",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "merrill.birdno@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2019-03-28T11:03:55.01",
+ "ver_number": 8
+ },
+ "143635": {
+ "class_id": 19,
+ "created": "2012-01-13T16:15:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 88117,
+ "object_name": "I_KHT"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 143635,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143637,
+ "object_name": "Casale, Amanda [Amanda.Casale at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143634,
+ "object_name": "Casale AE, McCormick DA (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Active dendritic action potential propagation (Casale & McCormick 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 140252,
+ "object_name": "Thalamus lateral geniculate nucleus interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model explores the dendritic sodium and potassium conductances needed to recapitulate voltage-sensitive dye optical recordings of thalamic interneuron dendrites in the dorsal lateral geniculate nucleus. Model ion channels were selected based on pharmacological data."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143635",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Conductance distributions"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Casale. Amanda [amanda.casale at yale.edu]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "amanda.casale@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181410,
+ "object_name": "143635"
+ }
+ ]
+ },
+ "ver_date": "2014-01-19T10:06:22",
+ "ver_number": 11
+ },
+ "143671": {
+ "class_id": 19,
+ "created": "2012-01-17T17:07:25",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143671,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83510,
+ "object_name": "Powers, Randy [rkpowers at u.washington.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143670,
+ "object_name": "Powers RK, Elbasiouny SM, Rymer WZ, Heckman CJ (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Simulations of motor unit discharge patterns (Powers et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nTo estimate the potential contributions of PIC (Persistent Inward Current) activation and synaptic input patterns to\r\nmotor unit discharge patterns, we examined the responses of a set of cable\r\nmotoneuron models to different patterns of excitatory and inhibitory\r\ninputs.\r\n\r\nThe models were first tuned to approximate the current- and\r\nvoltage-clamp responses of low- and medium-threshold spinal motoneurons\r\nstudied in decerebrate cats and then driven with different patterns of\r\nexcitatory and inhibitory inputs.\r\n\r\nThe responses of the models to excitatory\r\ninputs reproduced a number of features of human motor unit\r\ndischarge.\r\n\r\nHowever, the pattern of rate modulation was strongly influenced\r\nby the temporal and spatial pattern of concurrent inhibitory inputs.\r\n\r\nThus, even though PIC activation is likely to exert a strong influence on\r\nfiring rate modulation, PIC activation in combination with different\r\npatterns of excitatory and inhibitory synaptic inputs can produce a wide\r\nvariety of motor unit discharge patterns.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143671",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2022-11-04T13:17:21.753",
+ "ver_number": 8
+ },
+ "143719": {
+ "class_id": 19,
+ "created": "2012-01-18T10:47:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 143719,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143720,
+ "object_name": "Bianchi, Daniela [danielabianchi12 -at- gmail.com]"
+ },
+ {
+ "object_id": 143721,
+ "object_name": "Limongiello, Alessandro [alessandro.limongiello at unina.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143723,
+ "object_name": "Bianchi D, Marasco A, Limongiello A, Marchetti C, Marie H, Tirozzi B, Migliore M (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 143722,
+ "object_name": "Mathematica"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: depolarization block (Bianchi et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON files from the paper: On the mechanisms underlying the depolarization block in the spiking dynamics of CA1 pyramidal neurons\r\nby D.Bianchi, A. Marasco, A.Limongiello, C.Marchetti, H.Marie,B.Tirozzi, M.Migliore (2012). J Comput. Neurosci. In press. DOI: 10.1007/s10827-012-0383-y.\r\nExperimental findings shown that under sustained input current of increasing strength neurons eventually stop firing, entering a depolarization block.\r\nWe analyze the spiking dynamics of CA1 pyramidal neuron models using the same set of ionic currents on both an accurate morphological reconstruction and on its reduction to a single-compartment.\r\n The results show the specic ion channel properties and kinetics that are needed to\r\nreproduce the experimental findings, and how their interplay can drastically modulate the neuronal dynamics and the input current range leading to depolarization block."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143719",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Bifurcation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Bianchi, Daniela\r\nLimongiello, Alessandro"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Mathematica"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "danielabianchi12@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181435,
+ "object_name": "143719"
+ }
+ ]
+ },
+ "ver_date": "2014-02-06T13:14:48",
+ "ver_number": 25
+ },
+ "143751": {
+ "class_id": 19,
+ "created": "2012-01-20T15:44:19",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143751,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143821,
+ "object_name": "Zenke, Friedemann [friedemann.zenke at epfl.ch]"
+ },
+ {
+ "object_id": 143822,
+ "object_name": "Vogels, Tim [tim.vogels at epfl.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143729,
+ "object_name": "Vogels TP, Sprekeler H, Zenke F, Clopath C, Gerstner W (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Inhibitory plasticity balances excitation and inhibition (Vogels et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Cortical neurons receive balanced excitatory and inhibitory synaptic currents.\r\n\r\nSuch a balance could be\r\nestablished and maintained in an experience-dependent manner by synaptic plasticity at inhibitory\r\nsynapses.\r\n\r\nWe show that this mechanism provides an explanation for the sparse firing patterns observed\r\nin response to natural stimuli and fits well with a recently observed interaction of excitatory and\r\ninhibitory receptive field plasticity.\r\n\r\n...\r\nOur results suggest an essential\r\nrole of inhibitory plasticity in the formation and maintenance of functional cortical circuitry.\""
+ },
+ "opensourcebrain": {
+ "value": "vogelsetal2011"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143751",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T13:53:57.05",
+ "ver_number": 8
+ },
+ "143753": {
+ "citation": {
+ "attr_id": 391,
+ "value": "21373177"
+ },
+ "class_id": 19,
+ "created": "2012-01-21T08:35:31",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143753,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116961,
+ "object_name": "Nowotny, Thomas [t.nowotny at sussex.ac.uk]"
+ },
+ {
+ "object_id": 143754,
+ "object_name": "Zavada, Andrei [johnhommer at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143757,
+ "object_name": "Zavada A, Buckley CL, Martinez D, Rospars JP, Nowotny T (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 143758,
+ "object_name": "CNrun"
+ },
+ {
+ "object_id": 143823,
+ "object_name": "neuroConstruct"
+ }
+ ]
+ },
+ "name": "Competition model of pheromone ratio detection (Zavada et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "For some closely related sympatric moth species, recognizing a specific pheromone component concentration ratio is essential for mating success. We propose and test a minimalist competition-based feed-forward neuronal model capable of detecting a certain ratio of pheromone components independently of overall concentration. This model represents an elementary recognition unit for binary mixtures which we propose is entirely contained in the macroglomerular complex (MGC) of the male moth. A set of such units, along with projection neurons (PNs), can provide the input to higher brain centres. We found that (1) accuracy is mainly achieved by maintaining a certain ratio of connection strengths between olfactory receptor neurons (ORN) and local neurons (LN), much less by properties of the interconnections between the competing LNs proper. (2) successful ratio recognition is achieved using latency-to-first-spike in the LN populations which. (3) longer durations of the competition process between LNs did not result in higher recognition accuracy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143753",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zavada, Andrei "
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "CNrun"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "johnhommer@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:09:27.817",
+ "ver_number": 6
+ },
+ "143760": {
+ "class_id": 19,
+ "created": "2012-01-21T23:20:17",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 143760,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128503,
+ "object_name": "Goldwyn, Joshua [jhgoldwyn at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143998,
+ "object_name": "Goldwyn JH, Rubinstein JT, Shea-Brown E (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Point process framework for modeling electrical stimulation of auditory nerve (Goldwyn et al. 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A point process model of the auditory nerve that provides a compact and accurate description of neural responses to electric stimulation. Inspired by the framework of generalized linear models, the model consists of a cascade of linear and nonlinear stages. A semi-analytical procedure uniquely determines each parameter in the model on the basis of fundamental statistics from recordings of single fiber responses to electric stimulation, including threshold, relative spread, jitter, and chronaxie. The model also accounts for refractory and summation effects that influence the responses of auditory nerve fibers to high pulse rate stimulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/143760",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Point process"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jhg262@nyu.edu"
+ },
+ "ver_date": "2018-10-18T17:02:04.26",
+ "ver_number": 7
+ },
+ "144006": {
+ "class_id": 19,
+ "created": "2012-01-31T09:39:35",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144006,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128813,
+ "object_name": "Zilli, Eric [zilli at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145888,
+ "object_name": "Zilli EA (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Grid cell spatial firing models (Zilli 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This package contains MATLAB implementations of most models (published from 2005 to 2011) of the hexagonal firing field arrangement of grid cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144006",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Path integration"
+ },
+ "ver_date": "2016-07-19T17:28:08.36",
+ "ver_number": 5
+ },
+ "144007": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Jones and Gabbiani (2011) Impact of Neural Noise on a Sensory-Motor Pathway Signaling Impending Collision. J Neurophysiol. Epub 2011 Nov 23."
+ },
+ "class_id": 19,
+ "created": "2012-01-31T17:38:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144007,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144282,
+ "object_name": "Jones, Peter W [pwjones at cnbc.cmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144009,
+ "object_name": "Jones PW, Gabbiani F (2012)"
+ },
+ {
+ "object_id": 241144,
+ "object_name": "Jones PW, Gabbiani F (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "LGMD Variability and logarithmic compression in dendrites (Jones and Gabbiani, 2012, 2012B)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116948,
+ "object_name": "Locust Lobula Giant Movement Detector (LGMD) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A compartmental model of the LGMD with a simplified, rake shaped, excitatory dendrite. It receives spontaneous input and excitatory and inhibitory synaptic inputs triggered by visual stimuli. It generates realistic responses to looming through the velocity dependent scaling and delay of individual excitatory synaptic inputs, with variability. We use the model to show that the key determinants of output variability are spontaneous input and temporal jitter of the excitatory inputs, rather than variability in magnitude of individual inputs (2012B, J Neurophysiol). We also use the model to analyze the transformation of the excitatory signals through the visual pathway; concluding that the representation of stimulus velocity is transformed from an expansive relationship at the level of the LGMD inputs to a logarithmic one at the level of its membrane potential (2012, J Neurosci).\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144007",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Jones, Peter W"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pwjones76@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:02:41.21",
+ "ver_number": 8
+ },
+ "144010": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22127761"
+ },
+ "class_id": 19,
+ "created": "2012-01-31T18:53:11",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 144010,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144015,
+ "object_name": "Beverlin, Bryce "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144014,
+ "object_name": "Beverlin B, Kakalios J, Nykamp D, Netoff TI (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Epileptic seizure model with Morris-Lecar neurons (Beverlin and Netoff 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we use phase-response curves (PRC) from Morris-Lecar (M-L) model neurons with synaptic depression and gradually decrease input current to cells within a network simulation. This method effectively decreases firing rates resulting in a shift to greater network synchrony illustrating a possible mechanism of the transition phenomenon. PRCs are measured from the M-L conductance based model cell with a range of input currents within the limit cycle. A large network of 3000 excitatory neurons is simulated with a network topology generated from second-order statistics which allows a range of population synchrony. The population synchrony of the oscillating cells is measured with the Kuramoto order parameter, which reveals a transition from tonic to clonic phase exhibited by our model network."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144010",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Beverlin, Bryce"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Morris-Lecar"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "beverlin@physics.umn.edu"
+ },
+ "ver_date": "2013-06-05T11:46:11",
+ "ver_number": 6
+ },
+ "144027": {
+ "class_id": 19,
+ "created": "2012-02-02T18:10:52",
+ "gitrepo": false,
+ "id": 144027,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140048,
+ "object_name": "London M, Roth A, Beeren L, H\u00e4usser M, Latham PE (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Perturbation sensitivity implies high noise and suggests rate coding in cortex (London et al. 2010)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... The network simulations\r\nwere also based on a previously published model(Latham et al. 2000), but with modifications to\r\nallow the addition and detection of extra spikes (see Supplementary Information,\r\nsection 7).\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144027",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2012-02-25T00:07:38",
+ "ver_number": 8
+ },
+ "144054": {
+ "class_id": 19,
+ "created": "2012-02-03T14:52:46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144054,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144056,
+ "object_name": "McTavish, Thomas S [thomas.mctavish at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144055,
+ "object_name": "McTavish TS, Migliore M, Shepherd GM, Hines ML (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Synchrony by synapse location (McTavish et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model considers synchrony between mitral cells induced via shared\r\ngranule cell interneurons while taking into account the spatial\r\nconstraints of the system. In particular, since inhibitory inputs\r\ndecay passively along the lateral dendrites, this model demonstrates\r\nthat an optimal arrangement of the inhibitory synapses will be near\r\nthe cell bodies of the relevant mitral cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144054",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Lateral inhibition"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:09:43.08",
+ "ver_number": 7
+ },
+ "144089": {
+ "class_id": 19,
+ "created": "2012-02-06T02:26:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144089,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144090,
+ "object_name": "Sidiropoulou, Kyriaki [sidirop at imbb.forth.gr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144394,
+ "object_name": "Sidiropoulou K, Poirazi P (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "144089",
+ "name": "ModelView"
+ }
+ ],
+ "default": "144089"
+ },
+ "name": "Layer V PFC pyramidal neuron used to study persistent activity (Sidiropoulou & Poirazi 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here, we use a compartmental modeling approach to search for discriminatory features in the properties of incoming stimuli to a PFC pyramidal neuron and/or its response that signal which of these stimuli will result in persistent activity emergence. \r\n\r\nFurthermore, we use our modeling approach to study cell-type specific differences in persistent activity properties, via implementing a regular spiking (RS) and an intrinsic bursting (IB) model neuron. \r\n...\r\nCollectively, our results pinpoint to specific features of the neuronal response to a given stimulus that code for its ability to induce persistent activity and predict differential roles of RS and IB neurons in persistent activity expression.\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144089",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Firing patterns"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sidiropoulou, Kyriaki "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sidirop@imbb.forth.gr"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181904,
+ "object_name": "144089"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T23:18:29",
+ "ver_number": 15
+ },
+ "144096": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 22219292"
+ },
+ "class_id": 19,
+ "created": "2012-02-07T14:31:49",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144096,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144100,
+ "object_name": "Shushruth S, Mangapathy P, Ichida JM, Bressloff PC, Schwabe L, Angelucci A (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Surround Suppression in V1 via Withdraw of Balanced Local Excitation in V1 (Shushruth 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model is mean-field network models, which is set up as a so-called ring-model, i. e. it is a highly idealized model of an orientation hypercolumn in primary visual cortex. Long-range intra-areal and inter-areal feedback connections are modeled phenomenologically as an external input. In this model, there are recurrent interactions via short-range local connections between orientation columns, but not between hypercolumns."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144096",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lars Schwabe\r\nlars.schwabe@uni-rostock.de"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lars.schwabe@uni-rostock.de"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:02:58.27",
+ "ver_number": 5
+ },
+ "144372": {
+ "citation": {
+ "attr_id": 391,
+ "value": "18784991"
+ },
+ "class_id": 19,
+ "created": "2012-02-12T23:28:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144372,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 93399,
+ "object_name": "Stiefel, Klaus [stiefel at salk.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118664,
+ "object_name": "Stiefel KM, Gutkin BS, Sejnowski TJ (2009)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cortical pyramidal neuron, phase response curve (Stiefel et al 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Three models of increasing complexity all showing a switch from type II (biphasic) to type I (monophasic) phase response curves with a cholinergic down-modulation of K+ conductances."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144372",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "k.stiefel@uws.edu.au"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ }
+ ]
+ },
+ "ver_date": "2019-11-27T14:18:16.99",
+ "ver_number": 6
+ },
+ "144376": {
+ "class_id": 19,
+ "created": "2012-02-14T14:19:38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144376,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144377,
+ "object_name": "Skolnick, Yosef [yskolnick at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 113999,
+ "object_name": "Winograd M, Destexhe A, Sanchez-Vives MV (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Hodgkin-Huxley model of persistent activity in PFC neurons (Winograd et al. 2008) (NEURON python)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper demonstrate a form of graded persistent activity activated by hyperpolarization. This phenomenon is modeled based on a slow calcium regulation of Ih, similar to that introduced\r\nearlier for thalamic neurons (see Destexhe et al., J Neurophysiol. 1996). The only difference is that the calcium signal is here provided by the high-threshold calcium current (instead of the low-threshold calcium current in thalamic neurons)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144376",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181766,
+ "object_name": "144376_2"
+ },
+ {
+ "object_id": 181803,
+ "object_name": "144376_3"
+ },
+ {
+ "object_id": 181806,
+ "object_name": "144376_1"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:30:15",
+ "ver_number": 10
+ },
+ "144380": {
+ "citation": {
+ "attr_id": 391,
+ "value": "21659016"
+ },
+ "class_id": 19,
+ "created": "2012-02-20T17:54:02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 144382,
+ "object_name": "Osmosis-driven water flux"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 144380,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33780,
+ "object_name": "Antic, Srdjan [antic at neuron.uchc.edu]"
+ },
+ {
+ "object_id": 144381,
+ "object_name": "Lee, Jonghwan [jonghwan at nmr.mgh.harvard.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 144383,
+ "object_name": "Cellular volume dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144025,
+ "object_name": "Lee J, Boas DA, Kim SJ (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A multiphysics neuron model for cellular volume dynamics (Lee et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This paper introduces a novel neuron model, where the cell volume is a time-varying variable and multiple physical principles are combined to build governing equations. Using this model, we analyzed neuronal volume responses during excitation, which elucidated the waveforms of fast intrinsic optical signals observed experimentally across the literature. In addition, we analyzed volume responses on a longer time scale with repetitive stimulation to study the characteristics of slow cell swelling."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144380",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Cellular volume dynamics"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Osmosis-driven water flux"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lee, Jonghwan [jonghwan@nmr.mgh.harvard.edu]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jonghwan@nmr.mgh.harvard.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 2391,
+ "object_name": "Ion Receptors"
+ }
+ ]
+ },
+ "ver_date": "2012-02-21T11:04:53",
+ "ver_number": 9
+ },
+ "144385": {
+ "class_id": 19,
+ "created": "2012-02-23T18:15:03",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144385,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 5042,
+ "object_name": "Shepherd GM, Brayton RK (1979)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "144385",
+ "name": "ModelView"
+ }
+ ],
+ "default": "144385"
+ },
+ "name": "Dendro-dendritic synaptic circuit (Shepherd Brayton 1979)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A NEURON simulation has been created to model the passive spread of an EPSP from a mitral cell synapse on a granule cell spine. The EPSP was shown to propagate subthreshold through the dendritic shaft into an adjacent spine with significant amplitude (figure 2B)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144385",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181460,
+ "object_name": "144385"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:09:58.087",
+ "ver_number": 18
+ },
+ "144387": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMC2851246"
+ },
+ "class_id": 19,
+ "created": "2012-02-24T17:24:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 144387,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144404,
+ "object_name": "Prinz, Astrid [astrid.prinz at emory.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 81002,
+ "object_name": "Prinz AA, Bucher D, Marder E (2004)"
+ },
+ {
+ "object_id": 144407,
+ "object_name": "G\u00fcnay C, Prinz AA (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Lobster STG pyloric network model with calcium sensor (Gunay & Prinz 2010) (Prinz et al. 2004)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116963,
+ "object_name": "Stomatogastric Ganglion (STG) Lateral Pyloric (LP) cell"
+ },
+ {
+ "object_id": 144405,
+ "object_name": "Stomatogastric ganglion (STG) pyloric dilator (PD) neuron"
+ },
+ {
+ "object_id": 144406,
+ "object_name": "Stomatogastric ganglion (STG) pyloric neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This pyloric network model simulator is a C/C++ program that saves 384 different calcium sensor values that are candidates for activity sensors (Gunay and Prinz, 2010). The simulator was used to scan all of the 20 million pyloric network models that were previously collected in a database (Prinz et al, 2004)."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144387",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Homeostasis"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Prinz, Astrid\r\n"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "STG Pyloric Dilator, STG Pyloric"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cgunay@emory.edu"
+ },
+ "ver_date": "2012-03-19T18:07:06",
+ "ver_number": 14
+ },
+ "144392": {
+ "class_id": 19,
+ "created": "2012-03-09T02:04:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144392,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143168,
+ "object_name": "Shah MM, Migliore M, Brown DA (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "144392_1",
+ "name": "soma=0"
+ },
+ {
+ "id": "144392_2",
+ "name": "km in both"
+ },
+ {
+ "id": "144392_3",
+ "name": "axon=0"
+ }
+ ],
+ "default": "144392_1"
+ },
+ "name": "CA1 pyramidal neurons: effects of Kv7 (M-) channels on synaptic integration (Shah et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from the paper:\r\nShah et al., 2011.\r\n\r\nIn this study, using a combination of electrophysiology\r\nand computational modelling, we show that these channels selectively influence peri-somatic but not dendritic post-synaptic excitatory synaptic potential (EPSP) integration in CA1 pyramidal cells. This may be important for their relative contributions to physiological processes such as synaptic plasticity as well as patho-physiological conditions such as epilepsy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144392",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181158,
+ "object_name": "144392_1"
+ },
+ {
+ "object_id": 181792,
+ "object_name": "144392_2"
+ },
+ {
+ "object_id": 181793,
+ "object_name": "144392_3"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:38:08",
+ "ver_number": 8
+ },
+ "144401": {
+ "class_id": 19,
+ "created": "2012-03-14T14:45:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 144401,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144402,
+ "object_name": "Vladimirov, Nikita "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144413,
+ "object_name": "Vladimirov N, Tu Y, Traub RD (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal cell: reconstructed axonal arbor and failures at weak gap junctions (Vladimirov 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of pyramidal CA1 cells connected by gap junctions in their axons.\r\nCell geometry is based on anatomical reconstruction of rat CA1 cell (NeuroMorpho.Org ID: NMO_00927) with long axonal arbor.\r\n\r\nModel init_2cells.hoc shows failures of second spike propagation in a spike doublet, depending on conductance of an axonal gap junction.\r\n\r\nModel init_ring.hoc shows that spike failure result in reentrant oscillations of a spike in a loop of axons connected by gap junctions, where one gap junction is weak.\r\n\r\nThe paper shows that in random networks of axons connected by gap junctions, oscillations are driven by single pacemaker loop of axons. The shortest loop, around which a spike can travel, is the most likely pacemaker.\r\nThis principle allows us to predict the frequency of oscillations from network connectivity and visa versa. We propose that this type of oscillations corresponds to so-called fast ripples in epileptic hippocampus."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144401",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Vladimirov, Nikita"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nikita.vladimirov@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181876,
+ "object_name": "144401"
+ }
+ ]
+ },
+ "ver_date": "2014-01-31T23:01:34",
+ "ver_number": 23
+ },
+ "144403": {
+ "class_id": 19,
+ "created": "2012-03-15T01:17:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 112844,
+ "object_name": "I Q"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144403,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144411,
+ "object_name": "Buckley, Christopher [chrisbuckley at brain.riken.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144410,
+ "object_name": "Buckley CL, Nowotny T (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A Moth MGC Model-A HH network with quantitative rate reduction (Buckley & Nowotny 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We provide the model used in Buckley & Nowotny (2011). It consists of a network of Hodgkin Huxley neurons coupled by slow GABA_B synapses which is run alongside a quantitative reduction described in the associated paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144403",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Buckley, Christopher chrisbuckley@brain.riken.jp"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "chrisbuckley@riken.brain.jp"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ }
+ ]
+ },
+ "ver_date": "2017-02-23T11:04:30.693",
+ "ver_number": 9
+ },
+ "144416": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Yamazaki T, Nagao S (2012) A Computational Mechanism for Unified Gain and Timing Control in the Cerebellum. PLoS ONE 7(3): e33319. doi:10.1371/ journal.pone.0033319"
+ },
+ "class_id": 19,
+ "created": "2012-03-17T20:45:12",
+ "gitrepo": false,
+ "id": 144416,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144418,
+ "object_name": "Yamazaki, Tadashi "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 115792,
+ "object_name": "Yamazaki T, Tanaka S (2007)"
+ },
+ {
+ "object_id": 151232,
+ "object_name": "Yamazaki T, Nagao S (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Cerebellar gain and timing control model (Yamazaki & Tanaka 2007)(Yamazaki & Nagao 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ },
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This paper proposes a hypothetical computational mechanism for unified gain and timing control in the cerebellum. The hypothesis is justified by computer simulations of a large-scale spiking network model of the cerebellum."
+ },
+ "opensourcebrain": {
+ "value": "cerebellargainandtiming"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144416",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yamazaki, Tadashi"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pone11@neuralgorithm.org"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2012-03-18T09:02:31",
+ "ver_number": 4
+ },
+ "144450": {
+ "citation": {
+ "attr_id": 391,
+ "value": "G\u00f3mez Gonz\u00e1lez JF, Mel BW, Poirazi P.\"Distinguishing linear vs. nonlinear integration in CA1 radial oblique dendrites: it?s about time.\" Frontiers in Computational Neuroscience. 2011;5:44. Epub 2011 Nov 14."
+ },
+ "class_id": 19,
+ "created": "2012-03-29T05:00:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 144450,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144452,
+ "object_name": "G\u00f3mez Gonz\u00e1lez JF, Mel BW, Poirazi P (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Linear vs non-linear integration in CA1 oblique dendrites (G\u00f3mez Gonz\u00e1lez et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The hippocampus in well known for its role in learning and memory processes. The CA1 region is the output of the hippocampal formation and pyramidal neurons in this region are the elementary units responsible for the processing and transfer of information to the cortex. Using this detailed single neuron model, it is investigated the conditions under which individual CA1 pyramidal neurons process incoming information in a complex (non-linear) as opposed to a passive (linear) manner.\r\nThis detailed compartmental model of a CA1 pyramidal neuron is based on one described previously (Poirazi, 2003). The model was adapted to five different reconstructed morphologies for this study, and slightly modified to fit the experimental data of (Losonczy, 2006), and to incorporate evidence in pyramidal neurons for the non-saturation of NMDA receptor-mediated conductances by single glutamate pulses. We first replicate the main findings of (Losonczy, 2006), including the very brief window for nonlinear integration using single-pulse stimuli. We then show that double-pulse stimuli increase a CA1 pyramidal neuron\u2019s tolerance for input asynchrony by at last an order of magnitude. Therefore, it is shown using this model, that the time window for nonlinear integration is extended by more than an order of magnitude when inputs are short bursts as opposed to single spikes.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144450",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jfcgomez@ull.edu.es"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T12:47:50",
+ "ver_number": 6
+ },
+ "144455": {
+ "class_id": 19,
+ "created": "2012-04-10T11:40:31",
+ "gitrepo": false,
+ "id": 144455,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83464,
+ "object_name": "Djurfeldt M"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144454,
+ "object_name": "Djurfeldt M (2012)"
+ },
+ {
+ "object_id": 144456,
+ "object_name": "Djurfeldt M, Lundqvist M, Johansson C, Rehn M, Ekeberg O, Lansner A (2008b)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Connection-set Algebra (CSA) for the representation of connectivity in NN models (Djurfeldt 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The connection-set algebra (CSA) is a novel\r\nand general formalism for the description of connectivity\r\nin neuronal network models, from small-scale to\r\nlarge-scale structure. ... The expressiveness of CSA\r\nmakes prototyping of network structure easy. A C++\r\nversion of the algebra has been implemented and used\r\nin a large-scale neuronal network simulation (Djurfeldt\r\net al., IBM J Res Dev 52(1/2):31\u201342, 2008b) and an\r\nimplementation in Python has been publicly released.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144455",
+ "ver_date": "2015-07-26T14:29:30.37",
+ "ver_number": 5
+ },
+ "144463": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22072667"
+ },
+ "class_id": 19,
+ "created": "2012-04-19T20:42:10",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122819,
+ "object_name": "Cav2.1 CACNA1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 144463,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144465,
+ "object_name": "O`Donnell, Cian [cian AT salk.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143448,
+ "object_name": "O'Donnell C, Nolan MF, van Rossum MC (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron dendritic spine with plasticity (O`Donnell et al. 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Biophysical model of a dendritic spine and adjacent dendrite with synapse. Model parameters adjusted to fit CA3-CA1 Shaffer collateral synapse data from literature. Model includes both electrical and Ca2+ dynamics, including AMPARs, NMDARs, 4 types of CaV channel, and leak conductance. Spine and synapse are plastic according to Ca2+ dependent rule.\r\n\r\nThe aim of the model is to explore the effects of dendritic spine structural plasticity on the rules of synaptic plasticity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144463",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "O Donnell, Cian "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cian@salk.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2012-04-20T14:03:45",
+ "ver_number": 6
+ },
+ "144468": {
+ "class_id": 19,
+ "created": "2012-04-23T11:45:18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 144468,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144474,
+ "object_name": "Schmandt, Nicolaus [nts21 at case.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144471,
+ "object_name": "Schmandt NT, Gal\u00e1n RF (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Markov Chain-based Stochastic Shielding Hodgkin Huxley Model (Schmandt, Galan 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144468",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Intrinsic Channel Noise"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Schmandt, Nicolaus "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nts21@case.edu"
+ },
+ "ver_date": "2012-07-11T11:19:31",
+ "ver_number": 11
+ },
+ "144477": {
+ "class_id": 19,
+ "created": "2012-04-25T14:35:57",
+ "gitrepo": false,
+ "id": 144477,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144478,
+ "object_name": "Spencer, Kevin M. [kevin_spencer at hms.harvard.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138251,
+ "object_name": "Spencer KM (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 144479,
+ "object_name": "IDL"
+ }
+ ]
+ },
+ "name": "Functional consequences of cortical circuit abnormalities on gamma in schizophrenia (Spencer 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Schizophrenia is characterized by cortical circuit abnormalities, which might be reflected in\r\ngamma-frequency (30\u2013100 Hz) oscillations in the electroencephalogram. Here we used a computational\r\nmodel of cortical circuitry to examine the effects that neural circuit abnormalities might have\r\non gamma generation and network excitability. The model network consisted of 1000 leaky integrateand-\r\nfi re neurons with realistic connectivity patterns and proportions of neuron types [pyramidal\r\ncells (PCs), regular-spiking inhibitory interneurons, and fast-spiking interneurons (FSIs)].\r\n...\r\nThe results of this study suggest that a multimodal\r\napproach, combining non-invasive neurophysiological and structural measures, might be\r\nable to distinguish between different neural circuit abnormalities in schizophrenia patients.\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144477",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2012-04-25T15:02:55",
+ "ver_number": 3
+ },
+ "144481": {
+ "class_id": 19,
+ "created": "2012-04-25T19:16:41",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 144481,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144487,
+ "object_name": "Boucher PA, Jo\u00f3s B, Morris CE (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Nodes of Ranvier with left-shifted Nav channels (Boucher et al. 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The two programs CLSRanvier.f and propagation.f simulate the excitability of a myelinated axon with injured nodes of Ranvier.\r\nThe injury is simulated as the Coupled Left Shift (CLS) of the activation(V) and inactivation(V) (availability) of a fraction of Nav channels."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144481",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Na, I_window"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "bjoos@uottawa.ca"
+ },
+ "ver_date": "2012-04-26T18:10:14",
+ "ver_number": 14
+ },
+ "144482": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Delgado JY, G\u00f3mez Gonz\u00e1lez JF, Desai NS. Pyramidal neuron conductance state gates spike-timing-dependent plasticity. J Neurosci. 2010 Nov 24;30 (47):15713-25. doi: 10.1523/JNEUROSCI.3068-10.2010,"
+ },
+ "class_id": 19,
+ "created": "2012-04-26T06:34:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144482,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144483,
+ "object_name": "Gomez-Gonzalez, JF [jfcgomez at ull.edu.es]"
+ },
+ {
+ "object_id": 144491,
+ "object_name": "Delgado JY, [jyamir at ucla.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144484,
+ "object_name": "Delgado JY, G\u00f3mez-Gonz\u00e1lez JF, Desai NS (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "144482",
+ "name": "Run"
+ }
+ ],
+ "default": "144482"
+ },
+ "name": "Pyramidal neuron conductances state and STDP (Delgado et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neocortical neurons in vivo process each of their individual inputs in the context of ongoing synaptic background activity, produced by the thousands of presynaptic partners a typical neuron has. That background activity affects multiple aspects of neuronal and network function. However, its effect on the induction of spike-timing dependent plasticity (STDP) is not clear.\r\nUsing the present biophysically-detailed computational model, it is not only able to replicate the conductance-dependent shunting of dendritic potentials (Delgado et al,2010), but show that synaptic background can truncate calcium dynamics within dendritic spines, in a way that affects potentiation more strongly than depression.\r\nThis program uses a simplified layer 2/3 pyramidal neuron constructed in NEURON.\r\nIt was similar to the model of Traub et al., J Neurophysiol. (2003), and consisted of a soma, an apical shaft, distal dendrites, five basal dendrites, an axon, and a single spine. The spine\u2019s location was variable along the apical shaft (initial 50 μm) and apical. The axon contained an axon hillock region, an initial segment, segments with myelin, and nodes of Ranvier, in order to have realistic action potential generation. For more information about the model see supplemental material, Delgado et al 2010."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144482",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gomez-Gonzalez, JF"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Layer 2/3 pyramidal neuron in auditory cortex"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jfcgomez@ull.edu.es"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181306,
+ "object_name": "144482"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T13:19:25.307",
+ "ver_number": 18
+ },
+ "144489": {
+ "class_id": 19,
+ "created": "2012-04-27T04:36:46",
+ "gitrepo": false,
+ "id": 144489,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147643,
+ "object_name": "Dangerfield, Ciara E. [ciara.dangerfiel at dtc.ox.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144506,
+ "object_name": "Dangerfield CE, Kay D, Burrage K (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Reflected SDE Hodgkin-Huxley Model (Dangerfield et al. 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Matlab code for simulating channel noise using the original Hodgkin-Huxley equations and a variant of the Hodkgin-Huxley model from (Bruce, Annals Bio Eng, Vol 36, pp 824-838, 2009). Methods used in simulation are SSA, SDE method and RSDE method."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144489",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ion Channel Kinetics"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dangerfield, Ciara E. [ciara.dangerfiel@dtc.ox.ac.uk]"
+ },
+ "ver_date": "2013-12-18T11:23:33",
+ "ver_number": 14
+ },
+ "144490": {
+ "class_id": 19,
+ "created": "2012-04-27T10:06:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2397,
+ "object_name": "I Mixed"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 144490,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144545,
+ "object_name": "Sterratt, David "
+ },
+ {
+ "object_id": 144554,
+ "object_name": "Groen, Martine R [martine.groen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144544,
+ "object_name": "Sterratt DC, Groen MR, Meredith RM, van Ooyen A (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: synaptically-induced bAP predicts synapse location (Sterratt et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an adaptation of Poirazi et al.'s (2003) CA1 model that is used to measure BAP-induced voltage and calcium signals in spines after simulated Schaffer\r\ncollateral synapse stimulation. In the model, the peak calcium concentration is highly\r\ncorrelated with soma-synapse distance under a number of physiologically-realistic\r\nsuprathreshold stimulation regimes and for a range of dendritic morphologies. There are also simulations demonstrating that peak calcium can be used to set up a synaptic democracy\r\nin a homeostatic manner, whereby synapses regulate their synaptic strength on the\r\nbasis of the difference between peak calcium and a uniform target value."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144490",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Groen, Martine R\r\n"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "david.c.sterratt@ed.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181685,
+ "object_name": "144490"
+ }
+ ]
+ },
+ "ver_date": "2014-02-06T16:14:16",
+ "ver_number": 12
+ },
+ "144499": {
+ "class_id": 19,
+ "created": "2012-05-14T11:14:06",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 144499,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144500,
+ "object_name": "Leggitt, Alan [alan.leggitt at ucsf.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 138952,
+ "object_name": "Goldwyn JH, Shea-Brown E (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Stochastic versions of the Hodgkin-Huxley equations (Goldwyn, Shea-Brown 2011) (pylab)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A pylab version from Alan Leggitt for simulating different channel noise models using the Hodgkin-Huxley equations. Methods provided and reviewed in Goldwyn and Shea-Brown (2011) are: current noise, subunit noise, conductance noise, and Markov chain, as well as the standard deterministic Hodgkin-Huxley model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144499",
+ "ver_date": "2018-02-26T11:39:57.793",
+ "ver_number": 7
+ },
+ "144502": {
+ "class_id": 19,
+ "created": "2012-05-16T11:27:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 144502,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116982,
+ "object_name": "Torben-Nielsen, Ben [btorbennielsen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148588,
+ "object_name": "Torben-Nielsen B, Segev I, Yarom Y (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Inferior Olive, subthreshold oscillations (Torben-Nielsen, Segev, Yarom 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 144503,
+ "object_name": "Inferior olive neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Inferior Olive is a brain structure in which neurons are solely connected to each other through gap-junctions. Its behavior is characterized by spontaneous subthreshold oscillation, frequency changes in the subthreshold oscillation, stable phase differences between neurons, and propagating waves of activity.\r\n\r\nOur model based on actual IO topology can reproduce these behaviors and provides a mechanistic explanation thereof."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144502",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I_leak"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Torben-Nielsen, Benjamin "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Inferior Olive neuron"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "PyNEURON"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "btorbennielsen@gmail.com"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181463,
+ "object_name": "144502"
+ }
+ ]
+ },
+ "ver_date": "2014-02-15T14:30:24",
+ "ver_number": 6
+ },
+ "144509": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 19625516"
+ },
+ "class_id": 19,
+ "created": "2012-06-04T09:35:31",
+ "gitrepo": false,
+ "id": 144509,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144512,
+ "object_name": "Aubie, Brandon [aubiebn at mcmaster.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 141065,
+ "object_name": "Aubie B, Becker S, Faure PA (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Duration-tuned neurons from the inferior colliculus of the big brown bat (Aubie et al. 2009)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "dtnet is a generalized neural network simulator written in C++ with an easy to use XML description language to generate arbitrary neural networks and then run simulations covering many different parameter values. For example, you can specify ranges of parameter values for several different connection weights and then automatically run simulations over all possible parameters. Graphing ability is built in as long as the free, open-source, graphing application GLE (http://glx.sourceforge.net/) is installed.\r\n\r\nIncluded in the examples folder are simulation descriptions that were used to generate the results in Aubie et al. (2009). Refer to the README file for instructions on compiling and running these examples.\r\n\r\nThe most recent source code can be obtained from GitHub: https://github.com/baubie/dtnet \r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/144509",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Aubie, Brandon "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Locus Coeruleus neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rhuerta@ucsd.edu"
+ },
+ "ver_date": "2012-09-26T14:00:56",
+ "ver_number": 5
+ },
+ "145672": {
+ "class_id": 19,
+ "created": "2012-09-13T16:03:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 112842,
+ "object_name": "Kv4.2 KCND2"
+ },
+ {
+ "object_id": 123580,
+ "object_name": "Kv3.4 KCNC4"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 145672,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145678,
+ "object_name": "Ritter, David [david.ritter at jefferson.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146109,
+ "object_name": "Fineberg JD, Ritter DM, Covarrubias M (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 125744,
+ "object_name": "IonChannelLab"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "145672_1",
+ "name": "Figure11C CSI"
+ },
+ {
+ "id": "145672_2",
+ "name": "Figure11D"
+ },
+ {
+ "id": "145672_3",
+ "name": "Figure11E"
+ },
+ {
+ "id": "145672_4",
+ "name": "Figure11C CSI+OSI"
+ }
+ ],
+ "default": "145672_1"
+ },
+ "name": "Neurophysiological impact of inactivation pathways in A-type K+ channels (Fineberg et al 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These models predict the differential effects of varying pathways of inactivation (closed state inactivation, CSI, or open state inactivation, OSI). Specifically, Markov models of Kv4 potassium channels with CSI or CSI+OSI were inserted into the CA1 pyramidal neuron model from Migliore et al (1999; ModelDB accession #2796) to determine the neurophysiological impact of inactivation pathways. Furthermore, Markov models of Kv4.2 and Kv3.4 channels are used to illustrate a method by which to test what pathway of inactivation a channel uses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/145672",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ritter, David "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "david.ritter@jefferson.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181717,
+ "object_name": "145672_1"
+ },
+ {
+ "object_id": 181718,
+ "object_name": "145672_2"
+ },
+ {
+ "object_id": 181719,
+ "object_name": "145672_3"
+ },
+ {
+ "object_id": 181720,
+ "object_name": "145672_4"
+ }
+ ]
+ },
+ "ver_date": "2018-02-26T11:40:29.51",
+ "ver_number": 23
+ },
+ "145800": {
+ "biosimulations": {
+ "value": "modeldb-145800"
+ },
+ "class_id": 19,
+ "created": "2012-09-13T23:10:16",
+ "gitrepo": false,
+ "id": 145800,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145885,
+ "object_name": "Kim, Jae Kyoung [kimjack0 at kaist.ac.kr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146500,
+ "object_name": "Kim JK, Forger DB (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 143722,
+ "object_name": "Mathematica"
+ },
+ {
+ "object_id": 184414,
+ "object_name": "SBML"
+ }
+ ]
+ },
+ "name": "Circadian clock model based on protein sequestration (simple version) (Kim & Forger 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"\u2026 To understand the biochemical mechanisms of this timekeeping, we have developed a detailed mathematical model of the mammalian circadian clock. \r\n\r\nOur model can accurately predict diverse experimental data including the phenotypes of mutations or knockdown of clock genes as well as the time courses and relative expression of clock transcripts and proteins. \r\n\r\nUsing this model, we show how a universal motif of circadian timekeeping, where repressors tightly bind activators rather than directly binding to DNA, can generate oscillations when activators and repressors are in stoichiometric balance. \r\n\u2026\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/145800",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Circadian Rhythms"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Jae Kyoung Kim [jaekkim at umich.edu]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "SCN"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jaekkim@umich.edu"
+ },
+ "ver_date": "2016-04-05T16:59:25.293",
+ "ver_number": 13
+ },
+ "145801": {
+ "biosimulations": {
+ "value": "modeldb-145801"
+ },
+ "class_id": 19,
+ "created": "2012-09-13T23:26:52",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 145801,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145885,
+ "object_name": "Kim, Jae Kyoung [kimjack0 at kaist.ac.kr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146500,
+ "object_name": "Kim JK, Forger DB (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 143722,
+ "object_name": "Mathematica"
+ }
+ ]
+ },
+ "name": "Circadian clock model in mammals (detailed version) (Kim & Forger 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"\u2026 To understand the biochemical mechanisms of this timekeeping, we have developed a detailed mathematical model of the mammalian circadian clock. \r\n\r\nOur model can accurately predict diverse experimental data including the phenotypes of mutations or knockdown of clock genes as well as the time courses and relative expression of clock transcripts and proteins. \r\n\r\nUsing this model, we show how a universal motif of circadian timekeeping, where repressors tightly bind activators rather than directly binding to DNA, can generate oscillations when activators and repressors are in stoichiometric balance. \r\n\u2026\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/145801",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kim, Jae Kyoung [jaekkim at umich.edu]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "SCN"
+ },
+ "ver_date": "2016-05-26T11:31:00.403",
+ "ver_number": 15
+ },
+ "145803": {
+ "class_id": 19,
+ "created": "2012-09-14T10:47:36",
+ "gitrepo": false,
+ "id": 145803,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145804,
+ "object_name": "Bedard, Claude [bedard at unic.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145805,
+ "object_name": "B\u00e9dard C, B\u00e9huret S, Deleuze C, Bal T, Destexhe A (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Oversampling method to extract excitatory and inhibitory conductances (Bedard et al. 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nWe present here a new method that allows\r\nextracting estimates of the full time course of excitatory and inhibitory conductances from single-trial\r\nVm recordings.\r\n\r\nThis method is based on oversampling of the Vm . We test the method numerically using\r\nmodels of increasing complexity.\r\n\r\nFinally, the method is evaluated using controlled conductance injection\r\nin cortical neurons in vitro using the dynamic-clamp technique.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/145803",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom/morse@yale.edu"
+ },
+ "ver_date": "2012-09-14T11:00:06",
+ "ver_number": 4
+ },
+ "145836": {
+ "class_id": 19,
+ "created": "2012-09-16T11:21:20",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122827,
+ "object_name": "NR2B GRIN2B"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 145836,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145837,
+ "object_name": "Moradi, Keivan [k.moradi at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147468,
+ "object_name": "Moradi K, Moradi K, Ganjkhani M, Hajihasani M, Gharibzadeh S, Kaka G (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A fast model of voltage-dependent NMDA Receptors (Moradi et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These are two or triple-exponential models of the voltage-dependent NMDA receptors. Conductance of these receptors increase voltage-dependently with a \"Hodgkin and Huxley-type\" gating style that is also depending on glutamate-binding. Time course of the gating of these receptors in response to glutamate are also changing voltage-dependently. Temperature sensitivity and desensitization of these receptor are also taken into account.\r\nThree previous kinetic models that are able to simulate the voltage-dependence of the NMDARs are also imported to the NMODL. These models are not temperature sensitive. \r\n\r\nThese models are compatible with the \"event delivery system\" of NEURON. Parameters that are reported in our paper are applicable to CA1 pyramidal cell dendrites."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/145836",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "NR1/2B"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "k.moradi@gmail.com"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "k.moradi@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181906,
+ "object_name": "145836"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T23:19:11",
+ "ver_number": 11
+ },
+ "145882": {
+ "class_id": 19,
+ "created": "2012-09-17T15:20:50",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 145882,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145824,
+ "object_name": "Azzopardi G, Petkov N (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A CORF computational model of a simple cell that relies on LGN input (Azzopardi & Petkov 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\n\r\nWe propose a computational model that uses as afferent inputs the responses of model LGN cells with center-surround receptive fields (RFs) and we refer to it as a Combination of Receptive Fields (CORF) model. \r\n\r\nWe use shifted gratings as test stimuli and simulated reverse correlation to explore the nature of the proposed model. \r\n\r\nWe study its behavior regarding the effect of contrast on its response and orientation bandwidth as well as the effect of an orthogonal mask on the response to an optimally oriented stimulus.\r\n\r\nWe also evaluate and compare the performances of the CORF and GF (Gabor Filter) models regarding contour detection, using two public data sets of images of natural scenes with associated contour ground truths.\r\n\r\n...\r\n\r\nThe proposed CORF model is more realistic than the GF model and is more effective in contour detection, which is assumed to be the primary biological role of simple cells.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/145882",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2015-07-26T14:32:10.283",
+ "ver_number": 5
+ },
+ "145917": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22536151"
+ },
+ "class_id": 19,
+ "created": "2012-09-21T17:04:07",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 145917,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ },
+ {
+ "object_id": 145924,
+ "object_name": "Evans, Rebekah [Rebekah.Evans at nih.gov]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145922,
+ "object_name": "Evans RC, Morera-Herreras T, Cui Y, Du K, Sheehan T, Kotaleski JH, Venance L, Blackwell KT (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "NMDA subunit effects on Calcium and STDP (Evans et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Effect of NMDA subunit on spike timing dependent plasticity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/145917",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rebekah Evans rcolema2@gmu.edu"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "avrama@gmu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2012-09-27T14:19:00",
+ "ver_number": 6
+ },
+ "146024": {
+ "class_id": 19,
+ "created": "2012-09-26T01:41:55",
+ "gitrepo": false,
+ "id": 146024,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147368,
+ "object_name": "Mai Z, Liu H (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A generic MAPK cascade model for random parameter sampling analysis (Mai and Liu 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A generic three-tier MAPK cascade model constructed by comparing previous MAPK models covering a range of biosystems. Pseudo parameters and random sampling were employed for qualitative analysis. A range of kinetic behaviors of MAPK activation, including ultrasensitivity, bistability, transient activation and oscillation, were successfully reproduced in this generic model. The mechanisms were revealed by statistic analysis of the parameter sets."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146024",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zxmai.fd@gmail.com"
+ },
+ "ver_date": "2013-02-06T15:34:05",
+ "ver_number": 4
+ },
+ "146026": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22524993"
+ },
+ "class_id": 19,
+ "created": "2012-09-28T16:47:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146026,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146027,
+ "object_name": "Bahl, Armin [bahl at neuro.mpg.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145813,
+ "object_name": "Bahl A, Stemmler MB, Herz AV, Roth A (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A set of reduced models of layer 5 pyramidal neurons (Bahl et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These are the NEURON files for 10 different models of a reduced L5 pyramidal neuron. The parameters were obtained by automatically fitting the models to experimental data using a multi objective evolutionary search strategy. Details on the algorithm can be found at \r\nhttp://www.g-node.org/emoo and in Bahl et al. (2012).\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146026",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Bahl, Armin [bahl at neuro.mpg.de]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "arbahl@gmail.com"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181249,
+ "object_name": "146026_ex3"
+ },
+ {
+ "object_id": 181653,
+ "object_name": "146026_ex2"
+ },
+ {
+ "object_id": 181654,
+ "object_name": "146026_ex1"
+ }
+ ]
+ },
+ "ver_date": "2019-03-28T10:22:40.783",
+ "ver_number": 15
+ },
+ "146030": {
+ "class_id": 19,
+ "created": "2012-10-02T08:02:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146030,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146032,
+ "object_name": "O'Connor S, Angelo K, Jacob TJC (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "146030",
+ "name": "ModelView"
+ }
+ ],
+ "default": "146030"
+ },
+ "name": "Olfactory bulb mitral cell gap junction NN model: burst firing and synchrony (O`Connor et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In a network of 6 mitral cells connected by gap junction in the apical dendrite tuft, continuous current injections of 0.06 nA are injected into 20 locations in the apical tufts of two of the mitral cells. The current injections into one of the cells starts 10 ms after the other to generate asynchronous firing in the cells (Migliore et al. 2005 protocol). Firing of the cells is asynchronous for the first 120 ms. However after the burst firing phase is completed the firing in all cells becomes synchronous."
+ },
+ "opensourcebrain": {
+ "value": "olfactory-bulb-network-model-o-connor-angelo-and-jacob-2012"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146030",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "O'Connor, Simon [simon.oconnor at btinternet.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "simon.oconnor@btinternet.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181614,
+ "object_name": "146030"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:10:42.583",
+ "ver_number": 10
+ },
+ "146050": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Briley PM, Kitterick PT & Summerfield AQ (2012) Evidence for opponent-process analysis of sound-source location in humans. Journal of the Association for Research in Otolaryngology."
+ },
+ "class_id": 19,
+ "created": "2012-10-04T11:45:55",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146050,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146106,
+ "object_name": "Briley, Paul M [paul dot briley at york dot ac dot uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146107,
+ "object_name": "Briley PM, Kitterick PT, Summerfield AQ (2013)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Opponent-channel model of the cortical representation of auditory space (Briley et al., 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is the computational opponent-channel model used by Briley et al. (2012) to model electroencephalographic (EEG) responses from human auditory cortex to abrupt shifts in sound-source location and to predict psychophysical measures of spatial acuity. The zip file contains both a Matlab and an Excel implementation of the model. Details of use are contained within each file."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146050",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Briley, Paul M [paul dot briley at york dot ac dot uk]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "paul.briley@york.ac.uk"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:03:42.233",
+ "ver_number": 4
+ },
+ "146376": {
+ "class_id": 19,
+ "created": "2012-10-23T12:24:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 146376,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143721,
+ "object_name": "Limongiello, Alessandro [alessandro.limongiello at unina.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146819,
+ "object_name": "Marasco A, Limongiello A, Migliore M (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Ca1 pyramidal neuron: reduction model (Marasco et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we introduce a new, automatic and fast method to map realistic neurons into equivalent reduced models running up to >40 times faster while maintaining a very high accuracy of the membrane potential dynamics during synaptic inputs, and a direct link with experimental observables. The mapping of arbitrary sets of synaptic inputs, without additional fine tuning, would also allow the convenient and efficient implementation of a new generation of large-scale simulations of brain regions reproducing the biological variability observed in real neurons, with unprecedented advances to understand higher brain functions.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146376",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T13:58:50.113",
+ "ver_number": 20
+ },
+ "146499": {
+ "class_id": 19,
+ "created": "2012-10-25T16:49:30",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 146499,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146501,
+ "object_name": "Nicola, Wilten [wnicola at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148235,
+ "object_name": "Nicola W, Campbell SA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Mean Field Equations for Two-Dimensional Integrate and Fire Models (Nicola and Campbell, 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The zip file contains the files used to perform numerical simulation and bifurcation studies of large networks of two-dimensional integrate and fire neurons and of the corresponding mean field models derived in our paper. The neural models used are the Izhikevich model and the Adaptive Exponential model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146499",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Nicola, Wilten wnicola@uwaterloo.ca"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Integrate and Fire"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wnicola@uwaterloo.ca"
+ },
+ "ver_date": "2014-06-02T10:33:35",
+ "ver_number": 9
+ },
+ "146504": {
+ "class_id": 19,
+ "created": "2012-10-26T15:37:39",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146504,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 87283,
+ "object_name": "Clancy, Colleen E [ceclancy at ucdavis.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146113,
+ "object_name": "Lewin N, Aksay E, Clancy CE (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Paradoxical GABA-mediated excitation (Lewin et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"GABA is the key inhibitory neurotransmitter in the adult central nervous system, but in some circumstances can lead to a paradoxical excitation that has been causally implicated in diverse pathologies from endocrine stress responses to diseases of excitability including neuropathic pain and temporal lobe epilepsy. \r\n\r\nWe undertook a computational modeling approach to determine plausible ionic mechanisms of GABAA-dependent excitation in isolated post-synaptic CA1 hippocampal neurons because it may constitute a trigger for pathological synchronous epileptiform discharge. \r\n\r\nIn particular, the interplay intracellular chloride accumulation via the GABAA receptor and extracellular potassium accumulation via the K/Cl co-transporter KCC2 in promoting GABAA-mediated excitation is complex. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146504",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "KCC2, NKCC1, CALCIUM PUMP,"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2018-02-26T11:41:36.633",
+ "ver_number": 3
+ },
+ "146509": {
+ "class_id": 19,
+ "created": "2012-10-30T13:43:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 146509,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 119280,
+ "object_name": "Ferrante, Michele [mferr133 at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147488,
+ "object_name": "Ferrante M, Migliore M, Ascoli GA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "146509",
+ "name": "ModelView"
+ }
+ ],
+ "default": "146509"
+ },
+ "name": "Functional impact of dendritic branch point morphology (Ferrante et al., 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, we first quantified the morphological variability of branch points from two-photon images of rat CA1 pyramidal neurons. We then investigated the geometrical features affecting spike initiation, propagation, and timing with a computational model validated by glutamate uncaging experiments. The results suggest that even subtle membrane readjustments at branch point could drastically alter the ability of synaptic input to generate, propagate, and time action potentials.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146509",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mferr133@bu.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181502,
+ "object_name": "146509"
+ }
+ ]
+ },
+ "ver_date": "2014-02-14T15:39:49",
+ "ver_number": 13
+ },
+ "146554": {
+ "citation": {
+ "attr_id": 391,
+ "value": "DOI:10.1371/journal.pcbi.1002788 (Sedigh-Sarvestani et al. In press); PMID: 20107121; PMID: 21893532"
+ },
+ "class_id": 19,
+ "created": "2012-10-30T18:31:01",
+ "gitrepo": false,
+ "id": 146554,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146555,
+ "object_name": "Sedigh-Sarvestani, Madineh [m.sedigh.sarvestani at gmail.com]"
+ },
+ {
+ "object_id": 146556,
+ "object_name": "Schiff, Steven [sschiff at psu.edu]"
+ },
+ {
+ "object_id": 146557,
+ "object_name": "Gluckman, Bruce [BruceGluckman at psu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 146816,
+ "object_name": "unscented Kalman filter"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146815,
+ "object_name": "Sedigh-Sarvestani M, Schiff SJ, Gluckman BJ (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Reconstrucing sleep dynamics with data assimilation (Sedigh-Sarvestani et al., 2012)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We have developed a framework, based on the unscented Kalman filter, for estimating hidden states and parameters of a network model of sleep. The network model includes firing rates and neurotransmitter output of 5 cell-groups in the rat brain."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146554",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Unscented Kalman Filter"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sedigh-Sarvestani, Madineh \r\nSchiff, Steven \r\nGluckman, Bruce "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "m.sedigh.sarvestani@gmail.com"
+ },
+ "ver_date": "2012-11-28T10:24:39",
+ "ver_number": 10
+ },
+ "146565": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22940864"
+ },
+ "class_id": 19,
+ "created": "2012-11-13T14:36:34",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146565,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124046,
+ "object_name": "Polsky, Alon [alonpol at tx.technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 245799,
+ "object_name": "Whisking"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146570,
+ "object_name": "Lavzin M, Rapoport S, Polsky A, Garion L, Schiller J (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "146565",
+ "name": "ModelView"
+ }
+ ],
+ "default": "146565"
+ },
+ "name": "Nonlinear dendritic processing in barrel cortex spiny stellate neurons (Lavzin et al. 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a multi-compartmental simulation of a spiny stellate neuron which is stimulated by a thalamocortical (TC) and cortico-cortical (CC) inputs. No other cells are explicitly modeled; the presynaptic network activation is represented by the number of active synapses. Preferred and non \u2013preferred thalamic directions thus correspond to larder/smaller number of TC synapses. This simulation revealed that randomly activated synapses can cooperatively trigger global NMDA spikes, which involve participation of most of the dendritic tree. Surprisingly, we found that although the voltage profile of the cell was uniform, the calcium influx was restricted to \u2018hot spots\u2019 which correspond to synaptic clusters or large conductance synapses"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146565",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "apmega@yahoo.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181457,
+ "object_name": "146565"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:35:04.007",
+ "ver_number": 12
+ },
+ "146583": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 22442645 ; PLoS Comput Biol. 2012;8(3):e1002398. Epub 2012 Mar 15."
+ },
+ "class_id": 19,
+ "created": "2012-11-16T18:54:12",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146583,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146587,
+ "object_name": "Chow, Siu-Fai "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 144991,
+ "object_name": "Apoptosis"
+ },
+ {
+ "object_id": 155599,
+ "object_name": "Neurogenesis"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146586,
+ "object_name": "Chow SF, Wick SD, Riecke H (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Olfactory bulb network: neurogenetic restructuring and odor decorrelation (Chow et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Adult neurogenesis in the olfactory bulb has been shown experimentally\r\nto contribute to perceptual learning. Using a computational network\r\nmodel we show that fundamental aspects of the adult neurogenesis\r\nobserved in the olfactory bulb -- the persistent addition of new\r\ninhibitory granule cells to the network, their activity-dependent\r\nsurvival, and the reciprocal character of their synapses with the\r\nprincipal mitral cells -- are sufficient to restructure the network\r\nand to alter its encoding of odor stimuli adaptively so as to reduce\r\nthe correlations between the bulbar representations of similar\r\nstimuli. The model captures the experimentally observed\r\nrole of neurogenesis in perceptual learning and the enhanced response\r\nof young granule cells to novel stimuli. Moreover, it makes specific\r\npredictions for the type of odor enrichment that should be effective\r\nin enhancing the ability of animals to discriminate similar odor\r\nmixtures. NSF grant DMS-0719944.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146583",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Siu Fai Chow"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "h-riecke@northwestern.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:11:08.903",
+ "ver_number": 6
+ },
+ "146734": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22805060"
+ },
+ "class_id": 19,
+ "created": "2012-11-19T15:48:59",
+ "gitrepo": false,
+ "id": 146734,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 76884,
+ "object_name": "Ermentrout, Bard [bard_at_pitt.edu]"
+ },
+ {
+ "object_id": 146804,
+ "object_name": "Komek, Kubra [kkomek at andrew.cmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146735,
+ "object_name": "K\u00f6mek K, Bard Ermentrout G, Walker CP, Cho RY (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Modeling the effects of dopamine on network synchronization (Komek et al. 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ },
+ {
+ "object_id": 146806,
+ "object_name": "Abstract theta neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Dopamine modulates cortical circuit activity in part through its actions on GABAergic interneurons, including increasing the excitability of fast-spiking interneurons. Though such effects have been demonstrated in single cells, there are no studies that examine how such mechanisms may lead to the effects of dopamine at a neural network level. In this study, we investigated the effects of dopamine on synchronization in two simulated neural networks; one biophysical model composed of Wang-Buzsaki neurons and a reduced model with theta neurons. In both models, we show that parametrically varying the levels of dopamine, modeled through the changes in the excitability of interneurons, reveals an inverted-U shaped relationship, with low gamma band power at both low and high dopamine levels and optimal synchronization at intermediate levels. Moreover, such a relationship holds when the external input is both tonic and periodic at gamma band range. Together, our results indicate that dopamine can modulate cortical gamma band synchrony in an inverted-U fashion and that the physiologic effects of dopamine on single fast-spiking interneurons can give rise to such non-monotonic effects at the network level."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146734",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Komek, Kubra "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Wang-Buzsaki neuron & theta neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kkomek@andrew.cmu.edu"
+ },
+ "ver_date": "2012-11-21T10:45:17",
+ "ver_number": 8
+ },
+ "146813": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 156786,
+ "object_name": "original 2013 paper model"
+ }
+ ]
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "de Almeida, Idiart and Linster, 2013."
+ },
+ "class_id": 19,
+ "created": "2012-11-26T17:37:51",
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "model for both 2014 and 2013 papers"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146813,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146814,
+ "object_name": "de Almeida, Licurgo [lbd38 at cornell.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148039,
+ "object_name": "de Almeida L, Idiart M, Linster C (2013)"
+ },
+ {
+ "object_id": 156788,
+ "object_name": "Devore S, de Almeida L, Linster C (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "ACh modulation in olfactory bulb and piriform cortex (de Almeida et al. 2013;Devore S, et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 269,
+ "object_name": "Piriform cortex anterior pyramidal layer II GLU cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 6013,
+ "object_name": "Piriform cortex anterior interneuron superficial GABA cell"
+ },
+ {
+ "object_id": 6034,
+ "object_name": "Piriform cortex anterior interneuron deep layer GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This matlab code was used in the papers de Almeida, Idiart and Linster, (2013), Devore S, de Almeida L, Linster C (2014) .\r\nThis work uses a computational model of the OB and PC and their common cholinergic inputs to investigate how bulbar cholinergic modulation affects cortical odor processing."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146813",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "de Almeida, Licurgo [lbd38@cornell.edu]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "licurgoalmeida@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ },
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ },
+ {
+ "object_id": 221,
+ "object_name": "Olfactory Receptors"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:11:34.363",
+ "ver_number": 13
+ },
+ "146949": {
+ "class_id": 19,
+ "created": "2012-12-03T20:16:24",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146949,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 114659,
+ "object_name": "Shepherd, Gordon MG [g-shepherd at northwestern.edu]"
+ },
+ {
+ "object_id": 144539,
+ "object_name": "Chadderdon, George [gchadder3 at gmail.com]"
+ },
+ {
+ "object_id": 146031,
+ "object_name": "Kerr, Cliff [cliffk at neurosim.downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154877,
+ "object_name": "Chadderdon GL, Mohan A, Suter BA, Neymotin SA, Kerr CC, Francis JT, Shepherd GM, Lytton WW (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Motor cortex microcircuit simulation based on brain activity mapping (Chadderdon et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 227711,
+ "object_name": "Neocortex M1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nWe developed a computational\r\nmodel based primarily on a unified set of brain activity mapping\r\nstudies of mouse M1.\r\nThe simulation consisted of 775 spiking neurons of\r\n10 cell types with detailed population-to-population connectivity.\r\n\r\nStatic\r\nanalysis of connectivity with graph-theoretic tools revealed that the corticostriatal\r\npopulation showed strong centrality, suggesting that would\r\nprovide a network hub.\r\n...\r\nBy demonstrating the effectiveness of combined static\r\nand dynamic analysis, our results show how static brain maps can be\r\nrelated to the results of brain activity mapping.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146949",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Suter, Benjamin [ben.suter at gmail.com]"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T15:30:59.217",
+ "ver_number": 12
+ },
+ "146950": {
+ "class_id": 19,
+ "created": "2012-12-04T14:06:59",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146950,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151339,
+ "object_name": "McDougal RA, Hines ML, Lytton WW (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 146899,
+ "object_name": "Cython"
+ }
+ ]
+ },
+ "name": "Constructed Tessellated Neuronal Geometries (CTNG) (McDougal et al. 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We present an algorithm to form watertight 3D surfaces consistent with\r\nthe point-and-diameter based neuronal morphology descriptions widely\r\nused with spatial electrophysiology simulators.\r\n\r\n...\r\n\r\nThis (point-and-diameter)\r\nrepresentation is well-suited for electrophysiology simulations, where\r\nthe space constants are larger than geometric ambiguities. However,\r\nthe simple interpretations used for pure electrophysiological\r\nsimulation produce geometries unsuitable for multi-scale models that\r\nalso involve three-dimensional reaction\u2013diffusion, as such models have\r\nsmaller space constants.\r\n\r\n...\r\n\r\nAlthough one cannot exactly reproduce an\r\noriginal neuron's full shape from point-and-diameter data, our new\r\nconstructive tessellated neuronal geometry (CTNG) algorithm uses\r\nconstructive solid geometry to define a plausible reconstruction\r\nwithout gaps or cul-de-sacs.\r\n\r\nCTNG then uses \u201cconstructive cubes\u201d to\r\nproduce a watertight triangular mesh of the neuron surface, suitable\r\nfor use in reaction\u2013diffusion simulations.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146950",
+ "ver_date": "2016-05-31T18:05:42.367",
+ "ver_number": 17
+ },
+ "146953": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22423003"
+ },
+ "class_id": 19,
+ "created": "2012-12-12T05:23:20",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 146953,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 113658,
+ "object_name": "Perceptual Categories"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ },
+ {
+ "object_id": 129070,
+ "object_name": "Envelope synthesis"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 168963,
+ "object_name": "Motion Detection"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146957,
+ "object_name": "Leon PS, Vanzetta I, Masson GS, Perrinet LU (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Motion Clouds: Synthesis of random textures for motion perception (Leon et al. 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We describe a framework to generate random texture movies with controlled information content. In particular, these stimuli can be made closer to naturalistic textures compared to usual stimuli such as gratings and random-dot kinetograms. We simplified the definition to parametrically define these \"Motion Clouds\" around the most prevalent feature axis (mean and bandwith): direction, spatial frequency, orientation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/146953",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "laurent.perrinet@univ-amu.fr"
+ },
+ "ver_date": "2015-01-04T10:50:51",
+ "ver_number": 10
+ },
+ "147103": {
+ "class_id": 19,
+ "created": "2012-12-17T14:57:36",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147103,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136801,
+ "object_name": "Eliasmith, Chris [celiasmith at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147066,
+ "object_name": "Eliasmith C, Stewart TC, Choo X, Bekolay T, DeWolf T, Tang Y, Tang C, Rasmussen D (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 136173,
+ "object_name": "Nengo"
+ }
+ ]
+ },
+ "name": "A large-scale model of the functioning brain (spaun) (Eliasmith et al. 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this work, we present a\r\n2.5-million-neuron model of the brain (called \u201cSpaun\u201d) that bridges this gap (between neural activity and biological function) by exhibiting many different\r\nbehaviors. The model is presented only with visual image sequences, and it draws all of its responses with\r\na physically modeled arm. Although simplified, the model captures many aspects of neuroanatomy,\r\nneurophysiology, and psychological behavior, which we demonstrate via eight diverse tasks.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147103",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "vision,inference,neural c"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:16:58.527",
+ "ver_number": 5
+ },
+ "147117": {
+ "class_id": 19,
+ "created": "2013-01-08T09:20:13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 147117,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150451,
+ "object_name": "M\u00e4ki-Marttunen T, Acimovic J, Ruohonen K, Linne ML (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Structure-dynamics relationships in bursting neuronal networks revealed (M\u00e4ki-Marttunen et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This entry includes tools for generating and analyzing network structure, and for running the neuronal network simulations on them."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147117",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "M\u00e4ki-Marttunen, Tuomo [tuomo.maki-marttunen (\u00e4t) tut.fi]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tuomo.maki-marttunen@tut.fi"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2014-05-21T11:22:51",
+ "ver_number": 15
+ },
+ "147141": {
+ "class_id": 19,
+ "created": "2013-01-11T10:00:15",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147141,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 147189,
+ "object_name": "Rowan, Mark [m.s.rowan at cs.bham.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147190,
+ "object_name": "Rowan MS, Neymotin SA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Synaptic scaling balances learning in a spiking model of neocortex (Rowan & Neymotin 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Learning in the brain requires complementary mechanisms: potentiation and activity-dependent homeostatic scaling. We introduce synaptic scaling to a biologically-realistic spiking model of neocortex which can learn changes in oscillatory rhythms using STDP, and show that scaling is necessary to balance both positive and negative changes in input from potentiation and atrophy. We discuss some of the issues that arise when considering synaptic scaling in such a model, and show that scaling regulates activity whilst allowing learning to remain unaltered."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147141",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rowan, Mark [m.s.rowan at cs.bham.ac.uk]"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T13:58:35.047",
+ "ver_number": 13
+ },
+ "147172": {
+ "class_id": 19,
+ "created": "2013-01-14T14:46:38",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147172,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147143,
+ "object_name": "Beim Graben P, Rodrigues S (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Biophysical model for field potentials of networks of I&F neurons (beim Graben & Serafim 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nStarting from a reduced three-compartment model of a single pyramidal neuron, we derive an observation model for dendritic dipole currents in extracellular space and thereby for the dendritic field potential (DFP) that contributes to the local field potential (LFP) of a neural population. \r\n...\r\nOur reduced three-compartment scheme allows to derive networks of leaky integrate-and-fire (LIF) models, which facilitates comparison with existing neural network and observation models. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147172",
+ "ver_date": "2017-07-28T11:56:15.773",
+ "ver_number": 9
+ },
+ "147185": {
+ "class_id": 19,
+ "created": "2013-01-14T16:44:43",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 147185,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147140,
+ "object_name": "Mattioni M, Cohen U, Le Nov\u00e8re N (2012)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 147186,
+ "object_name": "Neuronvisio (web link to model)"
+ },
+ {
+ "object_id": 154350,
+ "object_name": "NeuroML (web link to model)"
+ }
+ ]
+ },
+ "name": "Neuronvisio: a gui with 3D capabilities for NEURON (Mattioni et al. 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The NEURON simulation environment is a commonly used tool to perform electrical simulation of neurons and neuronal networks. \r\n\r\nThe NEURON User Interface, based on the now discontinued InterViews library, provides some limited facilities to explore models and to plot their simulation results. \r\n\r\nOther limitations include the inability to generate a three-dimensional visualization, no standard mean to save the results of simulations, or to store the model geometry within the results. \r\n\r\nNeuronvisio (http://neuronvisio.org) aims to address these deficiencies through a set of well designed python APIs and provides an improved UI, allowing users to explore and interact with the model. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147185",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2014-05-14T12:10:07",
+ "ver_number": 4
+ },
+ "147218": {
+ "citation": {
+ "attr_id": 391,
+ "value": "20643060"
+ },
+ "class_id": 19,
+ "created": "2013-01-20T13:58:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 147218,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147219,
+ "object_name": "Genet, St\u00e9phane [stephane.genet@upmc.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147221,
+ "object_name": "Genet S, Sabarly L, Guigon E, Berry H, Delord B (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "147218",
+ "name": "ModelView"
+ }
+ ],
+ "default": "147218"
+ },
+ "name": "Dendritic signals command firing dynamics in a Cerebellar Purkinje Cell model (Genet et al. 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model endows the dendrites of a reconstructed Purkinje cells (PC) with the mechanism of Ca-dependent plateau potentials and spikes described in Genet, S., and B. Delord. 2002. A biophysical model of nonlinear dynamics underlying plateau potentials and calcium spikes in Purkinje cell dendrites. J. Neurophysiol. 88:2430\u20132444). It is a part of a comprehensive mathematical study suggesting that active electric signals in the dendrites of PC command epochs of firing and silencing of the PC soma."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147218",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "sub-threshold fast activating IK in purkinje cells"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Genet, St\u00e9phane [stephane.genet@upmc.fr]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stephane.genet@upmc.fr"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181737,
+ "object_name": "147218"
+ }
+ ]
+ },
+ "ver_date": "2014-02-06T17:14:31",
+ "ver_number": 7
+ },
+ "147366": {
+ "class_id": 19,
+ "created": "2013-01-22T01:59:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 147366,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146031,
+ "object_name": "Kerr, Cliff [cliffk at neurosim.downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150069,
+ "object_name": "Kerr CC, Van Albada SJ, Neymotin SA, Chadderdon GL, Robinson PA, Lytton WW (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Composite spiking network/neural field model of Parkinsons (Kerr et al 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227711,
+ "object_name": "Neocortex M1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 227970,
+ "object_name": "Neocortex M1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code implements a composite model of Parkinson's disease (PD). The\r\ncomposite model consists of a leaky integrate-and-fire spiking neuronal\r\nnetwork model being driven by output from a neural field model (instead\r\nof the more usual white noise drive). Three different sets of parameters\r\nwere used for the field model: one with basal ganglia parameters based\r\non data from healthy individuals, one based on data from individuals\r\nwith PD, and one purely thalamocortical model. The aim of this model is\r\nto explore how the different dynamical patterns in each each of these\r\nfield models affects the activity in the network model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147366",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cliffk@neurosim.downstate.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-03T22:27:58.417",
+ "ver_number": 15
+ },
+ "147367": {
+ "class_id": 19,
+ "created": "2013-01-22T06:43:04",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 147367,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149863,
+ "object_name": "Hituri, Katri [katri.hituri at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 150554,
+ "object_name": "Calcium waves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 149753,
+ "object_name": "Hituri K, Linne ML (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 144556,
+ "object_name": "STEPS"
+ }
+ ]
+ },
+ "name": "IP3R model comparison (Hituri and Linne 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "In this study, four models of IP3R (Othmer and Tang, 1993; Dawson et al., 2003; Fraiman and Dawson, 2004; Doi et al., 2005) were selected among many to examine their behavior and compare them with experimental data available in literature.\r\n\r\nThe provided MATLAB script (run_IP3R_P0.m) will run the simulations and plot Figure 2A in \r\nthe paper.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147367",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hituri, Katri [katri.hituri at gmail.com]"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "IP3R"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T13:58:17.273",
+ "ver_number": 21
+ },
+ "147460": {
+ "class_id": 19,
+ "created": "2013-01-26T17:17:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147460,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147462,
+ "object_name": "Overstreet, Cynthia [cynthiakoverstreet at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 147753,
+ "object_name": "Intracortical Microstimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147750,
+ "object_name": "Overstreet CK, Klein JD, Helms Tillery SI (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Direct recruitment of S1 pyramidal cells and interneurons via ICMS (Overstreet et al., 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 93384,
+ "object_name": "Neocortex bitufted interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Study of the pyramidal cells and interneurons recruited by intracortical microstimulation in primary somatosensory cortex. Code includes morphological models for seven types of pyramidal cells and eight types of interneurons, NEURON code to simulate ICMS, and an artificial reconstruction of a 3D slab of cortex implemented in MATLAB."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147460",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Intracortical Microstim."
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Overstreet, Cynthia\r\n"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cynthiakoverstreet@gmail.com"
+ },
+ "ver_date": "2017-07-03T22:37:04.197",
+ "ver_number": 14
+ },
+ "147461": {
+ "class_id": 19,
+ "created": "2013-01-28T10:18:41",
+ "gitrepo": false,
+ "id": 147461,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148590,
+ "object_name": "Conde-Sousa E, Aguiar P (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Storing serial order in intrinsic excitability: a working memory model (Conde-Sousa & Aguiar 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" \u2026 Here we present a model for working\r\nmemory which relies on the modulation of the intrinsic excitability properties of neurons, instead of synaptic plasticity, to retain novel information for periods of seconds to minutes. \r\n\r\nWe show that it is possible to effectively use this mechanism to store the serial order in a sequence of patterns of activity.\r\n\u2026\r\nThe presented model exhibits properties which\r\nare in close agreement with experimental results in working\r\nmemory. ...\r\n\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147461",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pauloaguiar@fc.up.pt"
+ },
+ "ver_date": "2013-04-02T11:21:47",
+ "ver_number": 15
+ },
+ "147487": {
+ "class_id": 19,
+ "created": "2013-01-30T11:27:45",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 147487,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149697,
+ "object_name": "Camu\u00f1as-Mesa, Luis Alejandro [lacm1 at le.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 149421,
+ "object_name": "Camu\u00f1as-Mesa LA, Quiroga RQ (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A detailed and fast model of extracellular recordings (Camunas-Mesa & Qurioga 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We present a novel method to generate realistic simulations of extracellular recordings. The simulations were obtained by superimposing the activity of neurons placed randomly in a cube of brain tissue. Detailed models of individual neurons were used to reproduce the extracellular action potentials of close-by neurons. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147487",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Camu\u00f1as-Mesa, Luis Alejandro [lacm1@le.ac.uk]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lacm1@leicester.ac.uk"
+ },
+ "ver_date": "2015-07-26T13:07:24.29",
+ "ver_number": 15
+ },
+ "147514": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22696545"
+ },
+ "class_id": 19,
+ "created": "2013-01-31T14:03:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 147514,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147515,
+ "object_name": "van der Velden, Luuk [l.j.j.vandervelden at uva.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144533,
+ "object_name": "van der Velden L, van Hooft JA, Chameau P (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Altered complexity in layer 2/3 pyramidal neurons (Luuk van der Velden et al. 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Our experimental results show that hypercomplexity of the apical dendritic tuft of layer 2/3 pyramidal neurons affects neuronal excitability by reducing the amount of spike frequency adaptation. \r\n\r\nThis difference in firing pattern, related to a higher dendritic complexity, was accompanied by an altered development of the afterhyperpolarization slope with successive action potentials. \r\n\r\nOur abstract and realistic neuronal models, which allowed manipulation of the dendritic complexity, showed similar effects on neuronal excitability and confirmed the impact of apical dendritic complexity.\r\n\r\nAlterations of dendritic complexity, as observed in several pathological conditions such as neurodegenerative diseases or neurodevelopmental disorders, may thus not only affect the input to layer 2/3 pyramidal neurons but also shape their firing pattern and consequently alter the information processing in the cortex.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147514",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "van der Velden, Luuk [l.j.j.vandervelden at uva.nl]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "l.j.j.vandervelden@uva.nl"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 208,
+ "object_name": "5-HT3"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181514,
+ "object_name": "147514"
+ }
+ ]
+ },
+ "ver_date": "2014-01-20T15:53:47",
+ "ver_number": 6
+ },
+ "147538": {
+ "class_id": 19,
+ "created": "2013-02-01T10:56:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147538,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147758,
+ "object_name": "Narayanan, Rishikesh [rishi at iisc.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147540,
+ "object_name": "Narayanan R, Johnston D (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "BCM-like synaptic plasticity with conductance-based models (Narayanan Johnston, 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nAlthough the BCM-like plasticity framework\r\nhas been a useful formulation to understand synaptic plasticity\r\nand metaplasticity, a mechanism for the activity-dependent regulation\r\nof this modification threshold has remained an open question. In this\r\nsimulation study based on CA1 pyramidal cells, we use a modification\r\nof the calcium-dependent hypothesis proposed elsewhere and show\r\nthat a change in the hyperpolarization-activated, nonspecific-cation h\r\ncurrent is capable of shifting the modification threshold. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147538",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Narayanan, Rishikesh"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181446,
+ "object_name": "147538_1"
+ },
+ {
+ "object_id": 181859,
+ "object_name": "147538_2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T21:55:42",
+ "ver_number": 12
+ },
+ "147539": {
+ "class_id": 19,
+ "created": "2013-02-01T14:38:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147539,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147758,
+ "object_name": "Narayanan, Rishikesh [rishi at iisc.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 111869,
+ "object_name": "Narayanan R, Johnston D (2007)"
+ },
+ {
+ "object_id": 115650,
+ "object_name": "Narayanan R, Johnston D (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "147539_1",
+ "name": "Membrane voltage sensitivity"
+ },
+ {
+ "id": "147539_2",
+ "name": "Rm sensitivity"
+ },
+ {
+ "id": "147539_3",
+ "name": "Cm sensitivity"
+ },
+ {
+ "id": "147539_4",
+ "name": "h conductance sensitivity"
+ },
+ {
+ "id": "147539_5",
+ "name": "h activation vhalf sensitivity"
+ },
+ {
+ "id": "147539_6",
+ "name": "h activation time constant sensitivity"
+ }
+ ],
+ "default": "147539_1"
+ },
+ "name": "Resonance properties through Chirp stimulus responses (Narayanan Johnston 2007, 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "...we constructed a simple, single-compartment\r\nmodel with Ih as the only active current... we found that both resonance frequency and resonance strength increased monotonically with the increase in the h conductance, supporting the notion of a direct, graded relationship between h conductance and resonance properties... (Narayanan and Johnston, 2007). ...we show that the h channels introduce an apparent negative delay in the local voltage response of these neurons with respect to the injected current within the theta frequency range... we found that the total inductive phase increased monotonically with the h conductance, whereas it had a bell-shaped dependence on both the membrane voltage and the half-maximal activation voltage for the h conductance. (Narayanan and Johnston, 2008)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147539",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Membrane Resonance"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rishikesh Narayanan"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2015-11-23T10:46:41.13",
+ "ver_number": 20
+ },
+ "147578": {
+ "class_id": 19,
+ "created": "2013-02-02T07:27:33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147578,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147758,
+ "object_name": "Narayanan, Rishikesh [rishi at iisc.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 111869,
+ "object_name": "Narayanan R, Johnston D (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "147578_1",
+ "name": "Compute Input Resistances Along Trunk"
+ },
+ {
+ "id": "147578_2",
+ "name": "Save Local Chirp Responses for Locations Along Trunk"
+ }
+ ],
+ "default": "147578_1"
+ },
+ "name": "Chirp stimulus responses in a morphologically realistic model (Narayanan and Johnston, 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "...we built a multicompartmental model with a morphologically realistic three-dimensional reconstruction of a CA1 pyramidal neuron. The only active conductance we added to the model was the h conductance. ... We conclude that experimentally observed gradient in density of h channels could theoretically account for experimentally observed gradient in resonance properties (Narayanan and Johnston, 2007)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147578",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Membrane resonance"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rishikesh Narayanan"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2016-03-31T10:18:45.223",
+ "ver_number": 11
+ },
+ "147740": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Victor P. Andreev. Cytoplasmic electric fields and electroosmosis: possible solution for the paradoxes of the intracellular transport of biomolecules. PLoS One, submitted."
+ },
+ "class_id": 19,
+ "created": "2013-02-07T16:02:31",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 147740,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147742,
+ "object_name": "Andreev, Victor [vandreev at med.miami.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147743,
+ "object_name": "Andreev VP (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 147741,
+ "object_name": "COMSOL (web link to model)"
+ }
+ ]
+ },
+ "name": "Cytoplasmic electric fields and electroosmosis (Andreev 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper presents two mathematical models describing the role of electroosmosis in the transport of the negatively charged messenger proteins to the negatively charged nucleus and in the recovery of the fluorescence after photobleaching. The parameters of the models were derived from the extensive review of the literature data. Computer simulations were performed within the COMSOL 4.2a software environment. The first model demonstrated that the presence of electroosmosis might intensify the flux of messenger proteins to the nucleus and allow the efficient transport of the negatively charged phosphorylated messenger proteins against the electrostatic repulsion of the negatively charged nucleus. The second model revealed that the presence of the electroosmotic flow made the time of fluorescence recovery dependent on the position of the bleaching spot relative to cellular membrane."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147740",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Andreev, Victor [vandreev@med.miami.edu]"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "any polarized cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "VAndreev@med.miami.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2013-04-24T17:09:56",
+ "ver_number": 6
+ },
+ "147748": {
+ "biosimulations": {
+ "value": "modeldb-147748"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 19557415"
+ },
+ "class_id": 19,
+ "created": "2013-02-08T17:57:31",
+ "gitrepo": false,
+ "id": 147748,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147755,
+ "object_name": "Rempe, Michael [mrempe at whitworth.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147252,
+ "object_name": "Rempe MJ, Best J, Terman D (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Human sleep/wake cycle (Rempe et al. 2010)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model simulates sleep in the human brain and is consistent with both the flip/flop concept and the two-process model of sleep regulation. The model also gives a possible mechanism for the changes in sleep timing seen in narcolepsy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147748",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rempe, Michael [mrempe at whitworth.edu]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mrempe@whitworth.edu"
+ },
+ "ver_date": "2013-02-11T14:28:18",
+ "ver_number": 3
+ },
+ "147756": {
+ "class_id": 19,
+ "created": "2013-02-11T08:56:16",
+ "gitrepo": false,
+ "id": 147756,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147758,
+ "object_name": "Narayanan, Rishikesh [rishi at iisc.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 74230,
+ "object_name": "Narayanan R, Narayan A, Chattarji S (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Region-specific atrophy in dendrites (Narayanan, Narayan, Chattarji, 2005)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "...in this study, we develop an algorithm that uses statistics from precise morphometric analyses to systematically remodel neuronal reconstructions. We use the distribution function of the ratio of two normal distributed random variables to specify the probabilities of remodeling along various regions of the dendritic arborization. We then use these probabilities to drive an iterative algorithm for manipulating the dendritic tree in a region-specific manner. As a test, we apply this framework to a well characterized example of dendritic remodeling: stress-induced dendritic atrophy in hippocampal CA3 pyramidal cells. We show that our pruning algorithm is capable of eliciting atrophy that matches biological data from rodent models of chronic stress.\r\n "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147756",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rishikesh Narayanan"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2013-02-11T11:50:24",
+ "ver_number": 8
+ },
+ "147757": {
+ "class_id": 19,
+ "created": "2013-02-11T11:48:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 147757,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143720,
+ "object_name": "Bianchi, Daniela [danielabianchi12 -at- gmail.com]"
+ },
+ {
+ "object_id": 147866,
+ "object_name": "Romani, Armando [romani.armando -at- gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147865,
+ "object_name": "Romani A, Marchetti C, Bianchi D, Leinekugel X, Poirazi P, Migliore M, Marie H (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Amyloid-beta effects on release probability and integration at CA3-CA1 synapses (Romani et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The role of amyloid beta (A\u00df) in brain function and in the pathogenesis of Alzheimer\u2019s disease remains elusive.\r\nRecent publications reported that an increase in A\u00df concentration perturbs presynaptic release in hippocampal neurons, in particular by increasing release probability of CA3-CA1 synapses. The model predics how this alteration can affect synaptic plasticity and signal integration. The results suggest that the perturbation of release probability induced by increased A\u00df can significantly alter the spike probability of CA1 pyramidal neurons and thus contribute to abnormal hippocampal function during Alzheimer\u2019s disease."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147757",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "romani.armando@gmail.com"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "romani.armando@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2013-02-12T10:01:29",
+ "ver_number": 17
+ },
+ "147867": {
+ "class_id": 19,
+ "created": "2013-02-12T09:35:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147867,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147758,
+ "object_name": "Narayanan, Rishikesh [rishi at iisc.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147896,
+ "object_name": "Narayanan R, Chattarji S (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "147867_1",
+ "name": "0% Atrophy"
+ },
+ {
+ "id": "147867_2",
+ "name": "25% Atrophy"
+ },
+ {
+ "id": "147867_3",
+ "name": "35% Atrophy"
+ },
+ {
+ "id": "147867_4",
+ "name": "75% Atrophy"
+ }
+ ],
+ "default": "147867_1"
+ },
+ "name": "Impact of dendritic atrophy on intrinsic and synaptic excitability (Narayanan & Chattarji, 2010)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These simulations examined the atrophy induced changes in electrophysiological properties of CA3 pyramidal neurons. We found these neurons change from bursting to regular spiking as atrophy increases. Region-specific atrophy induced region-specific increases in synaptic excitability in a passive dendritic tree. All dendritic compartments of an atrophied \r\nneuron had greater synaptic excitability and a larger voltage transfer to the soma than the control neuron.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147867",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181485,
+ "object_name": "147867_2"
+ },
+ {
+ "object_id": 181486,
+ "object_name": "147867_3"
+ },
+ {
+ "object_id": 181488,
+ "object_name": "147867_1"
+ },
+ {
+ "object_id": 181489,
+ "object_name": "147867_4"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:07:21",
+ "ver_number": 10
+ },
+ "147929": {
+ "class_id": 19,
+ "created": "2013-02-13T06:07:19",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 147929,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147758,
+ "object_name": "Narayanan, Rishikesh [rishi at iisc.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147930,
+ "object_name": "Rishikesh N, Venkatesh YV (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Development of orientation-selective simple cell receptive fields (Rishikesh and Venkatesh, 2003)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Implementation of a computational model for the development of\r\nsimple-cell receptive fields spanning the regimes before and after eye-opening. The before eye-opening period is governed by a correlation-based rule from Miller (Miller, J. Neurosci., 1994), and the post eye-opening period is governed by a self-organizing, experience-dependent dynamics derived in the reference below."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147929",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "orientation selectivity"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:17:43.893",
+ "ver_number": 14
+ },
+ "147938": {
+ "class_id": 19,
+ "created": "2013-02-15T17:12:34",
+ "gitrepo": false,
+ "id": 147938,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147937,
+ "object_name": "Palyanov A, Khayrulin S, Larson SD, Dibert A (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Towards a virtual C. elegans (Palyanov et al. 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we present a detailed demonstration of a virtual C. elegans\r\naimed at integrating these data in the form of a 3D dynamic model operating in a simulated physical environment. Our current\r\ndemonstration includes a realistic flexible worm body model, muscular system and a partially implemented ventral neural cord.\r\nOur virtual C. elegans demonstrates successful forward and backward locomotion when sending sinusoidal patterns of neuronal\r\nactivity to groups of motor neurons. \r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/147938",
+ "ver_date": "2017-06-15T11:37:03.73",
+ "ver_number": 11
+ },
+ "148035": {
+ "class_id": 19,
+ "created": "2013-02-26T11:40:07",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 148035,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 148036,
+ "object_name": "Pilly, Praveen [praveen.pilly at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148037,
+ "object_name": "Pilly PK, Grossberg S (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spiking GridPlaceMap model (Pilly & Grossberg, PLoS One, 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Development of spiking grid cells and place cells in the entorhinal-hippocampal system to represent positions in large spaces"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/148035",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Pilly, Praveen [praveen.pilly@gmail.com]"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2016-07-19T17:30:54.99",
+ "ver_number": 9
+ },
+ "148094": {
+ "class_id": 19,
+ "created": "2013-03-01T15:29:16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 148094,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148095,
+ "object_name": "Miceli F, Soldovieri MV, Ambrosino P, Barrese V, Migliore M, Cilio MR, Taglialatela M (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "148094",
+ "name": "ModelView"
+ }
+ ],
+ "default": "148094"
+ },
+ "name": "CA1 pyramidal neuron: effects of R213Q and R312W Kv7.2 mutations (Miceli et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from the paper:\r\n\r\nMiceli et al, Genotype\u2013phenotype correlations in neonatal epilepsies caused by mutations in the voltage sensor of Kv7.2 potassium channel subunits, PNAS 2013 Feb 25. [Epub ahead of print]\r\n\r\nIn this paper, functional studies revealed that in homomeric or heteromeric configuration with KV7.2 and/or KV7.3 subunits, R213W and \r\nR213Q mutations markedly destabilized the open state, causing a dramatic decrease in channel voltage sensitivity.\r\nModeling these channels in CA1 hippocampal pyramidal cells revealed that both mutations increased cell firing frequency,\r\nwith the R213Q mutation prompting more dramatic functional changes compared with the R213W mutation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/148094",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Kv7.2"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2015-05-26T17:36:11.953",
+ "ver_number": 9
+ },
+ "148253": {
+ "citation": {
+ "attr_id": 391,
+ "value": "20575006"
+ },
+ "class_id": 19,
+ "created": "2013-03-08T07:24:56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 148257,
+ "object_name": "I_HCO3"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 148253,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 148255,
+ "object_name": "Jedlicka, Peter [jedlicka at em.uni-frankfurt.de]"
+ },
+ {
+ "object_id": 148256,
+ "object_name": "Mohapatra, Namrata [mohapatra at em.uni-frankfurt.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 143004,
+ "object_name": "Chloride regulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148254,
+ "object_name": "Jedlicka P, Deller T, Gutkin BS, Backus KH (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "148253",
+ "name": "ModelView"
+ }
+ ],
+ "default": "148253"
+ },
+ "name": "Effects of Chloride accumulation and diffusion on GABAergic transmission (Jedlicka et al 2011)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In the CNS, prolonged activation of GABA(A) receptors (GABA(A)Rs) has been shown to evoke biphasic postsynaptic responses, consisting of an initial hyperpolarization followed by a depolarization. \r\n\r\nA potential mechanism underlying the depolarization is an acute chloride (Cl(-)) accumulation resulting in a shift of the GABA(A) reversal potential (E(GABA)).\r\n\r\nThe amount of GABA-evoked Cl(-) accumulation and accompanying depolarization depends on presynaptic and postsynaptic properties of GABAergic transmission, as well as on cellular morphology and regulation of Cl(-) intracellular concentration ([Cl(-)](i)).\r\n\r\nTo analyze the influence of these factors on the Cl(-) and voltage behavior, we studied spatiotemporal dynamics of activity-dependent [Cl(-)](i) changes in multicompartmental models of hippocampal cells based on realistic morphological data.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/148253",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Bicarbonate"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Jedlicka, Peter Mohapatra, Namrata "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "namrata.mohapatra@Stud.uni-frankfurt.de"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T13:07:43.34",
+ "ver_number": 8
+ },
+ "148320": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Jae Kyoung Kim, Daniel B Forger, Michael Marconi, Douglas Wood, Angela Doran, Travis Wager, Cheng Chang, and Kevin M Walton (2013) \"Modeling and validating chronic pharmacological manipulation of circadian rhythms\", CPT: Pharmacometrics & Systems Pharmacology."
+ },
+ "class_id": 19,
+ "created": "2013-03-14T00:32:07",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 148320,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145885,
+ "object_name": "Kim, Jae Kyoung [kimjack0 at kaist.ac.kr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 13855,
+ "object_name": "Therapeutics"
+ },
+ {
+ "object_id": 137847,
+ "object_name": "Phase Response Curves"
+ },
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148321,
+ "object_name": "Kim JK, Forger DB, Marconi M, Wood D, Doran A, Wager T, Chang C, Walton KM (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 143722,
+ "object_name": "Mathematica"
+ }
+ ]
+ },
+ "name": "Circadian clock model in mammals (PK/PD model) (Kim & Forger 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A systems pharmacology model of the mammalian circadian clock including PF-670462 (CK1d/e inhibitor)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/148320",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jaekkim@umich.edu"
+ },
+ "ver_date": "2013-06-06T17:45:17",
+ "ver_number": 3
+ },
+ "148637": {
+ "biosimulations": {
+ "value": "modeldb-148637"
+ },
+ "class_id": 19,
+ "created": "2013-03-29T11:16:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 148637,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 148640,
+ "object_name": "Dovzhenok, Andrey [andrey.dovzhenok at uc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148639,
+ "object_name": "Dovzhenok A, Park C, Worth RM, Rubchinsky LL (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Failure of Deep Brain Stimulation in a basal ganglia neuronal network model (Dovzhenok et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"\u2026 Recently, a lot of interest has been devoted to desynchronizing delayed feedback deep brain stimulation (DBS).\r\n...\r\nThis study explores the action of delayed feedback stimulation on partially synchronized oscillatory dynamics, similar to what one observes experimentally in parkinsonian patients.\r\n\u2026\"\r\n\r\nImplemented by Andrey Dovzhenok, to whom questions should be addressed."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/148637",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dovzhenok, Andrey"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "andrey.dovzhenok@ucmail.uc.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2013-03-29T14:47:49",
+ "ver_number": 10
+ },
+ "148644": {
+ "class_id": 19,
+ "created": "2013-04-01T17:34:12",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 148644,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 119280,
+ "object_name": "Ferrante, Michele [mferr133 at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 148643,
+ "object_name": "Parekh R, Ascoli GA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "148644",
+ "name": "ModelView"
+ }
+ ],
+ "default": "148644"
+ },
+ "name": "Neuronal morphology goes digital ... (Parekh & Ascoli 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An illustration of a NEURON model and why reconstructing morphologies\r\nis useful in this regard (i.e. investigating spatial/temporal aspect\r\nof how different currents and voltage propagate in dendrites)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/148644",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181236,
+ "object_name": "148644"
+ }
+ ]
+ },
+ "ver_date": "2013-12-10T15:36:32",
+ "ver_number": 4
+ },
+ "148646": {
+ "class_id": 19,
+ "created": "2013-04-02T03:23:55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 148646,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244472,
+ "object_name": "Gasparini S,Migliore M (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: action potential backpropagation (Gasparini & Migliore 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... the investigation of AP backpropagation and its functional roles has greatly benefitted from computational models that use biophysically and morphologically accurate implementations. ...\" This model entry recreates figures 2 and 4 from the paper illustrating how conductance densities of voltage gated channels (fig 2) and the timing of synaptic input with backpropagating action potentials (fig 4) affects membrane voltage trajectories."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/148646",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2019-01-11T16:44:13.657",
+ "ver_number": 15
+ },
+ "149000": {
+ "class_id": 19,
+ "created": "2013-04-04T04:42:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 149000,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143721,
+ "object_name": "Limongiello, Alessandro [alessandro.limongiello at unina.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151038,
+ "object_name": "Marasco A, Limongiello A, Migliore M (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Using Strahler's analysis to reduce realistic models (Marasco et al, 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Building on our previous work (Marasco et al., (2012)), we present a general reduction method based on Strahler's analysis of neuron\r\nmorphologies. We show that, without any fitting or tuning procedures, it is\r\npossible to map any morphologically and biophysically accurate neuron model\r\ninto an equivalent reduced version. Using this method for Purkinje cells, we\r\ndemonstrate how run times can be reduced up to 200-fold, while accurately taking into account the effects of arbitrarily located and activated\r\nsynaptic inputs.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149000",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-05-16T16:05:22.053",
+ "ver_number": 18
+ },
+ "149100": {
+ "class_id": 19,
+ "created": "2013-04-17T05:19:42",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 149100,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140733,
+ "object_name": "Hay, Etay [etay.hay at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150228,
+ "object_name": "Hay E, Sch\u00fcrmann F, Markram H, Segev I (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "149100",
+ "name": "ModelView"
+ }
+ ],
+ "default": "149100"
+ },
+ "name": "Preserving axosomatic spiking features despite diverse dendritic morphology (Hay et al., 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The authors found that linearly scaling the ion channel conductance densities of a reference model with the conductance load in 28 3D reconstructed layer 5 thick-tufted pyramidal cells was necessary to match the experimental statistics of these cells electrical firing properties."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149100",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T13:57:56.427",
+ "ver_number": 17
+ },
+ "149162": {
+ "class_id": 19,
+ "created": "2013-04-18T16:58:11",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 149162,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149163,
+ "object_name": "Zhang, Yili [Yili.Zhang at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 149101,
+ "object_name": "Liu RY, Zhang Y, Baxter DA, Smolen P, Cleary LJ, Byrne JH (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Rescue of plasticity by a computationally predicted protocol (Liu et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52413,
+ "object_name": "Aplysia sensory neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... A computational model,\r\nwhich simulated molecular processes underlying long-term\r\nsynaptic facilitation (LTF) induction, predicted a rescue protocol of five pulses of 5-HT at non-uniform interstimulus\r\nintervals that overcame the consequences of reduced CREB-binding protein (CBP) and restored LTF. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149162",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249921,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:08:39.3",
+ "ver_number": 8
+ },
+ "149174": {
+ "citation": {
+ "attr_id": 391,
+ "value": "23566163"
+ },
+ "class_id": 19,
+ "created": "2013-04-21T02:08:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 149174,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123851,
+ "object_name": "Thomas, Evan [evan at evan-thomas.net]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 149383,
+ "object_name": "Drug binding"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 149381,
+ "object_name": "Thomas EA, Petrou S (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "State dependent drug binding to sodium channels in the dentate gyrus (Thomas & Petrou 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A Markov model of sodium channels was developed that includes drug binding to fast inactivated states. This was incorporated into a model of the dentate gyrus to investigate the effects of anti-epileptic drugs on neuron and network properties."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149174",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "drug binding"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Thomas, Evan "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "evan@evan-thomas.net"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2018-02-26T11:42:00.963",
+ "ver_number": 7
+ },
+ "149175": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Smolen P, Baxter DA, Byrne JH (2006). A model of the roles of essential kinases in the induction and expression of late long-term potentiation. Biophys. J. 90: 2760-75."
+ },
+ "class_id": 19,
+ "created": "2013-04-22T15:36:40",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 149175,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53579,
+ "object_name": "Byrne, John [john.h.byrne at uth.tmc.edu]"
+ },
+ {
+ "object_id": 149176,
+ "object_name": "Smolen, Paul [paul.d.smolen at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 151332,
+ "object_name": "CREB"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118224,
+ "object_name": "Smolen P, Baxter DA, Byrne JH (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ }
+ ]
+ },
+ "name": "Roles of essential kinases in induction of late hippocampal LTP (Smolen et al., 2006)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"\u2026 Convergence of multiple kinase activities to induce L-LTP helps to generate a threshold whereby the amount of L-LTP varies steeply with the number of brief (tetanic) electrical stimuli. The model simulates tetanic, -burst, pairing-induced, and chemical L-LTP, as well as L-LTP due to synaptic tagging. The model also simulates inhibition of L-LTP by inhibition of MAPK, CAMKII, PKA, or CAMKIV. The model predicts results of experiments to delineate mechanisms underlying L-LTP induction and expression.\r\n\u2026\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149175",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Smolen, Paul [paul.d.smolen@uth.tmc.edu]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "paul.d.smolen@uth.tmc.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2013-10-24T16:00:20",
+ "ver_number": 7
+ },
+ "149415": {
+ "class_id": 19,
+ "created": "2013-04-24T09:34:25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 149415,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150542,
+ "object_name": "Migliore M, McTavish T (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "149415",
+ "name": "ModelView"
+ }
+ ],
+ "default": "149415"
+ },
+ "name": "Olfactory Computations in Mitral-Granule cell circuits (Migliore & McTavish 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model files for the entry \"Olfactory Computations in Mitral-Granule Cell Circuits\" of the Springer Encyclopedia of Computational Neuroscience by Michele Migliore and Tom Mctavish.\r\n\r\nThe simulations illustrate two typical Mitral-Granule cell circuits in the olfactory bulb of vertebrates: distance-independent lateral inhibition and gating effects.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149415",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181760,
+ "object_name": "149415"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:11:53.223",
+ "ver_number": 11
+ },
+ "149737": {
+ "class_id": 19,
+ "created": "2013-05-02T13:48:45",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 149737,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 149699,
+ "object_name": "Wang K, Riera J, Enjieu-Kadji H, Kawashima R (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Modeling conductivity profiles in the deep neocortical pyramidal neuron (Wang K et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"With the rapid increase in the number of technologies aimed at observing\r\nelectric activity inside the brain, scientists have felt the urge to create\r\nproper links between intracellular- and extracellular-based experimental\r\napproaches. Biophysical models at both physical scales have been formalized\r\nunder assumptions that impede the creation of such links. In this\r\nwork, we address this issue by proposing amulticompartment model that\r\nallows the introduction of complex extracellular and intracellular resistivity\r\nprofiles. This model accounts for the geometrical and electrotonic\r\nproperties of any type of neuron through the combination of four devices:\r\nthe integrator, the propagator, the 3D connector, and the collector. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149737",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2013-05-02T13:57:14",
+ "ver_number": 1
+ },
+ "149739": {
+ "class_id": 19,
+ "created": "2013-05-03T16:23:41",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 149739,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149751,
+ "object_name": "Li, Guoshi [guoshi_li at med.unc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 149750,
+ "object_name": "Li G, Cleland TA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A two-layer biophysical olfactory bulb model of cholinergic neuromodulation (Li and Cleland 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a two-layer biophysical olfactory bulb (OB) network model to study cholinergic neuromodulation. Simulations show that nicotinic receptor activation sharpens mitral cell receptive field, while muscarinic receptor activation enhances network synchrony and gamma oscillations. This general model suggests that the roles of nicotinic and muscarinic receptors in OB are both distinct and complementary to one another, together regulating the effects of ascending cholinergic inputs on olfactory bulb transformations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149739",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gl275@cornell.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T18:28:00.443",
+ "ver_number": 9
+ },
+ "149910": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 23473315"
+ },
+ "class_id": 19,
+ "created": "2013-05-07T11:45:03",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 149910,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149911,
+ "object_name": "Gutierrez, GJ [gg99 at brandeis.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 149418,
+ "object_name": "Gutierrez GJ, O'Leary T, Marder E (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Competing oscillator 5-cell circuit and Parameterscape plotting (Gutierrez et al. 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Our 5-cell model consists of competing fast and slow oscillators connected to a hub neuron with electrical and inhibitory synapses. Motivated by the Stomatogastric Ganglion (STG) circuit in the crab, we explored the patterns of coordination in the network as a function of the electrical coupling and inhibitory synapse strengths with the help of a novel visualization method that we call the \"Parameterscape.\" The code submitted here will allow you to run circuit simulations and to produce a Parameterscape with the results."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149910",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I leak"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gutierrez, GJ "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Morris-Lecar"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gg99@brandeis.edu"
+ },
+ "ver_date": "2013-05-10T20:16:00",
+ "ver_number": 12
+ },
+ "149913": {
+ "citation": {
+ "attr_id": 391,
+ "value": "@ARTICLE{10.3389/fncom.2013.00064, AUTHOR={Garrido, Jesus A and Ros, Eduardo and D\u2018Angelo, Egidio}, TITLE={Spike timing regulation on the millisecond scale by distributed synaptic plasticity at the cerebellum input stage: a simulation study}, JOURNAL={Frontiers in Computational Neuroscience}, VOLUME={7}, YEAR={2013}, NUMBER={64}, URL={http://www.frontiersin.org/computational_neuroscience/10.3389/fncom.2013.00064/abstract}, DOI={10.3389/fncom.2013.00064}, ISSN={1662-5188}, ABSTRACT={ The way long-term synaptic plasticity regulates neuronal spike patterns is not completely understood. This issue is especially relevant for the cerebellum, which is endowed with several forms of long-term synaptic plasticity and has been predicted to operate as a timing and a learning machine. Here we have used a computational model to simulate the impact of multiple distributed synaptic weights in the cerebellar granular layer network. In response to mossy fiber bursts, synaptic weights at multiple connections played a crucial role to regulate spike number and positioning in granule cells. The weight at mossy fiber to granule cell synapses regulated the delay of the first spike and the weight at mossy fiber and parallel fiber to Golgi cell synapses regulated the duration of the time-window during which the first-spike could be emitted. Moreover, the weights of synapses controlling Golgi cell activation regulated the intensity of granule cell inhibition and therefore the number of spikes that could be emitted. First spike timing was regulated with millisecond precision and the number of spikes ranged from 0 to 3. Interestingly, different combinations of synaptic weights optimized either first-spike timing precision or spike number, efficiently controlling transmission and filtering properties. These results predict that distributed synaptic plasticity regulates the emission of quasi-digital spike patterns on the millisecond time scale and allows the cerebellar granular layer to flexibly control burst transmission along the mossy fiber pathway.}}"
+ },
+ "class_id": 19,
+ "created": "2013-05-09T07:16:31",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 149913,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150204,
+ "object_name": "Garrido, Jesus A [jesus.garrido at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150129,
+ "object_name": "Garrido JA, Ros E, D'Angelo E (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 150203,
+ "object_name": "EDLUT"
+ }
+ ]
+ },
+ "name": "Distributed synaptic plasticity and spike timing (Garrido et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we have used a computational model to simulate the impact of multiple distributed synaptic weights in the cerebellar granular layer network. In response to mossy fiber bursts, synaptic weights at multiple connections played a crucial role to regulate spike number and positioning in granule cells. Interestingly, different combinations of synaptic weights optimized either first-spike timing precision or spike number, efficiently controlling transmission and filtering properties. These results predict that distributed synaptic plasticity regulates the emission of quasi-digital spike patterns on the millisecond time scale and allows the cerebellar granular layer to flexibly control burst transmission along the mossy fiber pathway."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149913",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spike timing regulation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Garrido, Jesus A."
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "EDLUT"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jesus.garrido@unipv.it"
+ },
+ "ver_date": "2013-05-28T15:20:54",
+ "ver_number": 10
+ },
+ "149914": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Probabilistic Inference of Short-Term Synaptic Plasticity in Neocortical Microcircuits, Frontiers in Computational Neuroscience (under review)"
+ },
+ "class_id": 19,
+ "created": "2013-05-09T11:18:26",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 149914,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149959,
+ "object_name": "Costa, Rui Ponte [ruipontecosta at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150082,
+ "object_name": "Costa RP, Sj\u00f6str\u00f6m PJ, van Rossum MC (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Prob. Inference of Short-Term Synaptic Plasticity in Neocort. Microcircuits (Costa et al. 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... As a solution (for Short Term Plasticity (STP) inference), we introduce a Bayesian formulation, which yields the posterior distribution over the model parameters given the data. First, we show that common STP protocols yield broad distributions over some model parameters. Using our result we propose a experimental protocol to more accurately determine synaptic dynamics parameters. Next, we infer the model parameters using experimental data from three different neocortical excitatory connection types. This reveals connection-specific distributions, which we use to classify synaptic dynamics. Our approach to demarcate connection-specific synaptic dynamics is an important improvement on the state of the art and reveals novel features from existing data.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/149914",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Costa, Rui P. [rui.costa@ed.ac.uk]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rui.costa@ed.ac.uk"
+ },
+ "ver_date": "2014-08-20T16:39:03",
+ "ver_number": 32
+ },
+ "150024": {
+ "class_id": 19,
+ "created": "2013-05-10T19:58:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122327,
+ "object_name": "Kv1.2 KCNA2"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150024,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136250,
+ "object_name": "Steuber, Volker [v.steuber at herts.ac.uk]"
+ },
+ {
+ "object_id": 144524,
+ "object_name": "Luthman, Johannes [jwluthman at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 149964,
+ "object_name": "Ovsepian SV, Steuber V, Le Berre M, O'Hara L, O'Leary VB, Dolly JO (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "150024_1",
+ "name": "Fig 9A,B"
+ },
+ {
+ "id": "150024_2",
+ "name": "Fig 9C,D"
+ },
+ {
+ "id": "150024_3",
+ "name": "Fig 9E"
+ },
+ {
+ "id": "150024_4",
+ "name": "Fig 9F"
+ }
+ ],
+ "default": "150024_1"
+ },
+ "name": "KV1 channel governs cerebellar output to thalamus (Ovsepian et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The output of the cerebellum to the motor axis of the central nervous system is\r\norchestrated mainly by synaptic inputs and intrinsic pacemaker activity of deep cerebellar nuclear\r\n(DCN) projection neurons. Herein, we demonstrate that the soma of these cells is enriched with\r\nKV1 channels produced by mandatory multi-merization of KV1.1, 1.2 alpha andKV beta2 subunits. Being\r\nconstitutively active, the K+ current (IKV1) mediated by these channels stabilizes the rate and\r\nregulates the temporal precision of self-sustained firing of these neurons. \r\n...\r\nThrough the use of multi-compartmental modelling and ... the physiological significance of the described functions for processing\r\nand communication of information from the lateral DCN to thalamic relay nuclei is established."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150024",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181154,
+ "object_name": "150024_1"
+ },
+ {
+ "object_id": 181177,
+ "object_name": "150024_2"
+ },
+ {
+ "object_id": 181199,
+ "object_name": "150024_4"
+ },
+ {
+ "object_id": 181624,
+ "object_name": "150024_3"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T13:26:38.643",
+ "ver_number": 9
+ },
+ "150031": {
+ "class_id": 19,
+ "created": "2013-05-19T12:31:37",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150031,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150034,
+ "object_name": "Solanka, Lukas [l.solanka at sms.ed.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150033,
+ "object_name": "Pastoll H, Solanka L, van Rossum MC, Nolan MF (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "An attractor network model of grid cells and theta-nested gamma oscillations (Pastoll et al 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A two population spiking continuous attractor model of grid cells. This model combines the attractor dynamics with theta-nested gamma oscillatory activity. It reproduces the behavioural response of grid cells (grid fields) in medial entorhinal cortex, while at the same time allowing for nested gamma oscillations of post-synaptic currents."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150031",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Solanka, Lukas "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Fast spiking interneuron"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2020-03-23T13:11:21.183",
+ "ver_number": 20
+ },
+ "150067": {
+ "class_id": 19,
+ "created": "2013-05-27T05:37:41",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 150067,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150204,
+ "object_name": "Garrido, Jesus A [jesus.garrido at unipv.it]"
+ },
+ {
+ "object_id": 150226,
+ "object_name": "Luque, Niceto R. [nluque at ugr.es]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151130,
+ "object_name": "Garrido JA, Luque NR, D'Angelo E, Ros E (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Distributed cerebellar plasticity implements adaptable gain control (Garrido et al., 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We tested the role of plasticity distributed over multiple synaptic sites (Hansel et al., 2001; Gao et al., 2012) by generating an analog cerebellar model embedded into a control loop connected to a robotic simulator. The robot used a three-joint arm and performed repetitive fast manipulations with different masses along an 8-shape trajectory. In accordance with biological evidence, the cerebellum model was endowed with both LTD and LTP at the PF-PC, MF-DCN and PC-DCN synapses. This resulted in a network scheme whose effectiveness was extended considerably compared to one including just PF-PC synaptic plasticity. Indeed, the system including distributed plasticity reliably self-adapted to manipulate different masses and to learn the arm-object dynamics over a time course that included fast learning and consolidation, along the lines of what has been observed in behavioral tests. In particular, PF-PC plasticity operated as a time correlator between the actual input state and the system error, while MF-DCN and PC-DCN plasticity played a key role in generating the gain controller. This model suggests that distributed synaptic plasticity allows generation of the complex learning properties of the cerebellum."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150067",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Garrido, Jesus A."
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jesus.garrido@unipv.it"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-11-03T10:57:59.717",
+ "ver_number": 15
+ },
+ "150206": {
+ "class_id": 19,
+ "created": "2013-05-29T13:51:22",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 150206,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124115,
+ "object_name": "Girard, Benoit [girard at isir.upmc.fr]"
+ },
+ {
+ "object_id": 185886,
+ "object_name": "Li\u00e9nard, Jean [lienard at isir.upmc.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185885,
+ "object_name": "Li\u00e9nard J, Girard B (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Biologically Constrained Basal Ganglia model (BCBG model) (Lienard, Girard 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 182544,
+ "object_name": "Substantia nigra pars reticulata principal GABA cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ },
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We studied the physiology and function of the basal ganglia through the design of mean-field models of the whole basal ganglia. The parameterizations are optimized with multi-objective evolutionary algorithm to respect best a collection of numerous anatomical data and electrophysiological data. The main outcomes of our study are: \u2022 The strength of the GPe to GPi/SNr connection does not support opposed activities in the GPe and GPi/SNr. \u2022 STN and MSN target more the GPe than the GPi/SNr. \u2022 Selection arises from the structure of the basal ganglia, without properly segregated direct and indirect pathways and without specific inputs from pyramidal tract neurons of the cortex. Selection is enhanced when the projection from GPe to GPi/SNr has a diffuse pattern."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150206",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Li\u00e9nard, Jean "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lienard@isir.upmc.fr"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2015-12-02T11:04:24.18",
+ "ver_number": 10
+ },
+ "150207": {
+ "class_id": 19,
+ "created": "2013-05-30T05:51:56",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 150207,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150208,
+ "object_name": "Montes, Jesus [jmontes at cesvima.upm.es]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151730,
+ "object_name": "Montes J, Gomez E, Merch\u00e1n-P\u00e9rez A, Defelipe J, Pe\u00f1a JM (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ },
+ {
+ "object_id": 150209,
+ "object_name": "R"
+ }
+ ]
+ },
+ "name": "A Method for Prediction of Receptor Activation in the Simulation of Synapses (Montes et al. 2013)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A machine-learning based method that can accurately predict relevant aspects of the behavior of synapses, such as the activation of synaptic receptors, at very low computational cost. The method is designed to learn patterns and general principles from previous Monte Carlo simulations and to predict synapse behavior from them. The resulting procedure is accurate, automatic and can predict synapse behavior under experimental conditions that are different to the ones used during the learning phase. Since our method efficiently reduces the computational costs, it is suitable for the simulation of the vast number of synapses that occur in the mammalian brain."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150207",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Montes, Jesus "
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "R"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jmontes@cesvima.upm.es"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2013-12-19T23:29:32",
+ "ver_number": 12
+ },
+ "150211": {
+ "class_id": 19,
+ "created": "2013-05-30T18:34:20",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150211,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97968,
+ "object_name": "Giugliano, Michele [mgiugliano at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169257,
+ "object_name": "Vasilaki E, Giugliano M (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Emergence of Connectivity Motifs in Networks of Model Neurons (Vasilaki, Giugliano 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Recent evidence suggests that short-term dynamics of excitatory synaptic transmission is correlated to stereotypical connectivity motifs. \r\nWe show that these connectivity motifs emerge in networks of model neurons, from the interactions between short-term synaptic dynamics (SD) and long-term spike-timing dependent plasticity (STDP)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150211",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Vasilaki, Eleni"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ },
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:13:07.497",
+ "ver_number": 9
+ },
+ "150217": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 23708878"
+ },
+ "class_id": 19,
+ "created": "2013-06-05T09:16:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 150217,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150218,
+ "object_name": "Zeldenrust, Fleur [fleurzeldenrust at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 150219,
+ "object_name": "Reliability"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150221,
+ "object_name": "Zeldenrust F, Chameau PJ, Wadman WJ (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Reliability of Morris-Lecar neurons with added T, h, and AHP currents (Zeldenrust et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We investigated the reliability of the timing of spikes in a spike train in a Morris-Lecar model with several extensions. A frozen Gaussian noise current, superimposed on a DC current, was injected. The neuron responded with spike trains that showed trial-to-trial variability. The reliability depends on the shape (steepness) of the current input versus spike frequency output curve. The model also allowed to study the contribution of three relevant ionic membrane currents to reliability: a T-type calcium current, a cation selective h-current and a calcium dependent potassium current in order to allow bursting, investigate the consequences of a more complex current-frequency relation and produce realistic firing rates."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150217",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Reliability"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zeldenrust, Fleur "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Morris-Lecar neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fleurzeldenrust@gmail.com"
+ },
+ "ver_date": "2013-06-05T10:58:58",
+ "ver_number": 7
+ },
+ "150225": {
+ "class_id": 19,
+ "created": "2013-06-11T11:31:07",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 150225,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150204,
+ "object_name": "Garrido, Jesus A [jesus.garrido at unipv.it]"
+ },
+ {
+ "object_id": 150226,
+ "object_name": "Luque, Niceto R. [nluque at ugr.es]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180998,
+ "object_name": "Luque NR, Garrido JA, Carrillo RR, D'Angelo E, Ros E (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Fast convergence of cerebellar learning (Luque et al. 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The cerebellum is known to play a critical role in learning relevant patterns of activity for adaptive motor control, but the underlying network mechanisms are only partly understood. The classical long-term synaptic plasticity between parallel fibers (PFs) and Purkinje cells (PCs), which is driven by the inferior olive (IO), can only account for limited aspects of learning. Recently, the role of additional forms of plasticity in the granular layer, molecular layer and deep cerebellar nuclei (DCN) has been considered. In particular, learning at DCN synapses allows for generalization, but convergence to a stable state requires hundreds of repetitions. In this paper we have explored the putative role of the IO-DCN connection by endowing it with adaptable weights and exploring its implications in a closed-loop robotic manipulation task. Our results show that IO-DCN plasticity accelerates convergence of learning by up to two orders of magnitude without conflicting with the generalization properties conferred by DCN plasticity. Thus, this model suggests that multiple distributed learning mechanisms provide a key for explaining the complex properties of procedural learning and open up new experimental questions for synaptic plasticity in the cerebellar network."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150225",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Luque Niceto R. & Garrido Jesus A."
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "CEREBELLAR MODEL"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nluque@ugr.es"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2015-07-08T17:22:18.323",
+ "ver_number": 8
+ },
+ "150239": {
+ "class_id": 19,
+ "created": "2013-06-17T14:20:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 254,
+ "object_name": "I CNG"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150239,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 95963,
+ "object_name": "Schmidt-Hieber, Christoph [c.schmidt-hieber at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150291,
+ "object_name": "Schmidt-Hieber C, H\u00e4usser M (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "150239",
+ "name": "ModelView"
+ }
+ ],
+ "default": "150239"
+ },
+ "name": "MEC layer II stellate cell: Synaptic mechanisms of grid cells (Schmidt-Hieber & Hausser 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This study investigates the cellular mechanisms of grid field generation in Medial Entorhinal Cortex (MEC) layer II stellate cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150239",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Schmidt-Hieber, Christoph [c.schmidt-hieber@ucl.ac.uk]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Medial entorhinal cortex layer II stellate cell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2016-07-19T17:29:13.16",
+ "ver_number": 13
+ },
+ "150240": {
+ "class_id": 19,
+ "created": "2013-06-19T20:30:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150240,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151758,
+ "object_name": "Behuret, Sebastien [behuret at unic.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 242018,
+ "object_name": "Synaptic Convergence"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151754,
+ "object_name": "Behuret S, Deleuze C, Gomez L, Fregnac Y, Bal T (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A Model Circuit of Thalamocortical Convergence (Behuret et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ },
+ {
+ "object_id": 140252,
+ "object_name": "Thalamus lateral geniculate nucleus interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\u201c\u2026\r\nUsing dynamic-clamp techniques in thalamic slices in vitro, we combined theoretical and experimental\r\napproaches to implement a realistic hybrid retino-thalamo-cortical pathway mixing biological cells and simulated circuits.\r\n\u2026\r\nThe study of\r\nthe impact of the simulated cortical input on the global retinocortical signal transfer efficiency revealed a novel control\r\nmechanism resulting from the collective resonance of all thalamic relay neurons. \r\nWe show here that the transfer efficiency\r\nof sensory input transmission depends on three key features: i) the number of thalamocortical cells involved in the many-to-one\r\nconvergence from thalamus to cortex, ii) the statistics of the corticothalamic synaptic bombardment and iii) the level of\r\ncorrelation imposed between converging thalamic relay cells. \r\nIn particular, our results demonstrate counterintuitively that\r\nthe retinocortical signal transfer efficiency increases when the level of correlation across thalamic cells decreases. \r\n\u2026\u201d\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150240",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sbehuret@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181686,
+ "object_name": "150240"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T10:52:44.733",
+ "ver_number": 21
+ },
+ "150245": {
+ "class_id": 19,
+ "created": "2013-06-28T09:08:12",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150245,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 144539,
+ "object_name": "Chadderdon, George [gchadder3 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150246,
+ "object_name": "Neymotin SA, Chadderdon GL, Kerr CC, Francis JT, Lytton WW (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "150245_2",
+ "name": "naive network"
+ }
+ ],
+ "default": "150245_2"
+ },
+ "name": "Sensorimotor cortex reinforcement learning of 2-joint virtual arm reaching (Neymotin et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nWe developed a model of sensory and motor neocortex consisting\r\nof 704 spiking model-neurons. Sensory and motor populations included excitatory cells\r\nand two types of interneurons. Neurons were interconnected with AMPA/NMDA, and\r\nGABAA synapses. We trained our model using spike-timing-dependent reinforcement\r\nlearning to control a 2-joint virtual arm to reach to a fixed target. \r\n...\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150245",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Motor control"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T15:58:02.81",
+ "ver_number": 10
+ },
+ "150284": {
+ "class_id": 19,
+ "created": "2013-07-15T15:48:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 112844,
+ "object_name": "I Q"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 112842,
+ "object_name": "Kv4.2 KCND2"
+ },
+ {
+ "object_id": 122327,
+ "object_name": "Kv1.2 KCNA2"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150284,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150285,
+ "object_name": "Mattioni, Michele [mattioni at ebi.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150283,
+ "object_name": "Mattioni M, Le Nov\u00e8re N (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Multiscale simulation of the striatal medium spiny neuron (Mattioni & Le Novere 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"\u2026 We present a new event-driven algorithm to synchronize different neuronal\r\nmodels, which decreases computational time and avoids superfluous synchronizations.\r\n\r\nThe algorithm is implemented in the TimeScales framework. \r\n\r\nWe demonstrate its use by simulating a new multiscale model of the Medium Spiny Neuron of the Neostriatum.\r\n\r\nThe model comprises over a thousand dendritic spines, where the electrical model interacts with the\r\nrespective instances of a biochemical model.\r\n\r\nOur results show that a multiscale model is able to exhibit changes of synaptic\r\nplasticity as a result of the interaction between electrical and biochemical signaling.\r\n\u2026\""
+ },
+ "opensourcebrain": {
+ "value": "multiscale-medium-spiny-neuron-mattioni-and-le-novere"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150284",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2017-02-23T11:05:10.547",
+ "ver_number": 4
+ },
+ "150288": {
+ "class_id": 19,
+ "created": "2013-07-19T19:09:32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150288,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150289,
+ "object_name": "Kim, Dongbeom [dk258 at mail.missouri.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150290,
+ "object_name": "Kim D, Par\u00e9 D, Nair SS (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A 1000 cell network model for Lateral Amygdala (Kim et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "1000 Cell Lateral Amygdala model for investigation of plasticity and memory storage during Pavlovian Conditioning."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150288",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kim, Dongbeom"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Pyramidal Cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dk258@mail.missouri.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 142628,
+ "object_name": "Amygdala"
+ }
+ ]
+ },
+ "ver_date": "2017-01-13T12:18:17.073",
+ "ver_number": 8
+ },
+ "150437": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Masquelier T and Deco G (2013) Network bursting dynamics in excitatory cortical neuron cultures results from the combination of different adaptive mechanisms. PLoS ONE"
+ },
+ "class_id": 19,
+ "created": "2013-07-26T05:17:38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150437,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123929,
+ "object_name": "Masquelier, Tim [timothee.masquelier at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150438,
+ "object_name": "Masquelier T, Deco G (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Network bursts in cultured NN result from different adaptive mechanisms (Masquelier & Deco 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 274,
+ "object_name": "Cochlear nucleus pyramidal/fusiform GLU cell"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "It is now well established that cultured neuron networks are spontaneously active, and tend to synchronize. Synchronous events typically involve the whole network, and have thus been termed \u201cnetwork spikes\u201d (NS). Using experimental recordings and numerical simulations, we show here that the inter-NS interval statistics are complex, and allow inferring the neural mechanisms at work, in particular the adaptive ones, and estimating a number of parameters to which we cannot access experimentally."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150437",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timothee.masquelier@alum.mit.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T13:55:03.987",
+ "ver_number": 7
+ },
+ "150440": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Tan AY, Andoni S, Priebe NJ. A spontaneous state of weakly correlated synaptic excitation and inhibition in visual cortex. Neuroscience. 2013 Sep 5;247:364-75. doi: 10.1016/j.neuroscience.2013.05.037."
+ },
+ "class_id": 19,
+ "created": "2013-07-26T15:45:20",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150440,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150441,
+ "object_name": "Tan, Andrew [atyy at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150443,
+ "object_name": "Tan AY, Andoni S, Priebe NJ (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Spontaneous weakly correlated excitation and inhibition (Tan et al. 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Brian code for Tan et al. 2013."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150440",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Andrew Tan"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "atyy@alum.mit.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:18:15.963",
+ "ver_number": 45
+ },
+ "150445": {
+ "class_id": 19,
+ "created": "2013-07-26T19:36:59",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 150445,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 186894,
+ "object_name": "Tikidji-Hamburyan, Ruben [ruben.tikidji.hamburyan at gmail.com] "
+ },
+ {
+ "object_id": 195104,
+ "object_name": "Vasilkov, Viacheslav [vasilkov.va at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195102,
+ "object_name": "Vasilkov VA, Tikidji-Hamburyan RA (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Interaural time difference detection by slowly integrating neurons (Vasilkov Tikidji-Hamburyan 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "For localization of a sound source, animals and humans process the microsecond interaural time differences of arriving sound waves. How nervous systems, consisting of elements with time constants of about and more than 1 ms, can reach such high precision is still an open question. This model shows that population of 10000 slowly integrating Hodgkin-Huxley neurons with inhibitory and excitatory inputs (EI neurons) can detect minute temporal disparities in input signals which are significantly less than any time constant in the system."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150445",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "ITD detection"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tikidji-Hamburyan, Ruben \r\nand Vasilkov, Viacheslav "
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:04:24.22",
+ "ver_number": 7
+ },
+ "150446": {
+ "citation": {
+ "attr_id": 391,
+ "value": "N. Vladimirov, Y. Tu, R.D. Traub. Synaptic gating at axonal branches, and sharp-wave ripples with replay: a simulation study. EJN, in press"
+ },
+ "class_id": 19,
+ "created": "2013-07-27T17:46:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150446,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144402,
+ "object_name": "Vladimirov, Nikita "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150447,
+ "object_name": "Vladimirov N, Tu Y, Traub RD (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "150446_1",
+ "name": "16PC 1IN"
+ },
+ {
+ "id": "150446_2",
+ "name": "1PC 1IN"
+ },
+ {
+ "id": "150446_3",
+ "name": "1PC 1IN myelinated Ax"
+ },
+ {
+ "id": "150446_4",
+ "name": "1PC 1IN silent2firing"
+ },
+ {
+ "id": "150446_5",
+ "name": "81PC 9IN forward"
+ }
+ ],
+ "default": "150446_1"
+ },
+ "name": "Synaptic gating at axonal branches, and sharp-wave ripples with replay (Vladimirov et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The computational model of in vivo sharp-wave ripples with place cell replay. Excitatory post-synaptic potentials at dendrites gate antidromic spikes arriving from the axonal collateral, and thus determine when the soma and the main axon fire. The model allows synchronous replay of pyramidal cells during sharp-wave ripple event, and the replay is possible in both forward and reverse directions."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150446",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nikita.vladimirov@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181761,
+ "object_name": "150446_5"
+ },
+ {
+ "object_id": 181762,
+ "object_name": "150446_4"
+ },
+ {
+ "object_id": 181763,
+ "object_name": "150446_1"
+ },
+ {
+ "object_id": 181764,
+ "object_name": "150446_3"
+ },
+ {
+ "object_id": 181765,
+ "object_name": "150446_2"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:30:08",
+ "ver_number": 9
+ },
+ "150538": {
+ "class_id": 19,
+ "created": "2013-08-01T23:32:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150538,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145837,
+ "object_name": "Moradi, Keivan [k.moradi at gmail.com]"
+ },
+ {
+ "object_id": 150539,
+ "object_name": "Robinson, H.P.C. [hpcr at cam.ac.uk]"
+ },
+ {
+ "object_id": 150540,
+ "object_name": "Small, Michael "
+ },
+ {
+ "object_id": 150541,
+ "object_name": "Li, Xiumin "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150214,
+ "object_name": "Li X, Morita K, Robinson HP, Small M (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "150538",
+ "name": "ModelView"
+ }
+ ],
+ "default": "150538"
+ },
+ "name": "L5 pyr. cell spiking control by oscillatory inhibition in distal apical dendrites (Li et al 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model examined how distal oscillatory inhibition influences the firing of a biophysically-detailed layer 5 pyramidal neuron model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150538",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Na, leak"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "X. Li, K. Morita, M. Small, HPC. Robinson [hpcr@cam.ac.uk]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Layer 5 pyramidal neuron"
+ },
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "Gaba"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "NMDA, GabaA, GabaB"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "MATLAB"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "free_xmin@hotmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-10-10T17:38:31.067",
+ "ver_number": 18
+ },
+ "150551": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Ashhad and Narayanan, J Physiol. 591(Pt 7):1645-69. PMID: 23283761"
+ },
+ "class_id": 19,
+ "created": "2013-08-06T01:07:43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150551,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147758,
+ "object_name": "Narayanan, Rishikesh [rishi at iisc.ac.in]"
+ },
+ {
+ "object_id": 150555,
+ "object_name": "Ashhad, Sufyan [soofy at mbu.iisc.ernet.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 150554,
+ "object_name": "Calcium waves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150553,
+ "object_name": "Ashhad S, Narayanan R (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "150551_1",
+ "name": "Figure 4F-G"
+ },
+ {
+ "id": "150551_2",
+ "name": "Figure 6C-F"
+ }
+ ],
+ "default": "150551_1"
+ },
+ "name": "Calcium waves and mGluR-dependent synaptic plasticity in CA1 pyr. neurons (Ashhad & Narayanan 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A morphologically realistic, conductance-based model equipped with kinetic schemes that govern several calcium signalling modules and pathways in CA1 pyramidal neurons"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150551",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Calcium waves"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ashhad, Sufyan [soofy@mbu.iisc.ernet.in]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "soofy@mbu.iisc.ernet.in"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181376,
+ "object_name": "150551_1"
+ },
+ {
+ "object_id": 181805,
+ "object_name": "150551_2"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T18:43:48.46",
+ "ver_number": 22
+ },
+ "150556": {
+ "class_id": 19,
+ "created": "2013-08-06T11:02:36",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150556,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150557,
+ "object_name": "Biddell, Kevin [kevin.biddell at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150620,
+ "object_name": "Biddell K, Johnson J (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "150556",
+ "name": "ModelView"
+ }
+ ],
+ "default": "150556"
+ },
+ "name": "Single compartment Dorsal Lateral Medium Spiny Neuron w/ NMDA and AMPA (Biddell and Johnson 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A biophysical single compartment model of the dorsal lateral striatum medium spiny neuron is presented here. The model is an implementation then adaptation of a previously described model (Mahon et al. 2002). The model has been adapted to include NMDA and AMPA receptor models that have been fit to dorsal lateral striatal neurons. The receptor models allow for excitation by other neuron models."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150556",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I K slow, I K fast"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Biddell,Kevin [kevin.biddell@gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Dorsal Lateral Striatum Medium Spiny Neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kevin.biddell@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181175,
+ "object_name": "150556"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 610
+ },
+ "ver_date": "2022-05-27T11:01:55.563",
+ "ver_number": 13
+ },
+ "150621": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 11040268"
+ },
+ "class_id": 19,
+ "created": "2013-08-09T15:42:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150621,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150557,
+ "object_name": "Biddell, Kevin [kevin.biddell at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 121080,
+ "object_name": "Mahon S, Deniau JM, Charpier S, Delord B (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "150621_1",
+ "name": "Figure 2A"
+ },
+ {
+ "id": "150621_2",
+ "name": "Figure 3A"
+ }
+ ],
+ "default": "150621_1"
+ },
+ "name": "Striatal Output Neuron (Mahon, Deniau, Charpier, Delord 2000)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Striatal output neurons (SONs) integrate glutamatergic synaptic inputs originating from the cerebral cortex. In vivo electrophysiological data have shown that a prior depolarization of SONs induced a short-term (1 sec)increase in their membrane excitability, which facilitated the ability of corticostriatal synaptic potentials to induce firing. Here we propose, using a computational model of SONs, that the use-dependent, short-term increase in the responsiveness of SONs mainly results from the slow kinetics of a voltage-dependent, slowly inactivating potassium A-current. This mechanism confers on SONs a form of intrinsic short-term memory that optimizes the synaptic input\u00e2\u20ac\u201coutput relationship as a function of their past activation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150621",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kevin.biddell@gmail.com"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181652,
+ "object_name": "150621_2"
+ },
+ {
+ "object_id": 181655,
+ "object_name": "150621_1"
+ }
+ ]
+ },
+ "ver_date": "2015-01-02T22:34:35",
+ "ver_number": 5
+ },
+ "150622": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Briley PM & Summerfield AQ. Age-related deterioration of the representation of space in human auditory cortex. Neurobiology of Aging."
+ },
+ "class_id": 19,
+ "created": "2013-08-19T14:34:04",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150622,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146106,
+ "object_name": "Briley, Paul M [paul dot briley at york dot ac dot uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150623,
+ "object_name": "Briley PM, Summerfield AQ (2014)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Revised opponent-channel model of auditory space cortical representation (Briley & Summerfield 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is the computational opponent-channel model used by Briley et al. (2013) to model electroencephalographic (EEG) responses from the auditory cortices of young, younger-old and older-old adults to abrupt shifts in sound-source location, and to predict each groups' psychophysical measures of spatial acuity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150622",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "paul.briley@york.ac.uk"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:06:20.397",
+ "ver_number": 6
+ },
+ "150635": {
+ "class_id": 19,
+ "created": "2013-08-27T11:54:34",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122819,
+ "object_name": "Cav2.1 CACNA1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150635,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150636,
+ "object_name": "Anwar, Haroon [haroon.anwar at gmail.com]"
+ },
+ {
+ "object_id": 150637,
+ "object_name": "Hepburn, Iain [ihepburn at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150638,
+ "object_name": "Anwar H, Hepburn I, Nedelescu H, Chen W, De Schutter E (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 153713,
+ "object_name": "STEPS (web link to model)"
+ }
+ ]
+ },
+ "name": "Stochastic calcium mechanisms cause dendritic calcium spike variability (Anwar et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nIn single Purkinje cells, spontaneous and synaptically evoked\r\ndendritic calcium bursts come in a variety of shapes with a variable number of\r\nspikes. \r\n\r\nThe mechanisms causing this variability have never been investigated thoroughly.\r\n\r\nIn this study, a detailed computational model employing novel simulation routines is\r\napplied to identify the roles that stochastic ion channels, spatial arrangements of ion\r\nchannels and stochastic intracellular calcium have towards producing calcium burst\r\nvariability.\r\n\u2026\r\nOur findings suggest that stochastic intracellular calcium\r\nmechanisms play a crucial role in dendritic calcium spike generation and are, therefore, an\r\nessential consideration in studies of neuronal excitability and plasticity.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150635",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-06-27T17:13:37.067",
+ "ver_number": 9
+ },
+ "150678": {
+ "class_id": 19,
+ "created": "2013-09-03T17:02:57",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150678,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83455,
+ "object_name": "Beeman, Dave"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150679,
+ "object_name": "Beeman D (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Auditory cortex layer IV network model (Beeman 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... The primary objective of this modeling study was to determine the effects of axonal conduction velocity (often neglected, but significant), as well as synaptic time constants, on the ability of such a network to create and propagate cortical waves. ... The model is also being used to study the interaction between single and two-tone input and normal background activity, and the effects of synaptic depression from thalamic inputs. The simulation scripts have the additional purpose of serving as tutorial examples for the construction of cortical networks with GENESIS. The present model has fostered the development of the G-3 Python network analysis and visualization tools used in this study... It is my hope that this short tutorial and the example\r\nsimulation scripts can provide a head start for a graduate student or\r\npostdoc who is beginning a cortical modeling project.\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150678",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "ver_date": "2016-07-07T12:39:42.843",
+ "ver_number": 5
+ },
+ "150691": {
+ "class_id": 19,
+ "created": "2013-09-19T09:31:27",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 150691,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155458,
+ "object_name": "Casaleggio A, Hines ML, Migliore M (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Model of arrhythmias in a cardiac cells network (Casaleggio et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we explore the possible processes leading to the occasional onset and termination of the (usually) non-fatal arrhythmias widely observed in the heart.\r\n\r\nUsing a computational model of a two-dimensional network of cardiac cells, we tested the hypothesis that an ischemia alters the properties of the gap junctions inside the ischemic area.\r\n...\r\n In conclusion, our model strongly supports the hypothesis that non-fatal arrhythmias can develop from post-ischemic alteration of the electrical connectivity in a relatively small area of the cardiac cell network, and suggests experimentally testable predictions on their possible treatments.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150691",
+ "ver_date": "2022-05-27T11:03:58.187",
+ "ver_number": 13
+ },
+ "150697": {
+ "class_id": 19,
+ "created": "2013-09-21T14:37:53",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150697,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150699,
+ "object_name": "Cofer, David [dcofer at neurorobotictech.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 170088,
+ "object_name": "Chung B, Bacqu\u00e9-Cazenave J, Cofer DW, Cattaert D, Edwards DH (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150700,
+ "object_name": "AnimatLab v1"
+ }
+ ]
+ },
+ "name": "Crayfish hybrid experimental model (Chung et al. 2015)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Crayfish hybrid experimental model is an AnimatLab v1 neuromechanical model of the crayfish thorax and 5th walking leg that provides a virtual periphery to the live crayfish central nervous system. Run in real time, levator and depressor muscles are excited by motor nerve discharges of the CNS. Up and down movement of the leg shortens and stretches a model stretch receptor that controls movement of a real stretch receptor that provides sensory feedback to the CNS. Real-time sensory feedback provided by the model increases the locomotor cycle frequency by three-fold."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150697",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "David Cofer (dcofer@neurorobotictech.com)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Integrate and fire model"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "AnimatLab v1"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dedwards@gsu.edu"
+ },
+ "ver_date": "2016-03-31T17:38:02.4",
+ "ver_number": 12
+ },
+ "150698": {
+ "class_id": 19,
+ "created": "2013-09-21T15:00:47",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150698,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150699,
+ "object_name": "Cofer, David [dcofer at neurorobotictech.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 150701,
+ "object_name": "Posture and locomotion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 170039,
+ "object_name": "Bacqu\u00e9-Cazenave J, Chung B, Cofer DW, Cattaert D, Edwards DH (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150700,
+ "object_name": "AnimatLab v1"
+ }
+ ]
+ },
+ "name": "Crayfish hybrid simulation model (Bacque-Cazenave et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150702,
+ "object_name": "Crayfish motor neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A neuromechanical model of the crayfish leg and thorax and the postural and locomotor circuitry built and run in AnimatLab v1. The model simulates experiments run with the BCI preparation model in which the model was linked in real time to the in vivo crayfish thoracic nerve cord. The model shows that current understanding of the neural circuitry can account for the increase in locomotor frequency when the sensori-motor feedback loop is intact."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150698",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "posture and locomotion"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "David Cofer (dcofer@neurorobotictech.com)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "crayfish motor neuron"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "AnimatLab v1"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Neuromechanical"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dedwards@gsu.edu"
+ },
+ "ver_date": "2015-02-05T12:28:48.903",
+ "ver_number": 7
+ },
+ "150804": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 24026336"
+ },
+ "class_id": 19,
+ "created": "2013-09-23T16:44:41",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 150804,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150841,
+ "object_name": "Stefanescu, Roxana [roxanast75 at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150813,
+ "object_name": "Stefanescu RA, Shivakeshavan RG, Khargonekar PP, Talathi SS (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Computational modelling of channelrhodopsin-2 photocurrent characteristics (Stefanescu et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The codes are directly related with the results presented in the manuscript; in brief, it is a computational investigation on the effects of optogenetic actuation on excitatory and inhibitory neurons when 3- and 4- state model is used to implement the ChR2 kinetics. Different parameters of optostimulation are investigated and the results compared with experimental data previously published by other research groups."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150804",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Stefanescu Roxana[roxanast75@gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "roxanast75@gmail.com"
+ },
+ "ver_date": "2015-07-26T14:36:23.403",
+ "ver_number": 8
+ },
+ "150806": {
+ "class_id": 19,
+ "created": "2013-09-24T11:59:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150806,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150690,
+ "object_name": "Carracedo LM, Kjeldsen H, Cunnington L, Jenkins A, Schofield I, Cunningham MO, Davies CH, Traub RD, Whittington MA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Dynamic cortical interlaminar interactions (Carracedo et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 227971,
+ "object_name": "Neocortex V1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 150807,
+ "object_name": "Neocortex deep neurogliaform interneuron"
+ },
+ {
+ "object_id": 150808,
+ "object_name": "Neocortex superficial neurogliaform interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we demonstrate the mechanism underlying a purely neocortical delta rhythm generator and show a remarkable laminar, cell subtype and local subcircuit delineation between delta\r\nand nested theta rhythms. We show that spike timing during delta-nested theta rhythms controls an iterative, reciprocal interaction between deep and superficial cortical layers resembling the unsupervised learning processes proposed for laminar neural networks by Hinton and colleagues ... and mimicking the alternating cortical dynamics of sensory and memory processing during wakefulness.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150806",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2017-07-03T22:38:47.747",
+ "ver_number": 2
+ },
+ "150846": {
+ "class_id": 19,
+ "created": "2013-09-29T11:47:30",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 150846,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151950,
+ "object_name": "Aguiar, Paulo [pauloaguiar at fc.up.pt]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189779,
+ "object_name": "Castro L, Aguiar P (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Grid cells from place cells (Castro & Aguiar, 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Here we present a novel model for the emergence of gridlike firing patterns that stands on two key hypotheses: (1) spatial information in GCs is provided from PC activity and (2) grid fields result from a combined synaptic plasticity mechanism involving inhibitory and excitatory neurons mediating the connections between PCs and GCs. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150846",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Aguiar, Paulo [pauloaguiar at fc.up.pt]"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2017-06-21T20:44:48.487",
+ "ver_number": 9
+ },
+ "150912": {
+ "class_id": 19,
+ "created": "2013-10-02T14:48:49",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122820,
+ "object_name": "Cav2.2 CACNA1B"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 150912,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145924,
+ "object_name": "Evans, Rebekah [Rebekah.Evans at nih.gov]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150857,
+ "object_name": "Evans RC, Maniar YM, Blackwell KT (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Calcium influx during striatal upstates (Evans et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nTo\r\ninvestigate the mechanisms that underlie the relationship between\r\ncalcium and AP timing, we have developed a realistic biophysical\r\nmodel of a medium spiny neuron (MSN).\r\n...\r\nUsing this model, we found that either the slow inactivation of\r\ndendritic sodium channels (NaSI) or the calcium inactivation of\r\nvoltage-gated calcium channels (CDI) can cause high calcium corresponding\r\nto early APs and lower calcium corresponding to later APs.\r\n\r\nWe found that only CDI can account for the experimental observation\r\nthat sensitivity to AP timing is dependent on NMDA receptors.\r\n\r\nAdditional simulations demonstrated a mechanism by which MSNs\r\ncan dynamically modulate their sensitivity to AP timing and show that\r\nsensitivity to specifically timed pre- and postsynaptic pairings (as in\r\nspike timing-dependent plasticity protocols) is altered by the timing of\r\nthe pairing within the upstate.\r\n\u2026\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/150912",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2013-10-02T14:52:10",
+ "ver_number": 2
+ },
+ "151126": {
+ "class_id": 19,
+ "created": "2013-10-09T14:37:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151126,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143720,
+ "object_name": "Bianchi, Daniela [danielabianchi12 -at- gmail.com]"
+ },
+ {
+ "object_id": 187056,
+ "object_name": "De Michele, Pasquale [pasquale.demichele at unina.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 151331,
+ "object_name": "Storage/recall"
+ },
+ {
+ "object_id": 151332,
+ "object_name": "CREB"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169919,
+ "object_name": "Bianchi D, De Michele P, Marchetti C, Tirozzi B, Cuomo S, Marie H, Migliore M (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Effects of increasing CREB on storage and recall processes in a CA1 network (Bianchi et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Several recent results suggest that boosting the CREB pathway improves hippocampal-dependent memory in healthy rodents and restores this type of\r\nmemory in an AD mouse model. However, not much is known about how CREB-dependent neuronal alterations in synaptic strength, excitability and\r\nLTP can boost memory formation in the complex architecture of a neuronal network. Using a model of a CA1 microcircuit, we investigate whether\r\nhippocampal CA1 pyramidal neuron properties altered by increasing CREB activity may contribute to improve memory storage and recall. With a set of patterns presented to a network, we find that the pattern recall quality under AD-like conditions is significantly better when boosting CREB function with respect to control. The results are robust and consistent upon increasing the synaptic damage expected by AD progression, supporting the idea that the use of CREB-based therapies could provide a new approach\r\nto treat AD."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151126",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Storage/Recall; CREB;"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "CA1 Bistratified cell; CA1 Axo axonic cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "danielabianchi12@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T11:09:32.113",
+ "ver_number": 21
+ },
+ "151282": {
+ "class_id": 19,
+ "created": "2013-10-20T14:48:17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151282,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33748,
+ "object_name": "Lazarewicz, Maciej [mlazarew at gmu.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151286,
+ "object_name": "Neymotin SA, Hilscher MM, Moulin TC, Skolnick Y, Lazarewicz MT, Lytton WW (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Ih tunes oscillations in an In Silico CA3 model (Neymotin et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154093,
+ "object_name": "Hippocampus CA3 interneuron basket GABA cell"
+ },
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We investigated oscillatory control using a multiscale computer model of hippocampal CA3, where each cell class\r\n(pyramidal, basket, and oriens-lacunosum moleculare cells), contained type-appropriate isoforms of Ih.\r\n\r\nOur model\r\ndemonstrated that modulation of pyramidal and basket Ih allows tuning theta and gamma oscillation frequency and\r\namplitude. Pyramidal Ih also controlled cross-frequency coupling (CFC) and allowed shifting gamma generation towards\r\nparticular phases of the theta cycle, effected via Ih\u2019s ability to set pyramidal excitability. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151282",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-06T11:48:27.37",
+ "ver_number": 17
+ },
+ "151338": {
+ "class_id": 19,
+ "created": "2013-10-28T14:58:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151338,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151436,
+ "object_name": "Kozlov, Alexander [akozlov at nada.kth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152733,
+ "object_name": "Kozlov AK, Kardamakis AA, Hellgren Kotaleski J, Grillner S (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Gating of steering signals through phasic modulation of reticulospinal neurons (Kozlov et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114428,
+ "object_name": "Spinal lamprey neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We use the lamprey as a model for investigating the role of this\r\nphasic modulation of the reticulospinal activity, because the\r\nbrainstem\u2013spinal cord networks are known down to the cellular level in\r\nthis phylogenetically oldest extant vertebrate.\r\n\r\nWe describe how the phasic modulation of reticulospinal activity from\r\nthe spinal CPG ensures reliable steering/turning commands without the\r\nneed for a very precise timing of on- or offset, by using a\r\nbiophysically detailed large-scale (19,600 model neurons and 646,800\r\nsynapses) computational model of the lamprey brainstem\u2013spinal cord\r\nnetwork.\r\n\r\nTo verify that the simulated neural network can control body\r\nmovements, including turning, the spinal activity is fed to a\r\nmechanical model of lamprey swimming.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151338",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 151437,
+ "object_name": "Lamprey, Spinal cord, Brainstem"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114429,
+ "object_name": "Lamprey"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:20:07.397",
+ "ver_number": 8
+ },
+ "151404": {
+ "class_id": 19,
+ "created": "2013-10-29T02:44:38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 151404,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151406,
+ "object_name": "Behabadi, Bardia [bardiafb+mdb at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151405,
+ "object_name": "Behabadi BF, Polsky A, Jadi M, Schiller J, Mel BW (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Excitatory synaptic interactions in pyramidal neuron dendrites (Behabadi et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nWe hypothesized that if two excitatory pathways bias their synaptic projections towards proximal vs. distal ends of the basal branches, the very different local spike thresholds and attenuation factors for inputs near and far from the soma might provide the basis for a classical-contextual functional asymmetry. Supporting this possibility, we found both in compartmental models and electrophysiological recordings in brain slices that the responses of basal dendrites to spatially separated inputs are indeed strongly asymmetric.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151404",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Behabadi, Bardia [bardiafb+mdb at gmail.com]"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2016-06-21T12:15:32.53",
+ "ver_number": 13
+ },
+ "151443": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Balbi P., Martinoia S., Colombo R., Massobrio P. Modelling the spinal α-motoneuron recurrent discharge: Reappraisal of the F wave. Clin Neurophysiol, published online 25 October 2013, DOI: http://dx.doi.org/10.1016/j.clinph.2013.09.025"
+ },
+ "class_id": 19,
+ "created": "2013-11-02T12:55:07",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 151443,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151444,
+ "object_name": "Balbi, Pietro [piero.balbi at fsm.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 151445,
+ "object_name": "Recurrent Discharge"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151446,
+ "object_name": "Balbi P, Martinoia S, Colombo R, Massobrio P (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "151443",
+ "name": "ModelView"
+ }
+ ],
+ "default": "151443"
+ },
+ "name": "Recurrent discharge in a reduced model of cat spinal motoneuron (Balbi et al, 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Following a distal stimulation of a motor fibre, only a fraction of spinal motoneurons are able to produce a re-excitation of the initial segment leading to an orthodromically conducted action potential, known as recurrent discharge. In order to show the reciprocal interplay of the axonal initial segment and the soma leading to recurrent discharge in detail, a reduced model of a cat spinal motoneuron was developed."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151443",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Recurrent discharge"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Balbi, Pietro (piero.balbi@fsm.it)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "piero.balbi@fsm.it"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181621,
+ "object_name": "151443"
+ }
+ ]
+ },
+ "ver_date": "2014-02-25T01:16:09",
+ "ver_number": 15
+ },
+ "151458": {
+ "citation": {
+ "attr_id": 391,
+ "value": "24062681"
+ },
+ "class_id": 19,
+ "created": "2013-11-06T21:40:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 112844,
+ "object_name": "I Q"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151458,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 126348,
+ "object_name": "Nakano, Takashi [nakano.takashi at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151459,
+ "object_name": "Nakano T, Yoshimoto J, Doya K (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "151458",
+ "name": "ModelView"
+ }
+ ],
+ "default": "151458"
+ },
+ "name": "Calcium response prediction in the striatal spines depending on input timing (Nakano et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We construct an electric compartment model of the striatal medium spiny neuron with a realistic morphology and predict the calcium responses in the synaptic spines with variable timings of the glutamatergic and dopaminergic inputs and the postsynaptic action potentials.\r\nThe model was validated by reproducing the responses to current inputs and could predict the electric and calcium responses to glutamatergic inputs and back-propagating action potential in the proximal and distal synaptic spines during up and down states."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151458",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nakano.takashi@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2015-07-20T10:33:07.39",
+ "ver_number": 13
+ },
+ "151460": {
+ "citation": {
+ "attr_id": 391,
+ "value": "16738214"
+ },
+ "class_id": 19,
+ "created": "2013-11-07T09:36:23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 151460,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33782,
+ "object_name": "McIntyre, Cameron C. [ccm4 at case.edu]"
+ },
+ {
+ "object_id": 127443,
+ "object_name": "Hahn, Philip [hahnp at ccf.org]"
+ },
+ {
+ "object_id": 153197,
+ "object_name": "Miocinovic, Svjetlana [svjetlana.miocinovic at utsouthwestern.edu]"
+ },
+ {
+ "object_id": 153198,
+ "object_name": "Butson, Chris [cbutson at mcw.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 115500,
+ "object_name": "Miocinovic S, Parent M, Butson CR, Hahn PJ, Russo GS, Vitek JL, McIntyre CC (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "DBS of a multi-compartment model of subthalamic nucleus projection neurons (Miocinovic et al. 2006)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We built a comprehensive computational model of subthalamic nucleus (STN) deep brain stimulation (DBS) in parkinsonian macaques to study the effects of stimulation in a controlled environment. The model consisted of three fundamental components: 1) a three-dimensional (3D) anatomical model of the macaque basal ganglia, 2) a finite element model of the DBS electrode and electric field transmitted to the tissue medium, and 3) multicompartment biophysical models of STN projection neurons, GPi fibers of passage, and internal capsule fibers of passage. Populations of neurons were positioned within the 3D anatomical model. Neurons were stimulated with electrode positions and stimulation parameters defined as clinically effective in two parkinsonian monkeys. The model predicted axonal activation of STN neurons and GPi fibers during STN DBS. Model predictions regarding the degree of GPi fiber activation matched well with experimental recordings in both monkeys."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151460",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Miocinovic, Svjetlana , Butson, Chris "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.foutz@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2014-03-19T14:56:58",
+ "ver_number": 7
+ },
+ "151482": {
+ "class_id": 19,
+ "created": "2013-11-17T05:27:32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151482,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167521,
+ "object_name": "Briant LJ, Stalbovskiy AO, Nolan MF, Champneys AR, Pickering AE (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "151482_1",
+ "name": "Fig. 3B"
+ },
+ {
+ "id": "151482_2",
+ "name": "Fig. 3Ab"
+ }
+ ],
+ "default": "151482_1"
+ },
+ "name": "Sympathetic Preganglionic Neurone (Briant et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ },
+ {
+ "object_id": 167627,
+ "object_name": "Spinal cord sympathetic preganglionic neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A model of a sympathetic preganglionic neurone of muscle vasoconstrictor-type."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151482",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Excitability"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Briant, Linford [l.briant at bristol.ac.uk"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Sympathetic Preganglionic Neurone"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "l.briant@bristol.ac.uk"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181739,
+ "object_name": "151482_2"
+ },
+ {
+ "object_id": 181749,
+ "object_name": "151482_1"
+ }
+ ]
+ },
+ "ver_date": "2015-01-04T21:34:18",
+ "ver_number": 7
+ },
+ "151483": {
+ "class_id": 19,
+ "created": "2013-11-18T23:03:14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122817,
+ "object_name": "Kv3.1 KCNC1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151483,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151556,
+ "object_name": "Schmerl BA, McDonnell MD (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Simulating ion channel noise in an auditory brainstem neuron model (Schmerl & McDonnell 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 273,
+ "object_name": "Cochlear nucleus bushy GLU cell"
+ },
+ {
+ "object_id": 88113,
+ "object_name": "CN stellate cell"
+ },
+ {
+ "object_id": 88115,
+ "object_name": "Ventral cochlear nucleus T stellate (chopper) neuron"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we demonstrate that biophysical models of channel noise can give rise to two\r\nkinds of recently discovered stochastic facilitation effects in a Hodgkin-Huxley-like model of auditory brainstem\r\nneurons. The first, known as slope-based stochastic resonance (SBSR), enables phasic neurons to emit action\r\npotentials that can encode the slope of inputs that vary slowly relative to key time constants in the model. \r\n\r\nThe\r\nsecond, known as inverse stochastic resonance (ISR), occurs in tonically firing neurons when small levels of\r\nnoise inhibit tonic firing and replace it with burstlike dynamics. ...\"\r\nPreprint available at http://arxiv.org/abs/1311.2643"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151483",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Stochastic facilitation"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I K low threshold"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "McDonnell, Mark D. [mark.mcdonnell at unisa.edu.au\r\nSchmerl, Brett A. [brett.schmerl at mymail.unisa.edu.au]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mark.mcdonnell@unisa.edu.au"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:06:36.473",
+ "ver_number": 15
+ },
+ "151549": {
+ "class_id": 19,
+ "created": "2013-11-26T10:24:59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 151550,
+ "object_name": "Channelrhodopsin (ChR)"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 151549,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151488,
+ "object_name": "Williams JC, Xu J, Lu Z, Klimas A, Chen X, Ambrosi CM, Cohen IS, Entcheva E (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Voltage and light-sensitive Channelrhodopsin-2 model (ChR2) (Williams et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52422,
+ "object_name": "Cardiac atrial cell"
+ },
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... \r\nFocusing on one of the most widely used ChR2 mutants\r\n(H134R) with enhanced current, we collected a comprehensive\r\nexperimental data set of the response of this ion channel to different\r\nirradiances and voltages, and used these data to develop a model of\r\nChR2 with empirically-derived voltage- and irradiance- dependence,\r\nwhere parameters were fine-tuned via simulated annealing\r\noptimization.\r\n\r\nThis ChR2 model offers: 1) accurate inward rectification\r\nin the current-voltage response across irradiances; 2)\r\nempirically-derived voltage- and light-dependent kinetics (activation,\r\ndeactivation and recovery from inactivation); and 3) accurate\r\namplitude and morphology of the response across voltage and irradiance\r\nsettings. \r\n\r\nTemperature-scaling factors (Q10) were derived and model kinetics was\r\nadjusted to physiological temperatures.\r\n... \""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151549",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2013-11-26T15:17:08",
+ "ver_number": 4
+ },
+ "151677": {
+ "biosimulations": {
+ "value": "modeldb-151677"
+ },
+ "class_id": 19,
+ "created": "2013-11-28T10:26:18",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 151677,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57906,
+ "object_name": "Golomb, David [golomb at bgu.ac.il]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151676,
+ "object_name": "Hires SA, Pammer L, Svoboda K, Golomb D (2013)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Tapered whiskers are required for active tactile sensation (Hires et al. 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... \r\nThe diverse shapes of facial whiskers reflect distinct ecological niches. Rodent whiskers\r\nare conical, often with a remarkably linear taper. \r\n\r\nHere we use theoretical and experimental methods\r\nto analyze interactions of mouse whiskers with objects. \r\n... \"\r\n\r\nThis is a quasi-static solution of the bending of an isolated whisker.\r\n\r\nFor Fig. 2, stable solution, use: theta=-0.174533 rad.\r\n\r\nUse \"Bndryval -> Show\" in XPPAUT.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151677",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "david.golomb@gmail.com"
+ },
+ "ver_date": "2013-11-28T10:59:06",
+ "ver_number": 2
+ },
+ "151681": {
+ "class_id": 19,
+ "created": "2013-11-29T04:17:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 151681,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 153637,
+ "object_name": "Cavarretta, Francesco [francescocavarretta at hotmail.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151756,
+ "object_name": "Migliore M, Cavarretta F, Hines ML, Shepherd GM (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "3D model of the olfactory bulb (Migliore et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This entry contains a link to a full HD version of movie 1 and the NEURON code of the paper:\r\n\"Distributed organization of a brain microcircuit analysed by three-dimensional modeling: the olfactory bulb\" by M Migliore, F Cavarretta, ML Hines, and GM Shepherd."
+ },
+ "opensourcebrain": {
+ "value": "miglioreetal14_olfactorybulb3d"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151681",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:13:43.693",
+ "ver_number": 35
+ },
+ "151685": {
+ "class_id": 19,
+ "created": "2013-12-09T13:21:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151685,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230182,
+ "object_name": "Lee, Shane [shane_lee at brown.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 113742,
+ "object_name": "Magnetoencephalography"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 230187,
+ "object_name": "Current Dipole"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 229264,
+ "object_name": "Lee S, Jones SR (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Current Dipole in Laminar Neocortex (Lee et al. 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Laminar neocortical model in NEURON/Python, adapted from Jones et al 2009.\r\n\r\nhttps://bitbucket.org/jonescompneurolab/corticaldipole"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151685",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Current Dipole"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lee, Shane "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shane_lee@brown.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:23:49.517",
+ "ver_number": 11
+ },
+ "151686": {
+ "class_id": 19,
+ "created": "2013-12-10T11:46:05",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151686,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156119,
+ "object_name": "Simoes-de-Souza, Fabio [fabio.souza at ufabc.edu.br]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156839,
+ "object_name": "Antunes G, Sebasti\u00e3o AM, Simoes de Souza FM (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 156118,
+ "object_name": "COPASI"
+ }
+ ]
+ },
+ "name": "Stochastic model of the olfactory cilium transduction and adaptation (Antunes et al 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this work, we have combined stochastic computational modeling and\r\n a systematic pharmacological study of different signaling pathways to\r\n investigate their impact during short-term adaptation (STA).\r\n\r\n...\r\nThese results suggest that G-coupled\r\n receptors (GPCRs) cycling is involved with the occurrence of STA. To\r\n gain insights on the dynamical aspects of this process, we developed\r\n a stochastic computational model. The model consists of the olfactory\r\n transduction currents mediated by the cyclic nucleotide gated (CNG)\r\n channels and calcium ion (Ca2+)-activated chloride (CAC) channels,\r\n and the dynamics of their respective ligands, cAMP and Ca2+, and it\r\n simulates the EOG (electroolfactogram)\r\nresults obtained under different experimental\r\n conditions through changes in the amplitude and duration of cAMP and\r\n Ca2+ response, two second messengers implicated with STA\r\n occurrence. The model reproduced the experimental data for each\r\n pharmacological treatment and provided a mechanistic explanation for\r\n the action of GPCR cycling in the levels of second messengers\r\n modulating the levels of STA. All together, these experimental and\r\n theoretical results indicate the existence of a mechanism of\r\n regulation of STA by signaling pathways that control GPCR cycling and\r\n tune the levels of second messengers in OSNs, and not only by CNG\r\n channel desensitization as previously thought. \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151686",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Simoes de Souza, Fabio "
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "COPASI"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fabiomarques@fm.ul.pt"
+ },
+ "ver_date": "2018-10-17T16:13:57.693",
+ "ver_number": 13
+ },
+ "151692": {
+ "class_id": 19,
+ "created": "2013-12-16T17:47:25",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151692,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169246,
+ "object_name": "Esposito U, Giugliano M, van Rossum M, Vasilaki E (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Statistics of symmetry measure for networks of neurons (Esposito et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The code reproduces Figures 1, 2, 3A and 3C from Esposito et al \"Measuring symmetry, asymmetry and randomness in neural networks\". It provides the statistics of the symmetry measure defined in the paper for networks of neurons with random connections drawn from uniform and gaussian distributions."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151692",
+ "ver_date": "2015-01-14T14:22:56",
+ "ver_number": 7
+ },
+ "151731": {
+ "class_id": 19,
+ "created": "2013-12-20T05:23:35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151731,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 153637,
+ "object_name": "Cavarretta, Francesco [francescocavarretta at hotmail.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168036,
+ "object_name": "Cavarretta F, Carnevale NT, Tegolo D, Migliore M (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "151731",
+ "name": "run sim"
+ }
+ ],
+ "default": "151731"
+ },
+ "name": "CA1 pyramidal neurons: effect of external electric field from power lines (Cavarretta et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper discusses the effects induced by an electric field at power lines frequency."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151731",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T13:56:48.797",
+ "ver_number": 18
+ },
+ "151817": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 21893936"
+ },
+ "class_id": 19,
+ "created": "2013-12-31T01:47:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151817,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151818,
+ "object_name": "Liu, Cambrian [camliu at chla.usc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ },
+ {
+ "object_id": 151445,
+ "object_name": "Recurrent Discharge"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 147215,
+ "object_name": "Liu CY, Xiao C, Fraser SE, Lester HA, Koos DS (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Model of repetitive firing in Grueneberg ganglion olfactory neurons (Liu et al., 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ },
+ {
+ "object_id": 151819,
+ "object_name": "Grueneberg ganglion neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is constructed based on properties of Na+ and K+ currents observed in whole-cell patch clamp recordings of mouse Grueneberg ganglion neurons in acute slices. Two distinct Na+ conductances representing the TTX-sensitive and TTX-resistant currents and one delayed rectifier K+ currrent are included. By modulating the maximal conductances of Na+ currents, one can reproduce the regular, phasic, and sporadic patterns of repetitive firing found in the patch clamp experiments."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151817",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "TTX-R, TTX-S"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Cambrian Liu"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Grueneberg ganglion"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "camliu@chla.usc.edu"
+ },
+ "ver_date": "2018-10-17T16:14:13.53",
+ "ver_number": 7
+ },
+ "151825": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.jneurosci.org/content/34/1/182.abstract"
+ },
+ "class_id": 19,
+ "created": "2013-12-31T23:33:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 151825,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 110661,
+ "object_name": "Korngreen, Alon [alon.korngreen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151826,
+ "object_name": "Almog M, Korngreen A (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "151825",
+ "name": "ModelView"
+ }
+ ],
+ "default": "151825"
+ },
+ "name": "Ionic mechanisms of dendritic spikes (Almog and Korngreen 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We used a combined experimental and numerical parameter peeling procedure was implemented to optimize a detailed ionic mechanism for the generation and propagation of dendritic spikes in neocortical L5 pyramidal neurons. \r\n\r\nRun the cc_run.hoc to get a demo for dendritic calcium spike generated by coincidence of a back-propagating AP and distal synaptic input."
+ },
+ "opensourcebrain": {
+ "value": "almog-korngreen-pyramidal-neuron"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/151825",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "alon.korngree@biu.ac.il"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181716,
+ "object_name": "151825"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T13:09:01.517",
+ "ver_number": 11
+ },
+ "151945": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMC3868551"
+ },
+ "class_id": 19,
+ "created": "2014-01-06T19:09:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 151945,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140251,
+ "object_name": "Halnes, Geir [geir.halnes at nmbu.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151947,
+ "object_name": "Halnes G, Ostby I, Pettersen KH, Omholt SW, Einevoll GT (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Electrodiffusive astrocytic and extracellular ion concentration dynamics model (Halnes et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An electrodiffusive formalism was developed for computing the dynamics of the membrane potential\r\nand ion concentrations in the intra- and extracellular space in a one-dimensional geometry (cable). This (general) formalism was implemented in a model of astrocytes exchanging K+, Na+ and Cl- ions with the extracellular space (ECS). \r\nA limited region (0< x"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Drosophila aCC motoneuron, 3rd instar larva"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cgunay@emory.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 120613,
+ "object_name": "Drosophila (fruit fly)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:10:18.14",
+ "ver_number": 12
+ },
+ "152111": {
+ "class_id": 19,
+ "created": "2014-01-13T14:50:57",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 152111,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180682,
+ "object_name": "Carey RM, Sherwood WE, Shipley MT, Borisyuk A, Wachowiak M (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Olfactory bulb juxtaglomerular models (Carey et al., 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 153283,
+ "object_name": "Olfactory bulb main interneuron granule TC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...We investigated how OB circuits shape inhalation-driven\r\ndynamics in MCs using a modeling approach that was highly constrained by experimental\r\nresults. First, we constructed models of canonical OB circuits that included mono- and disynaptic\r\nfeedforward excitation, recurrent inhibition and feedforward inhibition of the MC. We then used\r\nexperimental data to drive inputs to the models and to tune parameters; inputs were derived from\r\nsensory neuron responses during natural odorant sampling (sniffing) in awake rats, and model\r\noutput was compared to recordings of MC responses to odorants sampled with the same sniff\r\nwaveforms. This approach allowed us to identify OB circuit features underlying the temporal\r\ntransformation of sensory inputs into inhalation-linked patterns of MC spike output.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152111",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Olfactory bulb external tufted cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ryanmcarey@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:14:28.917",
+ "ver_number": 10
+ },
+ "152112": {
+ "citation": {
+ "attr_id": 391,
+ "value": "JH Goldwyn, M Mc Laughlin, E Verschooten, PX Joris, J Rinzel. \"A model of the medial superior olive explains spatiotemporal features of local field potentials\". Submitted to J Neuroscience January 14, 2014."
+ },
+ "class_id": 19,
+ "created": "2014-01-14T14:41:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 88118,
+ "object_name": "I_KLT"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 152112,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128503,
+ "object_name": "Goldwyn, Joshua [jhgoldwyn at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152271,
+ "object_name": "Goldwyn JH, Mc Laughlin M, Verschooten E, Joris PX, Rinzel J (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A model of local field potentials generated by medial superior olive neurons (Goldwyn et al 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88110,
+ "object_name": "Medial Superior Olive (MSO) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A computational model of local field potentials generated by medial superior olive neurons. These field potentials are known as the \"auditory neurophonic\". MSO neuron is modeled as a soma and two dendrites (following Mathews et al, Nature Neurosci, 2010). Intracellular and a 1D extracellular domain are dynamically coupled and solved to simulate spatial-temporal patterns of membrane voltage and extracellular voltage in response to trains of synaptic inputs (monolateral or bilateral, excitation and/or inhibition). The model produces spatio-temporal patterns similar to neurophonic responses recorded in vivo, as discussed in the accompanying manuscript."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152112",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jgoldwyn@nyu.edu"
+ },
+ "ver_date": "2014-07-21T10:00:57",
+ "ver_number": 4
+ },
+ "152113": {
+ "biosimulations": {
+ "value": "modeldb-152113"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Bidirectional Control of Absence Seizures by the Basal Ganglia: A Computational Evidence (PLoS Computational Biology, 2014)"
+ },
+ "class_id": 19,
+ "created": "2014-01-15T06:33:59",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 152113,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 152114,
+ "object_name": "Guo, Daqing [dqguo at uestc.edu.cn]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152115,
+ "object_name": "Chen M, Guo D, Wang T, Jing W, Xia Y, Xu P, Luo C, Valdes-Sosa PA, Yao D (2014)"
+ },
+ {
+ "object_id": 185091,
+ "object_name": "Chen M, Guo D, Li M, Ma T, Wu S, Ma J, Cui Y, Xia Y, Xu P, Yao D (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Basal ganglia-corticothalamic (BGCT) network (Chen et al., 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed a biophysical model of the basal ganglia-corticothalamic\r\nnetwork in this work.\r\n\r\n\"... We demonstrate that the typical absence seizure activities can be\r\ncontrolled and modulated by the direct GABAergic projections from the\r\nsubstantia nigra pars reticulata (SNr) to either the thalamic\r\nreticular nucleus (TRN) or the specific relay nuclei (SRN) of\r\nthalamus, through different biophysical mechanisms.\r\n... results highlight the bidirectional functional roles of\r\nbasal ganglia in controlling and modulating absence seizures, and\r\nmight provide novel insights into the therapeutic treatments of this\r\nbrain disorder.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152113",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Guo Daqing(dqguo@uestc.edu.cn)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dqguo@uestc.edu.cn"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2015-09-15T17:18:24.443",
+ "ver_number": 14
+ },
+ "152197": {
+ "class_id": 19,
+ "created": "2014-01-17T09:48:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 152197,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 152641,
+ "object_name": "Eguchi, Akihiro [akihiro.eguchi at psy.ox.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152643,
+ "object_name": "Eguchi A, Neymotin SA, Stringer SM (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Simulated cortical color opponent receptive fields self-organize via STDP (Eguchi et al., 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nIn this work, we address the problem of understanding the cortical processing of color information with a possible mechanism of the development of the patchy distribution of color selectivity via computational modeling.\r\n...\r\n\r\nOur model of the early visual system consists of multiple topographically-arranged layers of excitatory and inhibitory neurons, with sparse intra-layer connectivity and feed-forward connectivity between layers.\r\n\r\nLayers are arranged based on anatomy of early visual pathways, and include a retina, lateral geniculate nucleus, and layered neocortex.\r\n...\r\nAfter training with natural images, the neurons display heightened sensitivity to specific colors.\r\n\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152197",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Color selectivity, Vision"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "akihiro.eguchi@psy.ox.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:18:52.67",
+ "ver_number": 14
+ },
+ "152200": {
+ "class_id": 19,
+ "created": "2014-01-21T08:37:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 152200,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 152201,
+ "object_name": "Zhou, Lian [lian.zhou at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 34032,
+ "object_name": "Gingrich KJ, Byrne JH (1985)"
+ },
+ {
+ "object_id": 156280,
+ "object_name": "Zhou L, Baxter DA, Byrne JH (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "SN-MN neurons of Aplysia (Zhou et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52413,
+ "object_name": "Aplysia sensory neuron"
+ },
+ {
+ "object_id": 52415,
+ "object_name": "Aplysia motor neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Contribution of PKC-dependent processes to the maintenance of short-term facilitation(STF) at SN-MN synapse of Aplysia were exmained. A computational model of transmitter release demonstrated that a PKC-dependent mobilization process was sufficient to explain the maintenance of STF at nondepressed synapses and the facilitation of depressed synapses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152200",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "zhou,lian"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lian.zhou@uth.tmc.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249921,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:08:53.613",
+ "ver_number": 16
+ },
+ "152292": {
+ "biosimulations": {
+ "value": "modeldb-152292"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "C. Park and J.E. Rubin, J. Comp. Neurosci., 34:345-366, 2013."
+ },
+ "class_id": 19,
+ "created": "2014-01-31T10:19:31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 152292,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125612,
+ "object_name": "Rubin, Jonathan E [jonrubin at pitt.edu]"
+ },
+ {
+ "object_id": 152294,
+ "object_name": "Park, Choongseok [cpark at ncat.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152293,
+ "object_name": "Park C, Rubin JE (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "PreBotzinger Complex inspiratory neuron with NaP and CAN currents (Park and Rubin 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 125611,
+ "object_name": "Respiratory column neuron"
+ },
+ {
+ "object_id": 232103,
+ "object_name": "PreBotzinger complex neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We have built on earlier models to develop a single-compartment Hodgkin-Huxley type model incorporating NaP and CAN currents, both of which can play important roles in bursting of inspiratory neurons in the PreBotzinger Complex of the mammalian respiratory brain stem. The model tracks the evolution of membrane potential, related (in)activation variables, calcium concentration, and available fraction of IP3 channels. The model can produce several types of bursting, presented and analyzed from a dynamical systems perspective in our paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152292",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Park, Choongseok "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jonrubin@pitt.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2017-09-13T17:34:49.86",
+ "ver_number": 10
+ },
+ "152539": {
+ "class_id": 19,
+ "created": "2014-02-06T17:15:07",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 152539,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 152540,
+ "object_name": "Cavallari, Stefano [stefano.cavallari at iit.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152537,
+ "object_name": "Cavallari S, Panzeri S, Mazzoni A (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "I&F recurrent networks with current- or conductance-based synapses (Cavallari et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Recurrent networks of two populations (excitatory and inhibitory) of randomly connected Leaky Integrate-and-Fire (LIF) neurons with either current- or conductance-based synapses from the paper S. Cavallari, S. Panzeri and A. Mazzoni (2014)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152539",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2015-07-22T09:53:45.1",
+ "ver_number": 11
+ },
+ "152625": {
+ "class_id": 19,
+ "created": "2014-02-10T15:04:48",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 152625,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 152626,
+ "object_name": "Hernandez, Oscar E [ohernandezb at uninorte.edu.co]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152290,
+ "object_name": "Hern\u00e1ndez OE, Zurek EE (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Software for teaching the Hodgkin-Huxley model (Hernandez & Zurek 2013) (SENB written in NEURON hoc)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... The SENB software offers several advantages for teaching and learning electrophysiology. First, SENB offers\r\nease and flexibility in determining the number of stimuli. Second, SENB allows immediate and simultaneous\r\nvisualization, in the same window and time frame, of the evolution of the electrophysiological variables. Third, SENB\r\ncalculates parameters such as time and space constants, stimuli frequency, cellular area and volume, sodium and\r\npotassium equilibrium potentials, and propagation velocity of the action potentials. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152625",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 607
+ },
+ "ver_date": "2014-02-10T15:27:54",
+ "ver_number": 2
+ },
+ "152636": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Caplan JS, Williams AH, Marder E (submitted). Many parameter sets in a multicompartment model oscillator are robust to temperature perturbations."
+ },
+ "class_id": 19,
+ "created": "2014-02-14T15:01:44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 152636,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 152638,
+ "object_name": "Caplan, Jonathan S [joncaplan at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152637,
+ "object_name": "Caplan JS, Williams AH, Marder E (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Temperature-Dependent Pyloric Pacemaker Kernel (Caplan JS et al., 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 144405,
+ "object_name": "Stomatogastric ganglion (STG) pyloric dilator (PD) neuron"
+ },
+ {
+ "object_id": 144406,
+ "object_name": "Stomatogastric ganglion (STG) pyloric neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we demonstrate\r\nthat biophysical models of channel noise can give rise to two kinds of\r\nrecently discovered stochastic facilitation effects in a\r\nHodgkin-Huxley-like model of auditory brainstem neurons. The first,\r\nknown as slope-based stochastic resonance (SBSR), enables phasic\r\nneurons to emit action potentials that can encode the slope of inputs\r\nthat vary slowly relative to key time constants in the model. The\r\nsecond, known as inverse stochastic resonance (ISR), occurs in\r\ntonically firing neurons when small levels of noise inhibit tonic\r\nfiring and replace it with burstlike dynamics.\r\n\r\n... our results show that possible\r\nassociated computational benefits may occur due to channel noise in\r\nneurons of the auditory brainstem.\r\n... \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152636",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Temperature"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Caplan, Jonathan S "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ahwillia@brandeis.edu"
+ },
+ "ver_date": "2018-10-18T17:07:33.647",
+ "ver_number": 6
+ },
+ "152788": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hjorth JJJ, van Pelt J, Mansvelder HD, van Ooyen A. Competitive Dynamics during Resource-Driven Neurite Outgrowth. PLoS One. 2014 Feb 3;9(2):e86741. doi: 10.1371/journal.pone.0086741"
+ },
+ "class_id": 19,
+ "created": "2014-02-25T04:00:20",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 152788,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118393,
+ "object_name": "Hjorth, Johannes [hjorth at csc.kth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152789,
+ "object_name": "Hjorth JJ, van Pelt J, Mansvelder HD, van Ooyen A (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Resource competition in growing neurites (Hjorth et al 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Computer model of neurite outgrowth in a simplified neuron. A growth limiting resource is produced in the soma, transported through the neurites and consumed at the growth cones."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152788",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Simplified neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hjorth@csc.kth.se"
+ },
+ "ver_date": "2015-07-26T14:38:02.813",
+ "ver_number": 12
+ },
+ "152897": {
+ "citation": {
+ "attr_id": 391,
+ "value": "1. Hopgkin AL, Huxley AF. A quantitative description of membrane current and its application to conduction and excitation in nverve. J Physiol 1952;117:500-44. 2. Chen BS, Lo YC, Liu YC, Wu SN. Effects of transient receptor-like current on firing pattern of actions potentials in the Hodgkin-Huxley neuron during exposure to sinusoidal external voltage. Chin J Physiol 2010;53:423-9."
+ },
+ "class_id": 19,
+ "created": "2014-02-26T01:55:33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 152897,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ },
+ {
+ "object_id": 84610,
+ "object_name": "Huang, Chin-Wei"
+ },
+ {
+ "object_id": 114111,
+ "object_name": "Chen, Bing-Shuo"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 29126,
+ "object_name": "HODGKIN AL, HUXLEY AF (1952)"
+ },
+ {
+ "object_id": 137265,
+ "object_name": "Chen BS, Lo YC, Lius YC, Wu SN (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150209,
+ "object_name": "R"
+ }
+ ]
+ },
+ "name": "Squid axon (Hodgkin, Huxley 1952) used in (Chen et al 2010) (R language)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Previous work showed that magnetic electrical field-induced antinoceptive action is mediated by activation of capsaicin-sensitive sensory afferents. In this study, a modified Hodgkin-Huxley model, in which TRP-like current (I-TRP) was incorporated, was implemented to predict the firing behavior of action potentials (APs), as the model neuron was exposed to sinusoidal changes in externally-applied voltage. ... Our simulation results suggest that modulation of TRP-like channels functionally expressed in small-diameter peripheral sensory neurons should be an important mechanism through which it can contribute to the firing pattern of APs.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152897",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2014-02-26T14:42:19",
+ "ver_number": 5
+ },
+ "152913": {
+ "class_id": 19,
+ "created": "2014-02-28T17:55:16",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 152913,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152912,
+ "object_name": "Tahayori B, Meffin H, Dokos S, Burkitt AN, Grayden DB (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 152965,
+ "object_name": "COMSOL"
+ }
+ ]
+ },
+ "name": "Modeling extracellular electrical stimulation (Tahayori et al. 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The validity of approximate equations describing the membrane potential under extracellular electrical stimulation (Meffin et al 2012 J. Neural Eng. 9 065005) is investigated through finite element analysis in this paper. To this end, the finite element method is used to simulate a cylindrical neurite under extracellular stimulation. Laplace's equations with appropriate boundary conditions are solved numerically in three dimensions and the results are compared to the approximate analytic solutions. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152913",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2015-07-26T13:05:48.24",
+ "ver_number": 4
+ },
+ "152966": {
+ "biosimulations": {
+ "value": "modeldb-152966"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "(1) Wang YJ, Sung RJ, Lin MW, Wu SN. Contribution of BK(Ca)-channel activity in human cardiac fibroblasts to electrical coupling of cardiomyocytes-fibroblasts. J Membr Biol 2006;213:175-185. (2) Luo CH, Rudy Y. A dynamic model of the cardiac ventricular action potential. II. Afterdepolarizations, triggered activity, and potentiation. Circ Res 1994;74:1097-1113."
+ },
+ "class_id": 19,
+ "created": "2014-03-01T08:10:28",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ },
+ {
+ "object_id": 88206,
+ "object_name": "I_HERG"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 88210,
+ "object_name": "I_Na,Ca"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 88212,
+ "object_name": "KCNQ1"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 152966,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 152968,
+ "object_name": "Triggered activity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 56013,
+ "object_name": "Luo CH, Rudy Y (1994)"
+ },
+ {
+ "object_id": 112806,
+ "object_name": "Wang YJ, Sung RJ, Lin MW, Wu SN (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Ventricular cell model (Luo Rudy dynamic model) (Luo Rudy 1994) used in (Wang et al 2006) (XPP)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A mathematical model of the membrane action potential of the mammalian ventricular cell introduced in Luo, Rudy 1991 and used in Wang et al 2006 is made available here in XPP. The model is based, whenever possible, on recent single-cell and single-channel data and incorporates the possibility of changing extracellular potassium concentration [K]o. ... The results are consistent with recent experimental observations, and the model simulations relate these phenomena to the underlying ionic channel kinetics. See papers for more and details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/152966",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Triggered activity"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "ver_date": "2015-07-26T14:38:59.55",
+ "ver_number": 13
+ },
+ "153030": {
+ "class_id": 19,
+ "created": "2014-03-05T03:17:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153030,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153038,
+ "object_name": "Dar , Gaurav [gdar at goa.bits-pilani.ac.in]"
+ },
+ {
+ "object_id": 153090,
+ "object_name": "Gangal, Himanshu [himanshugangal at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 222737,
+ "object_name": "Gangal H, Dar G (2014)"
+ },
+ {
+ "object_id": 153031,
+ "object_name": "Lee SG, Kim S (2006)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Squid axon: Bifurcation analysis of mode-locking (Lee & Kim 2006) (Gangal & Dar 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model was built with the purpose of finding mode lockings between the input sinusoidal current frequency and the output frequency. Phase plase plane analysis, spike statistics, mode locking formulation etc. can be done with the help of the model. Any additional functionality can be added as the base code return the correct action potential values."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153030",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Na , I Leakage"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dar , Gaurav "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "himanshugangalcoursera@gmail.com"
+ },
+ "ver_date": "2017-01-10T17:51:38.123",
+ "ver_number": 9
+ },
+ "153092": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Eivind S. Norheim, John Wyller, Eilen Nordlie, and Gaute T. Einevoll: A minimal mechanistic model for temporal signal processing in the lateral geniculate nucleus, Cognitive Neurodynamics 6: 259-281 (2012)"
+ },
+ "class_id": 19,
+ "created": "2014-03-11T11:44:40",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153092,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153095,
+ "object_name": "Norheim, Eivind [norheim.eivind at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 153097,
+ "object_name": "Norheim ES, Wyller J, Nordlie E, Einevoll GT (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "LGNcircuit: Minimal LGN network model of temporal processing of visual input (Norheim et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The responses of relay cells in the lateral geniculate nucleus (LGN) are shaped by their diverse set of impinging inputs: feedforward synaptic inputs stemming from retina, and feedback inputs stemming from the visual cortex and the thalamic reticular nucleus. This MATLAB model, with an easy-to-use graphical user interface (GUI), explores possible roles of these feedforward and feedback inputs in shaping the temporal part of the receptive fields of LGN relay cells with, so called, ON symmetry. A minimal mechanistic firing-rate model tailored to elucidate salient feedforward and feedback effects is considered including, in particular, feedforward excitation and inhibition (via interneurons) from retinal ON cells and excitatory and inhibitory (via thalamic reticular nucleus cells and interneurons) feedback\r\nfrom cortical ON and OFF cells. Various types of visual stimuli can be explored: flashing spots, impulses, sinusoidal gratings."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153092",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Norheim, Eivind [norheim.eivind@gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Gaute.Einevoll@nmbu.no"
+ },
+ "ver_date": "2018-10-17T17:19:12.08",
+ "ver_number": 12
+ },
+ "153196": {
+ "class_id": 19,
+ "created": "2014-03-16T02:06:53",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 151550,
+ "object_name": "Channelrhodopsin (ChR)"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153196,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33766,
+ "object_name": "MacIntyre, CC [ccm4 at case.edu]"
+ },
+ {
+ "object_id": 153200,
+ "object_name": "Foutz, Thomas J [tfoutz at uw.edu]"
+ },
+ {
+ "object_id": 153201,
+ "object_name": "Arlow, Richard L [richard.arlow at case.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 147753,
+ "object_name": "Intracortical Microstimulation"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144540,
+ "object_name": "Foutz TJ, Arlow RL, McIntyre CC (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Optical stimulation of a channelrhodopsin-2 positive pyramidal neuron model (Foutz et al 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A computational tool to explore the underlying principles of optogenetic neural stimulation. This \"light-neuron\" model consists of theoretical representations of the light dynamics generated by a fiber optic in brain tissue, coupled to a multicompartment cable model of a cortical pyramidal neuron (Hu et al. 2009, ModelDB #123897) embedded with channelrhodopsin-2 (ChR2) membrane dynamics. Simulations predict that the activation threshold is sensitive to many of the properties of ChR2 (density, conductivity, and kinetics), tissue medium (scattering and absorbance), and the fiber-optic light source (diameter and numerical aperture). This model system represents a scientific instrument to characterize the effects of optogenetic neuromodulation, as well as an engineering design tool to help guide future development of optogenetic technology."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153196",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Foutz, Thomas J ; McIntyre, Cameron C ; Arlow, Richard L "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.foutz@gmail.com"
+ },
+ "ver_date": "2017-01-13T12:18:51.027",
+ "ver_number": 10
+ },
+ "153280": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Lee et al., under review/in press"
+ },
+ "class_id": 19,
+ "created": "2014-03-20T16:14:20",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153280,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153194,
+ "object_name": "Bezaire, Marianne [mariannejcase at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154374,
+ "object_name": "Lee SH, Marchionni I, Bezaire M, Varga C, Danielson N, Lovett-Barron M, Losonczy A, Soltesz I (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Parvalbumin-positive basket cells differentiate among hippocampal pyramidal cells (Lee et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This detailed microcircuit model explores the network level effects of sublayer specific connectivity in the mouse CA1. The differences in strengths and numbers of synapses between PV+ basket cells and either superficial sublayer or deep sublayer pyramidal cells enables a routing of inhibition from superficial to deep pyramidal cells. At the network level of this model, the effects become quite prominent when one compares the effect on firing rates when either the deep or superficial pyramidal cells receive a selective increase in excitation.\r\n"
+ },
+ "opensourcebrain": {
+ "value": "nc_superdeep"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153280",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Circuit Analysis"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mariannejcase@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T11:13:24.393",
+ "ver_number": 9
+ },
+ "153351": {
+ "class_id": 19,
+ "created": "2014-04-01T06:25:57",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 153351,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153725,
+ "object_name": "Chen, Weiliang [w.chen at oist.jp]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 153699,
+ "object_name": "Chen W, De Schutter E (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 153713,
+ "object_name": "STEPS (web link to model)"
+ }
+ ]
+ },
+ "name": "Python-based toolkits for STEPS (Chen and De Schutter 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We provide two examples to demonstrate the use of the geometry preparation toolkit and the visualization tool for STEPS, described in Chen W and De Schutter E (2014).\r\n\r\nThe package contains two folders, each for an individual example. The ip3r folder contains mesh data and simulation scripts for the IP3 receptor model described in the paper, and the AD folder contains data and scripts for Anomalous Diffusion simulation.\r\n \r\nPlease read the instruction.pdf file within the package for detail instructions."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153351",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "\r\n"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "IP3"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "w.chen@oist.jp"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2014-04-21T11:40:27",
+ "ver_number": 16
+ },
+ "153355": {
+ "class_id": 19,
+ "created": "2014-04-04T10:19:06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153355,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153359,
+ "object_name": "Lamb, Damon [Damon.Lamb at neurology.ufl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 153357,
+ "object_name": "Lamb DG, Calabrese RL (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Leech Heart (HE) Motor Neuron conductances contributions to NN activity (Lamb & Calabrese 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 153358,
+ "object_name": "Leech heart motor neuron (HE)"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\n To explore the relationship between conductances,\r\nand in particular how they influence the activity of motor neurons in\r\nthe well characterized leech heartbeat system, we developed a new\r\nmulti-compartmental Hodgkin-Huxley style leech heart motor neuron\r\nmodel.\r\n\r\nTo do so, we evolved a population of model instances, which\r\ndiffered in the density of specific conductances, capable of achieving\r\nspecific output activity targets given an associated input pattern.\r\n\r\n...\r\nWe found that the strengths of many conductances,\r\nincluding those with differing dynamics, had strong partial\r\ncorrelations and that these relationships appeared to be linked by\r\ntheir influence on heart motor neuron activity.\r\n\r\n Conductances that had\r\npositive correlations opposed one another and had the opposite effects\r\non activity metrics when perturbed whereas conductances that had\r\nnegative correlations could compensate for one another and had similar\r\neffects on activity metrics.\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153355",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Leech heart motor neuron (HE)"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 114272,
+ "object_name": "Hirudinea (leech)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:23:01.95",
+ "ver_number": 8
+ },
+ "153452": {
+ "class_id": 19,
+ "created": "2014-04-09T22:36:44",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 153452,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153454,
+ "object_name": "Hong, Sungho [shhong at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 153453,
+ "object_name": "Hong S, Ratt\u00e9 S, Prescott SA, De Schutter E (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "A model for how correlation depends on the neuronal excitability type (Hong et al. 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\u201c\r\n\u2026\r\nUsing simulations and experiments in rat hippocampal neurons, we show here that pairs of neurons receiving correlated input also exhibit correlations arising from precise spike-time synchronization.\r\n\r\nContrary to rate comodulation, spike-time synchronization is unaffected by firing rate, thus enabling synchrony- and rate-based coding to operate independently.\r\n\r\nThe type of output correlation depends on whether intrinsic neuron properties promote integration or coincidence detection: \u201cideal\u201d integrators (with spike generation sensitive to stimulus mean) exhibit rate comodulation, whereas ideal coincidence detectors (with spike generation sensitive to stimulus variance) exhibit precise spike-time synchronization.\r\n\r\n\u2026\r\n\r\nOur results explain how different types of correlations arise based on how individual neurons generate spikes, and why spike-time synchronization and rate comodulation can encode different stimulus properties.\r\n\r\nOur results also highlight the importance of neuronal properties for population-level coding insofar as neural networks can employ different coding schemes depending on the dominant operating mode of their constituent neurons. \u201c"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153452",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hong, Sungho [shhong at oist.jp]"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T13:55:56.763",
+ "ver_number": 10
+ },
+ "153573": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Kenji Morita & Ayaka Kato. Striatal dopamine ramping may indicate flexible reinforcement learning with forgetting in the cortico-basal ganglia circuits. Frontiers in Neural Circuits 8:36. doi: 10.3389/fncir.2014.00036 (2014)."
+ },
+ "class_id": 19,
+ "created": "2014-04-13T14:30:23",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 153573,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 117206,
+ "object_name": "Morita, Kenji [morita at p.u-tokyo.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 153576,
+ "object_name": "Morita K, Kato A (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Striatal dopamine ramping: an explanation by reinforcement learning with decay (Morita & Kato, 2014)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Incorporation of decay of learned values into temporal-difference (TD) learning (Sutton & Barto, 1998, Reinforcement Learning (MIT Press)) causes ramping of TD reward prediction error (RPE), which could explain, given the hypothesis that dopamine represents TD RPE (Montague et al., 1996, J Neurosci 16:1936; Schultz et al., 1997, Science 275:1593), the reported ramping of the dopamine concentration in the striatum in a reward-associated spatial navigation task (Howe et al., 2013, Nature 500:575)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153573",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Morita, Kenji "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "morita@p.u-tokyo.ac.jp"
+ },
+ "ver_date": "2014-04-14T15:28:52",
+ "ver_number": 3
+ },
+ "153574": {
+ "class_id": 19,
+ "created": "2014-04-14T01:15:09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153574,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33795,
+ "object_name": "Bhalla, Upinder S [bhalla at ncbs.res.in]"
+ },
+ {
+ "object_id": 182361,
+ "object_name": "Gilra, Aditya [aditya_gilra -at- yahoo -period- com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182291,
+ "object_name": "Gilra A, Bhalla US (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 186718,
+ "object_name": "MOOSE/PyMOOSE"
+ }
+ ]
+ },
+ "name": "Olfactory bulb microcircuits model with dual-layer inhibition (Gilra & Bhalla 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A detailed network model of the dual-layer dendro-dendritic inhibitory microcircuits in the rat olfactory bulb comprising compartmental mitral, granule and PG cells developed by Aditya Gilra, Upinder S. Bhalla (2015). \r\nAll cell morphologies and network connections are in NeuroML v1.8.0. PG and granule cell channels and synapses are also in NeuroML v1.8.0. Mitral cell channels and synapses are in native python."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153574",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Sensory coding"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gilra, Aditya [aditya_gilra -at- yahoo -period- com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Olfactory bulb granule cell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:14:55.177",
+ "ver_number": 19
+ },
+ "153633": {
+ "class_id": 19,
+ "created": "2014-04-14T18:04:35",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153633,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 25097,
+ "object_name": "Brunel N, Hakim V (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Fast global oscillations in networks of I&F neurons with low firing rates (Brunel and Hakim 1999)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Dynamics of a network of sparsely connected inhibitory current-based integrate-and-fire neurons. Individual neurons fire irregularly at low rate but the network is in an oscillatory global activity regime where neurons are weakly synchronized."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153633",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:32:44.817",
+ "ver_number": 5
+ },
+ "153635": {
+ "class_id": 19,
+ "created": "2014-04-15T10:31:56",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153635,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 69696,
+ "object_name": "Brette R, Gerstner W (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Adaptive exponential integrate-and-fire model (Brette & Gerstner 2005)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We introduce a two-dimensional integrate-and-fire model that combines an exponential spike mechanism with an adaptation equation, based on recent theoretical findings. \r\n...\r\nThe model is especially reliable in high-conductance states, typical of cortical activity in vivo, in which intrinsic conductances were found to have a reduced role in shaping spike trains. These results are promising because this simple model has enough expressive power to reproduce qualitatively several electrophysiological classes described in vitro.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153635",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:32:27.97",
+ "ver_number": 5
+ },
+ "153660": {
+ "class_id": 19,
+ "created": "2014-04-16T11:58:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153660,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 153638,
+ "object_name": "Platkiewicz J, Brette R (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "A threshold equation for action potential initiation (Platkiewicz & Brette 2010)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We examined in models the influence of Na channel activation, inactivation, slow voltage-gated channels and synaptic conductances on spike threshold. \r\n\r\nWe propose a threshold equation which quantifies the contribution of all these mechanisms. \r\n\r\nIt provides an instantaneous time-varying value of the threshold, which applies to neurons with fluctuating inputs. \r\n...\r\nWe find that spike threshold depends logarithmically on Na channel density, and that Na channel inactivation and K channels can dynamically modulate it in an adaptive way: the threshold increases with membrane potential and after every action potential. \r\n\" See paper for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153660",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:32:10.93",
+ "ver_number": 4
+ },
+ "153697": {
+ "class_id": 19,
+ "created": "2014-04-17T10:41:42",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153697,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 127084,
+ "object_name": "Locking, mixed mode"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145602,
+ "object_name": "Brette R (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Phase locking in leaky integrate-and-fire model (Brette 2004)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"This shows the phase-locking structure of a LIF driven by a sinusoidal current. When the current crosses the threshold (a<3), the model almost always phase locks (in a measure-theoretical sense).\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153697",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:36:18.867",
+ "ver_number": 3
+ },
+ "153740": {
+ "class_id": 19,
+ "created": "2014-04-21T21:59:03",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 153740,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 153712,
+ "object_name": "Koon YL, Koh CG, Chiam KH (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Strategy for kinase transport by microtubules to nerve terminals (Koon et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was used in the computational study of the strategies of protein transport in the context of JNK (c-JUN NH2-terminal kinase) transport along microtubules to the terminals of neuronal cells. Diffusion governs the first strategy. In the second strategy, proteins of the JNK signaling cascade bind to scaffolds and the whole protein-scaffold cargo is transported by kinesin motors along microtubules. Using the results from the simulations, the two distinct strategies for transport were compared."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153740",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Koon, Yen Ling [koonyl at bii.a-star.edu.sg]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "koonyl@bii.a-star.edu.sg"
+ },
+ "ver_date": "2014-05-08T10:56:48",
+ "ver_number": 5
+ },
+ "153985": {
+ "class_id": 19,
+ "created": "2014-04-22T13:53:33",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153985,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145590,
+ "object_name": "Rossant C, Leijon S, Magnusson AK, Brette R (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Sensitivity of noisy neurons to coincident inputs (Rossant et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Two distant or coincident spikes are injected into a noisy balanced leaky integrate-and-fire neuron. The PSTH of the neuron in response to these inputs is calculated along with the extra number of spikes in the two cases. This number is higher for the coincident spikes, showing the sensitivity of a noisy neuron to coincident inputs.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153985",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:36:54.17",
+ "ver_number": 3
+ },
+ "153988": {
+ "class_id": 19,
+ "created": "2014-04-24T10:15:57",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153988,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 14141,
+ "object_name": "Diesmann M, Gewaltig MO, Aertsen A (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Stable propagation of synchronous spiking in cortical neural networks (Diesmann et al 1999)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nHere we show that precisely synchronized action\r\npotentials can propagate within a model of cortical network activity\r\nthat recapitulates many of the features of biological systems. An\r\nattractor, yielding a stable spiking precision in the (sub)millisecond\r\nrange, governs the dynamics of synchronization. Our results indicate\r\nthat a combinatorial neural code, based on rapid associations of\r\ngroups of neurons co-ordinating their activity at the single spike\r\nlevel, is possible within a cortical-like network.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153988",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T17:37:11.917",
+ "ver_number": 3
+ },
+ "153998": {
+ "class_id": 19,
+ "created": "2014-04-28T11:15:02",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 153998,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145596,
+ "object_name": "Platkiewicz J, Brette R (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Impact of fast Na channel inact. on AP threshold & synaptic integration (Platkiewicz & Brette 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Slope-threshold relationship with noisy inputs, in the adaptive threshold model."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/153998",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:35:46.88",
+ "ver_number": 2
+ },
+ "154096": {
+ "class_id": 19,
+ "created": "2014-05-03T12:10:27",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 154096,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 147189,
+ "object_name": "Rowan, Mark [m.s.rowan at cs.bham.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154063,
+ "object_name": "Rowan MS, Neymotin SA, Lytton WW (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Electrostimulation to reduce synaptic scaling driven progression of Alzheimers (Rowan et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\n\r\nAs cells die and synapses lose their drive, remaining cells suffer an initial decrease in activity.\r\n\r\nNeuronal homeostatic synaptic scaling then provides a feedback mechanism to restore activity.\r\n...\r\nThe scaling mechanism increases the firing rates of remaining cells in the network to compensate for decreases in network activity.\r\n\r\nHowever, this effect can itself become a pathology, ...\r\n\r\nHere, we present a mechanistic explanation of how directed brain stimulation might be expected to slow AD progression based on computational simulations in a 470-neuron biomimetic model of a neocortical column.\r\n...\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154096",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T13:55:20.47",
+ "ver_number": 10
+ },
+ "154192": {
+ "class_id": 19,
+ "created": "2014-05-07T10:59:00",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 154192,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 154779,
+ "object_name": "McFarland, James M [jmmcfarl at umd.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154097,
+ "object_name": "McFarland JM, Cui Y, Butts DA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Nonlinear neuronal computation based on physiologically plausible inputs (McFarland et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nHere we present an approach for modeling sensory processing, termed the Nonlinear Input\r\nModel (NIM), which is based on the hypothesis that the dominant nonlinearities imposed by physiological mechanisms arise\r\nfrom rectification of a neuron\u2019s inputs. Incorporating such \u2018upstream nonlinearities\u2019 within the standard linear-nonlinear (LN)\r\ncascade modeling structure implicitly allows for the identification of multiple stimulus features driving a neuron\u2019s response,\r\nwhich become directly interpretable as either excitatory or inhibitory.\r\n\r\nBecause its form is analogous to an integrate-and-fire\r\nneuron receiving excitatory and inhibitory inputs, model fitting can be guided by prior knowledge about the inputs to a\r\ngiven neuron, and elements of the resulting model can often result in specific physiological predictions.\r\n\r\nFurthermore, by\r\nproviding an explicit probabilistic model with a relatively simple nonlinear structure, its parameters can be efficiently\r\noptimized and appropriately regularized. ... \u201d"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154192",
+ "ver_date": "2014-06-02T11:53:37",
+ "ver_number": 5
+ },
+ "154198": {
+ "class_id": 19,
+ "created": "2014-05-09T14:13:23",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 154198,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154043,
+ "object_name": "St\u00fcrzl W, Kempter R, van Hemmen JL (2000)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Theory of arachnid prey localization (Sturzl et al. 2000)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Sand scorpions and many other arachnids locate their prey through highly sensitive slit sensilla at the tips (tarsi) of their eight legs. This sensor array responds to vibrations with stimulus-locked action potentials encoding the target direction. We present a neuronal model to account for stimulus angle determination using a population of second-order neurons, each receiving excitatory input from one tarsus and inhibition from a triad opposite to it. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154198",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:37:31.2",
+ "ver_number": 3
+ },
+ "154288": {
+ "class_id": 19,
+ "created": "2014-05-09T15:25:11",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 154288,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154201,
+ "object_name": "G\u00fctig R, Sompolinsky H (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Time-warp-invariant neuronal processing (Gutig & Sompolinsky 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, we report that time-warp-invariant neuronal processing can be subserved by the shunting action of synaptic conductances that automatically rescales the effective integration time of postsynaptic neurons.\r\n\r\nWe propose a novel spike-based learning rule for synaptic conductances that adjusts the degree of synaptic shunting to the temporal processing requirements of a given task.\r\n\r\nApplying this general biophysical mechanism to the example of speech processing, we propose a neuronal network model for time-warp-invariant word discrimination and demonstrate its excellent performance on a standard benchmark speech-recognition task.\r\n\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154288",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:37:49.54",
+ "ver_number": 3
+ },
+ "154293": {
+ "class_id": 19,
+ "created": "2014-05-09T16:13:22",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 154293,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 150219,
+ "object_name": "Reliability"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 80242,
+ "object_name": "Brette R, Guigon E (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Reliability of spike timing is a general property of spiking model neurons (Brette & Guigon 2003)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we show, through simulations and theoretical\r\nconsiderations, that for a general class of spiking neuron models,\r\nwhich includes, in particular, the leaky integrate-and-fire model as\r\nwell as nonlinear spiking models, aperiodic currents, contrary to\r\nperiodic currents, induce reproducible responses, which are stable\r\nunder noise, change in initial conditions and deterministic\r\nperturbations of the input. We provide a theoretical explanation for\r\naperiodic currents that cross the threshold.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154293",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2017-07-28T17:36:38.22",
+ "ver_number": 3
+ },
+ "154348": {
+ "class_id": 19,
+ "created": "2014-05-09T17:30:32",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 154348,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 245799,
+ "object_name": "Whisking"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 146579,
+ "object_name": "Kremer Y, L\u00e9ger JF, Goodman D, Brette R, Bourdieu L (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Late emergence of the whisker direction selectivity map in rat barrel cortex (Kremer et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We discovered that the emergence of a direction map in rat barrel cortex occurs long after all known critical periods in the somatosensory system.\r\n\r\nThis map is remarkably specific, taking a pinwheel-like form centered near the barrel center and aligned to the barrel cortex somatotopy.\r\n\r\nWe suggest that this map may arise from intracortical mechanisms and demonstrate by simulation that the combination of spike-timing-dependent plasticity at synapses between layer 4 and layer 2/3 and realistic pad stimulation is sufficient to produce such a map.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154348",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2018-10-18T17:35:31.803",
+ "ver_number": 4
+ },
+ "154732": {
+ "class_id": 19,
+ "created": "2014-05-19T11:08:09",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 154732,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33787,
+ "object_name": "Graham, Bruce [B.Graham at cs.stir.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154733,
+ "object_name": "Graham BP, Saudargiene A, Cobb S (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Spine head calcium in a CA1 pyramidal cell model (Graham et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We use a computational model of a hippocampal CA1 pyramidal cell to demonstrate that spine\r\nhead calcium provides an instantaneous readout at each synapse of the postsynaptic weighted\r\nsum of all presynaptic activity impinging on the cell. The form of the readout is equivalent\r\nto the functions of weighted, summed inputs used in neural network learning rules. Within a\r\ndendritic layer, peak spine head calcium levels are either a linear or sigmoidal function of\r\nthe number of coactive synapses, with nonlinearity depending on the ability of voltage spread\r\nin the dendrites to reach calcium spike threshold. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154732",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "CA1 pyramidal cell"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "simPFid": {
+ "attr_id": 488,
+ "value": 493
+ },
+ "ver_date": "2022-05-27T11:16:53.72",
+ "ver_number": 11
+ },
+ "154739": {
+ "class_id": 19,
+ "created": "2014-05-21T05:25:53",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 154739,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 154743,
+ "object_name": "Visser, Sid [sid.visser at nottingham.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154744,
+ "object_name": "Visser S, Van Gils SA (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 154742,
+ "object_name": "Norns - Neural Net Studio"
+ }
+ ]
+ },
+ "name": "Norns - Neural Network Studio (Visser & Van Gils 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Norns - Neural Network Studio is a software package for designing, simulation and analyzing networks of spiking neurons. It consists of three parts:\r\n\r\n1. \"Urd\": a Matlab frontend with high-level functions for quickly defining networks\r\n2. \"Verdandi\": an optimized C++ simulation environment which runs the simulation defined by Urd\r\n3. \"Skuld\": an advanced Matlab graphical user interface (GUI) for visual inspection of simulated data."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154739",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Visser, Sid [sid.visser@nottingham.ac.uk]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Leaky Integrate-and-Fire neuron; Izhikevich neuron"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Norns - Neural Net Studio"
+ },
+ "ver_date": "2016-07-20T10:59:17.19",
+ "ver_number": 8
+ },
+ "154769": {
+ "class_id": 19,
+ "created": "2014-05-30T16:35:16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 154769,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154353,
+ "object_name": "Vo T, Bertram R, Tabak J, Wechselberger M (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Mixed mode oscillations as a mechanism for pseudo-plateau bursting (Vo et al. 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We combine bifurcation analysis with the theory of canard-induced mixed mode oscillations to investigate the dynamics of a novel form of bursting. This bursting oscillation, which arises from a model of the electrical activity of a pituitary cell, is characterized by small impulses or spikes riding on top of an elevated voltage plateau. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154769",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2014-06-06T17:43:56",
+ "ver_number": 3
+ },
+ "154770": {
+ "class_id": 19,
+ "created": "2014-05-31T03:10:14",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 154770,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 154777,
+ "object_name": "Cohen, Michael X [mikexcohen at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154776,
+ "object_name": "Cohen MX (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Input strength and time-varying oscillation peak frequency (Cohen MX 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The purpose of this paper is to argue that a single neural functional principle\u2014temporal fluctuations in oscillation peak frequency (\u201cfrequency sliding\u201d)\u2014can be used as a common analysis approach to bridge multiple scales within neuroscience. The code provided here recreates the network models used to demonstrate changes in peak oscillation frequency as a function of static and time-varying input strength, and also shows how correlated frequency sliding can be used to identify functional connectivity between two networks."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154770",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Cohen, Michael X [mikexcohen at gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "adaptive exponential"
+ },
+ "ver_date": "2017-07-28T13:54:19.363",
+ "ver_number": 14
+ },
+ "154871": {
+ "class_id": 19,
+ "created": "2014-06-06T17:26:18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 154871,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154849,
+ "object_name": "Teka W, Tabak J, Bertram R (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "The relationship between two fast/slow analysis techniques for bursting oscill. (Teka et al. 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Bursting oscillations in excitable systems reflect multi-timescale dynamics. \r\n\r\nThese oscillations have\r\noften been studied in mathematical models by splitting the equations into fast and slow\r\nsubsystems.\r\n\r\nTypically, one treats the slow variables as parameters of the fast subsystem and studies\r\nthe bifurcation structure of this subsystem.\r\n\r\nThis has key features such as a z-curve (stationary\r\nbranch) and a Hopf bifurcation that gives rise to a branch of periodic spiking solutions.\r\n\r\nIn models\r\nof bursting in pituitary cells, we have recently used a different approach that focuses on the\r\ndynamics of the slow subsystem.\r\n\r\nCharacteristic features of this approach are folded node\r\nsingularities and a critical manifold.\r\n\u2026\r\n We find that the z-curve and Hopf bifurcation of the twofast/\r\none-slow decomposition are closely related to the voltage nullcline and folded node singularity\r\nof the one-fast/two-slow decomposition, respectively. They become identical in the double singular\r\nlimit in which voltage is infinitely fast and calcium is infinitely slow.\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154871",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2014-06-06T17:46:16",
+ "ver_number": 6
+ },
+ "154872": {
+ "class_id": 19,
+ "created": "2014-06-07T15:12:27",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 154872,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155858,
+ "object_name": "McDougal RA, Morse TM, Hines ML, Shepherd GM (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "ModelView: online structural analysis of computational models (McDougal et al. 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nTo aid users, we have developed ModelView, a\r\nweb application for NEURON models in ModelDB that presents a graphical view of\r\nmodel structure augmented with contextual information. Web presentation provides\r\na rich, simulator-independent environment for interacting with graphs. The necessary\r\ndata is generated by combining manual curation, text-mining the source code, querying\r\nModelDB, and simulator introspection. ... With this\r\ntool, researchers can examine the structure of hundreds of models in ModelDB in a\r\nstandardized presentation without installing any software, downloading the model, or\r\nreading model source code.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154872",
+ "ver_date": "2016-06-03T13:36:41.547",
+ "ver_number": 9
+ },
+ "154927": {
+ "class_id": 19,
+ "created": "2014-06-09T11:41:45",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 154927,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 154777,
+ "object_name": "Cohen, Michael X [mikexcohen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154835,
+ "object_name": "Cohen MX (2014)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Analyzing neural time series data theory and practice (Cohen 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"This book offers a comprehensive guide to the theory and practice of analyzing electrical brain signals. It explains the conceptual, mathematical, and implementational (via Matlab programming) aspects of time-, time-frequency- and synchronization-based analyses of magnetoencephalography (MEG), electroencephalography (EEG), and local field potential (LFP) recordings from humans and nonhuman animals.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154927",
+ "ver_date": "2017-07-25T17:08:19.73",
+ "ver_number": 5
+ },
+ "154955": {
+ "class_id": 19,
+ "created": "2014-06-10T14:28:30",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 154955,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154930,
+ "object_name": "Vo T, Tabak J, Bertram R, Wechselberger M (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Understanding how fast activating K+ channels promote bursting in pituitary cells (Vo et al 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nExperimental\r\nobservations have shown ... that fast-activating\r\nvoltage- and calcium-dependent potassium (BK) current\r\ntends to promote bursting in pituitary cells.\r\n\r\nThis burst promoting\r\neffect requires fast activation of the BK current,\r\notherwise it is inhibitory to bursting. In this work, we analyze\r\na pituitary cell model in order to answer the question\r\nof why the BK activation must be fast to promote bursting.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154955",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2014-06-10T14:41:53",
+ "ver_number": 1
+ },
+ "154967": {
+ "citation": {
+ "attr_id": 391,
+ "value": "23516346"
+ },
+ "class_id": 19,
+ "created": "2014-06-12T14:25:29",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 154967,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154972,
+ "object_name": "Kim B, Hawes SL, Gillani F, Wallace LJ, Blackwell KT (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 139757,
+ "object_name": "NeuroRD"
+ }
+ ]
+ },
+ "name": "Gq coupled signaling pathways involved in striatal synaptic plasticity (Kim et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of Gq coupled signaling pathways underlying synaptic plasticity in striatal medium spiny projection neurons. Reactions and diffusion are implemented stochastically in a dendrite with one or more diffusionally coupled spines. Simulations demonstrate that theta burst stimulation, which produces LTP, increases the ratio of PKC:2AG as compared to 20 Hz stimulation, which produces LTD."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154967",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "avrama@gmu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 184,
+ "object_name": "mGluR1"
+ }
+ ]
+ },
+ "ver_date": "2014-06-13T14:58:18",
+ "ver_number": 6
+ },
+ "154968": {
+ "citation": {
+ "attr_id": 391,
+ "value": "22346744"
+ },
+ "class_id": 19,
+ "created": "2014-06-12T15:22:13",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 154968,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 150896,
+ "object_name": "Oliveira RF, Kim M, Blackwell KT (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 139757,
+ "object_name": "NeuroRD"
+ }
+ ]
+ },
+ "name": "Dopamine activation of signaling pathways in a medium spiny projection neuron (Oliveira et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Large scale stochastic reaction-diffusion model of signaling pathways in a medium spiny projection neuron dendrite with spines to investigate whether the critical function of anchoring is to locate PKA near the cAMP that activates it or near its targets, such as AMPA receptors located in the post-synaptic density. Simulations, implemented in NeuroRD, show that PKA colocalization with adenylate cyclase, either in the spine head or in the dendrite, leads to greater phosphorylation of DARPP-32 Thr34 and AMPA receptor GluA1 Ser845 than when PKA is anchored away from adenylate cyclase."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/154968",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "avrama@gmu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ }
+ ]
+ },
+ "ver_date": "2014-07-08T10:31:17",
+ "ver_number": 12
+ },
+ "155057": {
+ "class_id": 19,
+ "created": "2014-06-16T14:45:05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 155057,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155061,
+ "object_name": "Papoutsi, Athanasia [athpapoutsi at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155060,
+ "object_name": "Papoutsi A, Sidiropoulou K, Cutsuridis V, Poirazi P (2013)"
+ },
+ {
+ "object_id": 155062,
+ "object_name": "Papoutsi A, Sidiropoulou K, Poirazi P (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "L5 PFC microcircuit used to study persistent activity (Papoutsi et al. 2014, 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using a heavily constrained biophysical model of a L5 PFC microcircuit we investigate the mechanisms that underlie persistent activity emergence (ON) and termination (OFF) and search for the minimum network size required for expressing these states within physiological regimes."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155057",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Papoutsi, Athanasia [athpapoutsi@gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2014-06-23T16:04:47",
+ "ver_number": 13
+ },
+ "155130": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A neural mass model based on single cell dynamics to model pathophysiology, Zandt et al. 2014, Journal of Computational Neuroscience"
+ },
+ "class_id": 19,
+ "created": "2014-06-20T16:56:57",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 155130,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139269,
+ "object_name": "Zandt, Bas-Jan [Bas-Jan.Zandt at biomed.uib.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155154,
+ "object_name": "Zandt BJ, Visser S, van Putten MJ, Ten Haken B (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 154742,
+ "object_name": "Norns - Neural Net Studio"
+ }
+ ]
+ },
+ "name": "Neural mass model based on single cell dynamics to model pathophysiology (Zandt et al 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model code as described in \"A neural mass model based on single cell dynamics to model pathophysiology, Zandt et al. 2014, Journal of Computational Neuroscience\"\r\n\r\nA Neural mass model (NMM) derived from single cell dynamics in a bottom up approach. Mean and standard deviation of the firing rates in the populations are calculated. The sigmoid is derived from the single cell FI-curve, allowing for easy implementation of pathological conditions.\r\n\r\nNMM is compared with a detailed spiking network model consisting of HH neurons.\r\n\r\nNMM code in Matlab. The network model is simulated using Norns (ModelDB # 154739)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155130",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Neural mass model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "b.zandt@utwente.nl"
+ },
+ "ver_date": "2014-06-24T12:04:32",
+ "ver_number": 7
+ },
+ "155131": {
+ "citation": {
+ "attr_id": 391,
+ "value": "doi: 10.12688/f1000research.2-88.v2"
+ },
+ "class_id": 19,
+ "created": "2014-06-21T03:59:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 112842,
+ "object_name": "Kv4.2 KCND2"
+ },
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122327,
+ "object_name": "Kv1.2 KCNA2"
+ },
+ {
+ "object_id": 122803,
+ "object_name": "Kv4.3 KCND3"
+ },
+ {
+ "object_id": 122804,
+ "object_name": "Kv1.4 KCNA4"
+ },
+ {
+ "object_id": 122805,
+ "object_name": "Kv1.3 KCNA3"
+ },
+ {
+ "object_id": 122806,
+ "object_name": "Kv1.5 KCNA5"
+ },
+ {
+ "object_id": 122808,
+ "object_name": "Kv3.3 KCNC3"
+ },
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ },
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122811,
+ "object_name": "Cav3.3 CACNA1I"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122813,
+ "object_name": "Cav1.1 CACNA1S"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122815,
+ "object_name": "KCa2.1 KCNN1"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ },
+ {
+ "object_id": 122817,
+ "object_name": "Kv3.1 KCNC1"
+ },
+ {
+ "object_id": 122818,
+ "object_name": "HCN Cnga1"
+ },
+ {
+ "object_id": 122819,
+ "object_name": "Cav2.1 CACNA1A"
+ },
+ {
+ "object_id": 122820,
+ "object_name": "Cav2.2 CACNA1B"
+ },
+ {
+ "object_id": 122821,
+ "object_name": "KCa2.2 KCNN2"
+ },
+ {
+ "object_id": 122822,
+ "object_name": "Kv1.9 Kv7.1 KCNQ1"
+ },
+ {
+ "object_id": 122824,
+ "object_name": "IRK"
+ },
+ {
+ "object_id": 122826,
+ "object_name": "NR2A GRIN2A"
+ },
+ {
+ "object_id": 122827,
+ "object_name": "NR2B GRIN2B"
+ },
+ {
+ "object_id": 123580,
+ "object_name": "Kv3.4 KCNC4"
+ },
+ {
+ "object_id": 136317,
+ "object_name": "Kv4.1 KCND1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 155131,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155721,
+ "object_name": "Schumann, Johann [johann.schumann at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155132,
+ "object_name": "Scheler G (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Learning intrinsic excitability in Medium Spiny Neurons (Scheler 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We present an unsupervised, local activation-dependent learning rule for intrinsic plasticity (IP) which affects the composition of ion channel conductances for single neurons in a use-dependent way.\r\n\r\nWe use a single-compartment conductance-based model for medium spiny striatal neurons in order to show the effects of parameterization of individual ion channels on the neuronal membrane potential-curent relationship (activation function).\r\n\r\nWe show that parameter changes within the physiological ranges are sufficient to create an ensemble of neurons with significantly different activation functions.\r\n\r\n...\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155131",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Intrinsic Excitability"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Schumann, Johann johann.schumann@gmail.com"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Medium Spiny neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gscheler@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2014-07-07T14:44:05",
+ "ver_number": 10
+ },
+ "155157": {
+ "class_id": 19,
+ "created": "2014-06-23T16:56:22",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 155157,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155156,
+ "object_name": "Kaplan BA, Lansner A (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Self-organized olfactory pattern recognition (Kaplan & Lansner 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ },
+ {
+ "object_id": 269,
+ "object_name": "Piriform cortex anterior pyramidal layer II GLU cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 153283,
+ "object_name": "Olfactory bulb main interneuron granule TC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nWe present a large-scale network model with single and multi-compartmental Hodgkin\u2013Huxley type model neurons representing olfactory receptor neurons (ORNs) in the epithelium, periglomerular cells, mitral/tufted cells and granule cells in the olfactory bulb (OB), and three types of cortical cells in the piriform cortex (PC).\r\n\r\nOdor patterns are calculated based on affinities between ORNs and odor stimuli derived from physico-chemical descriptors of behaviorally relevant real-world odorants.\r\n...\r\nThe PC was implemented as a modular attractor network with a recurrent connectivity that was likewise organized through Hebbian\u2013Bayesian learning.\r\n\r\nWe demonstrate the functionality of the model in a one-sniff-learning and recognition task on a set of 50 odorants.\r\n\r\nFurthermore, we study its robustness against noise on the receptor level and its ability to perform concentration invariant odor recognition. Moreover, we investigate the pattern completion capabilities of the system and rivalry dynamics for odor mixtures.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155157",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115949,
+ "object_name": "Olfactory cortex"
+ },
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:15:13.94",
+ "ver_number": 7
+ },
+ "155565": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Dynamic mechanisms of neocortical focal seizure onset. Y. Wang, M. Goodfellow, P.N. Taylor, G. Baier. PLOS Computational Biology (2014)"
+ },
+ "class_id": 19,
+ "created": "2014-06-26T10:26:56",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 155565,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155567,
+ "object_name": "Wang, Yujiang [yujiang.wang at newcastle.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155566,
+ "object_name": "Wang Y, Goodfellow M, Taylor PN, Baier G (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A cortical sheet mesoscopic model for investigating focal seizure onset dynamics (Wang et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The model uses realistically coupled, discretised, Wilson-Cowan units to describe the spatio-temporal activity of a cortical sheet. This model has been used the investigate the dynamic onset mechanisms of focal seizures."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155565",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yujiang Wang "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yujiang.wang@newcastle.ac.uk"
+ },
+ "ver_date": "2014-06-27T13:05:01",
+ "ver_number": 9
+ },
+ "155568": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.ncbi.nlm.nih.gov/pubmed/24811867"
+ },
+ "class_id": 19,
+ "created": "2014-06-26T12:48:25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 155568,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155598,
+ "object_name": "Tejada, Julian [julian.tejada at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 155599,
+ "object_name": "Neurogenesis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154476,
+ "object_name": "Tejada J, Garcia-Cairasco N, Roque AC (2014)"
+ },
+ {
+ "object_id": 154558,
+ "object_name": "Tejada J, Arisi GM, Garc\u00eda-Cairasco N, Roque AC (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dentate gyrus network model (Tejada et al 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we adapted an existing computational model of the dentate gyrus (J Neurophysiol 93: 437-453, 2005) by replacing the reduced granule cell models with morphologically detailed models coming from (3D) reconstructions of mature cells.\r\n...\r\nDifferent fractions of the mature granule cell models were replaced by morphologically reconstructed models of newborn dentate granule cells from animals with PILO-induced Status Epilepticus, which have apical dendritic alterations and spine loss, and control animals, which do not have these alterations. \r\n\r\nThis complex arrangement of cells and processes allowed us to study the combined effect of mossy fiber sprouting, altered apical dendritic tree and dendritic spine loss in newborn granule cells on the excitability of the dentate gyrus model. \r\n\r\nOur simulations suggest that alterations in the apical dendritic tree and dendritic spine loss in newborn granule cells have opposing effects on the excitability of the dentate gyrus after Status Epilepticus. Apical dendritic alterations potentiate the increase of excitability provoked by mossy fiber sprouting while spine loss curtails this increase.\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155568",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Neurogenesis"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tejada, Julian "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "julian.tejada@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2022-12-16T10:53:51.667",
+ "ver_number": 15
+ },
+ "155601": {
+ "citation": {
+ "attr_id": 391,
+ "value": "24387588"
+ },
+ "class_id": 19,
+ "created": "2014-06-27T17:35:12",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 155601,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155669,
+ "object_name": "Proddutur A, Yu J, Elgammal FS, Santhakumar V (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Basket cell extrasynaptic inhibition modulates network oscillations (Proddutur et al., 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Among the rhythmic firing patterns observed in brain, gamma oscillations, which are involved in memory formation and retrieval, are generated by networks of fast-spiking basket cells (FS-BCs) with robust interconnectivity through fast GABA synapses. Recently, we identified presence of extrasynaptic tonic GABA currents in FS-BCs and showed that experimentally-induced seizures enhance extrasynaptic tonic GABA currents and render GABA reversal potential (EGABA) depolarizing (Yu et al., 2013). Extrasynaptic GABA currents are mediated by extra- and peri-synaptically located GABAARs and can contribute to synaptic decay kinetics. Additionally, shunting rather than hyperpolarizing EGABA has been shown to increase the frequency and reduce coherence of network oscillations. Using homogeneous networks of biophysically-based, multi-compartmental model FS-BCs, we examined how the presence of extrasynaptic GABA currents and the experimentally identified seizure-induced alterations in GABA currents and EGABA modify the frequency and coherence of network firing."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155601",
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "ExtrasynapticGABAa"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ap269@njit.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T12:42:38.03",
+ "ver_number": 13
+ },
+ "155602": {
+ "citation": {
+ "attr_id": 391,
+ "value": "23324316"
+ },
+ "class_id": 19,
+ "created": "2014-06-29T12:20:42",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 155602,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155603,
+ "object_name": "Yu J, Proddutur A, Elgammal FS, Ito T, Santhakumar V (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Status epilepticus alters dentate basket cell tonic inhibition (Yu J et al 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Status epilepticus (SE) leads to changes in dentate inhibitory neuronal networks and alters synaptic and tonic inhibition in granule cells. Recently, we identified that one week after pilocarpine-induced status epilepticus, dentate fast-spiking basket cells (FS-BCs), which underlie fast perisomatic inhibition, show two distinct changes in inhibition: (1) enhanced tonic currents (IGABA) and (2)depolarizing shift in GABA reversal (EGABA) following SE. These two changes can have opposing effects on neuronal inhibition with increases in tonic GABA conductance (gGABA) reducing excitability when the GABA currents are shunting (or hyperpolarizing) and potentially enhancing excitability when GABA currents are depolarizing. The following model is used to examine the post-SE changes in tonic GABA conductance, together with the depolarized GABA reversal potential modify FS-BC excitability and dentate network activity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155602",
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "Extrasynaptic GABAa"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ap269@njit.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T13:13:26.687",
+ "ver_number": 7
+ },
+ "155705": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Avella Gonzalez, O. J., Van Aerde, K. I., Mansvelder, H. D., Van Pelt, J., and Van Ooyen, A. (2014). Inter-network interactions: impact of connections between oscillatory neuronal networks on oscillation frequency and pattern. PloS ONE, in press."
+ },
+ "class_id": 19,
+ "created": "2014-06-30T14:52:10",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 155705,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155712,
+ "object_name": "Avella G. Oscar Javier [oscarjavella at gmail dot com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155711,
+ "object_name": "Avella Gonzalez OJ, van Aerde KI, Mansvelder HD, van Pelt J, van Ooyen A (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A two networks model of connectivity-dependent oscillatory activity (Avella OJ et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Activity in a cortical network may express a single oscillation frequency, alternate between two or more distinct frequencies, or continually express multiple frequencies. In addition, oscillation amplitude may fluctuate over time. Interactions between oscillatory networks may contribute, but their effects are poorly known. Here, we created a two model networks, one generating on its own a relatively slow frequency (slow network) and one generating a fast frequency (fast network). We chose the slow or the fast network as source network projecting feed-forward connections to the other, or target network, and systematically investigated how type and strength of inter-network connections affected target network activity. Our results strongly depended on three factors: the type of the relevant (main) connection, its strength and the amount of source synapses. For high inter-network connection strengths, we found that the source network could completely impose its rhythm on the target network. Interestingly, the slow network was more effective at imposing its rhythm on the fast network than the other way around. The strongest entrainment occurred when excitatory cells of the slow network projected to excitatory or inhibitory cells of the fast network. Just as observed in rat activity at the prefrontal cortex satisfies the behavior described above, such that together, our results suggest that input from other oscillating networks may markedly alter a network\u00e2\u20ac\u2122s frequency spectrum and may partly be responsible for the rich repertoire of temporal oscillation patterns observed in the brain."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155705",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Avella G. Oscar Javier [oscarjavella at gmail dot com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Excitatory/inhibitory single-compartments"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "oscarjavella@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2015-01-04T21:40:44",
+ "ver_number": 16
+ },
+ "155727": {
+ "class_id": 19,
+ "created": "2014-07-08T11:27:31",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 155727,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33804,
+ "object_name": "Gabbiani, F"
+ },
+ {
+ "object_id": 155728,
+ "object_name": "Trousdale, James [jamest212 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 157162,
+ "object_name": "Trousdale J, Carroll SR, Gabbiani F, Josic K (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Vertical System (VS) tangential cells network model (Trousdale et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 157238,
+ "object_name": "Fly vertical system tangential cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Network model of the VS tangential cell system, with 10 cells per hemisphere. Each cell is a two compartment model with one compartment for dendrites and one for the axon. The cells are coupled through axonal gap junctions. The code allows to simulate responses of the VS network to a variety of visual stimuli to investigate coding as a function of gap junction strength."
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Trousdale, James [jamest212 at gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "VS tangential cells of the fly"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T14:01:03.603",
+ "ver_number": 12
+ },
+ "155731": {
+ "class_id": 19,
+ "created": "2014-07-09T17:24:16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122819,
+ "object_name": "Cav2.1 CACNA1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 155731,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150636,
+ "object_name": "Anwar, Haroon [haroon.anwar at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156261,
+ "object_name": "Anwar H, Roome CJ, Nedelescu H, Chen W, Kuhn B, De Schutter E (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 144556,
+ "object_name": "STEPS"
+ }
+ ]
+ },
+ "name": "Calcium dynamics depend on dendritic diameters (Anwar et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... in dendrites there is a strong contribution of morphology because the peak calcium levels are strongly determined by the surface to volume ratio (SVR) of each branch, which is inversely related to branch diameter. In this study we explore the predicted variance of dendritic calcium concentrations due to local changes in dendrite diameter and how this is affected by the modeling approach used. We investigate this in a model of dendritic calcium spiking in different reconstructions of cerebellar Purkinje cells and in morphological analysis of neocortical and hippocampal pyramidal neurons. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155731",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "mslo, SK2"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "haroon.anwar@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2014-08-07T11:05:31",
+ "ver_number": 10
+ },
+ "155735": {
+ "class_id": 19,
+ "created": "2014-07-12T13:02:03",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 155735,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 169343,
+ "object_name": "Couto, Joao [jpcouto at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 137847,
+ "object_name": "Phase Response Curves"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169342,
+ "object_name": "Couto J, Linaro D, De Schutter E, Giugliano M (2015)"
+ },
+ {
+ "object_id": 169350,
+ "object_name": "Linaro D, Couto J, Giugliano M (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 169347,
+ "object_name": "LCG"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Phase response curves firing rate dependency of rat purkinje neurons in vitro (Couto et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON implementation of stochastic gating in the Khaliq-Raman Purkinje cell model.\r\n\r\nNEURON implementation of the De Schutter and Bower model of a Purkinje Cell.\r\n\r\nMatlab scripts to compute the Phase Response Curve (PRC).\r\n\r\nLCG configuration files to experimentally determine the PRC. \r\n\r\nIntegrate and Fire models (leaky and non-leaky) implemented in BRIAN to see the influence of the PRC in a network of unconnected neurons receiving sparse common input."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155735",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Couto, Joao [jpcouto at gmail.com]"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "LCG"
+ },
+ "ver_date": "2017-07-28T13:57:28.47",
+ "ver_number": 15
+ },
+ "155796": {
+ "citation": {
+ "attr_id": 391,
+ "value": "25012843"
+ },
+ "class_id": 19,
+ "created": "2014-07-16T03:16:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2397,
+ "object_name": "I Mixed"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92084,
+ "object_name": "Nav1.3 SCN3A"
+ },
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ },
+ {
+ "object_id": 92091,
+ "object_name": "Nav1.9 SCN11A SCN12A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 155796,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136025,
+ "object_name": "Chambers, Jordan [jordandchambers at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155798,
+ "object_name": "Chambers JD, Bornstein JC, Gwynne RM, Koussoulas K, Thomas EA (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "155796_1",
+ "name": "Fig 1"
+ },
+ {
+ "id": "155796_2",
+ "name": "Fig 2"
+ },
+ {
+ "id": "155796_3",
+ "name": "Fig 3"
+ }
+ ],
+ "default": "155796_1"
+ },
+ "name": "Intrinsic sensory neurons of the gut (Chambers et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 155799,
+ "object_name": "Gastrointestinal tract intrinsic sensory neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A conductance base model of intrinsic neurons neurons in the gastrointestinal tract. The model contains all the major voltage-gated and calcium-gated currents observed in these neurons. This model can reproduce physiological observations such as the response to multiple brief depolarizing currents, prolonged depolarizing currents and hyperpolarizing currents. This model can be used to predict how different currents influence the excitability of intrinsic sensory neurons in the gut."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155796",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Intrinsic sensory neuron in gastrointestinal tract"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jordandchambers@gmail.com"
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181568,
+ "object_name": "155796_2"
+ },
+ {
+ "object_id": 181571,
+ "object_name": "155796_3"
+ },
+ {
+ "object_id": 181576,
+ "object_name": "155796_1"
+ }
+ ]
+ },
+ "ver_date": "2015-01-04T21:41:11",
+ "ver_number": 7
+ },
+ "155856": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Teka W, Marinov TM, Santamaria F (2014) Neuronal Spike Timing Adaptation Described with a Fractional Leaky Integrate-and-Fire Model. PLoS Comput Biol 10(3): e1003526. doi:10.1371/journal.pcbi.1003526"
+ },
+ "class_id": 19,
+ "created": "2014-07-17T16:28:25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 155856,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155860,
+ "object_name": "Teka W, Marinov TM, Santamaria F (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Fractional leaky integrate-and-fire model (Teka et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 155861,
+ "object_name": "Abstract integrate-and-fire fractional leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed the Fractional Leaky Integrate-and-Fire model that can produce downward and upward spike time adaptions observed on pyramidal cells.The adaptation emerges from the fractional exponent of the voltage dynamics."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/155856",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I leak"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Teka, Wondimu"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Fractional Leaky Integrate-and-Fire"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wondimu.teka@utsa.edu"
+ },
+ "ver_date": "2014-07-18T11:55:00",
+ "ver_number": 4
+ },
+ "156027": {
+ "class_id": 19,
+ "created": "2014-07-24T17:07:14",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 156027,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 5054,
+ "object_name": "Rall W, Shepherd GM (1968)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "name": "Theoretical reconstrucion of field potentials and dendrodendritic synaptic...(Rall & Shepherd 1968)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This\r\nwas the first application of compartmental modeling using the Rall\r\napproach to brain neurons. It combined multicompartmental representation\r\nof a mitral cell and a granule cell with the first Hodgkin-Huxley-like\r\naction potential\r\nto model antidromic activation of the mitral cell, followed by synaptic\r\nexcitation of the granule cell and synaptic inhibition of the mitral cell.\r\nCombined with reconstruction of the field\r\npotentials generated around these neurons, and detailed comparisons with\r\nsingle\r\ncell recordings, it led to prediction of dendrodendritic interactions\r\nmediating\r\nself and lateral inhibition of the mitral cells by the granule cells. It\r\nhas been regarded as\r\nthe first computational model of a brain microcircuit (see also Shepherd\r\nand Brayton, 1979). Recreation of the model is pending."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156027",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:15:31.83",
+ "ver_number": 11
+ },
+ "156039": {
+ "class_id": 19,
+ "created": "2014-07-29T07:21:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 156039,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156071,
+ "object_name": "Allken, Vaneeda [vaneeda at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156042,
+ "object_name": "Allken V, Chepkoech JL, Einevoll GT, Halnes G (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "The subcellular distribution of T-type Ca2+ channels in LGN interneurons (Allken et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 140252,
+ "object_name": "Thalamus lateral geniculate nucleus interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...To study\r\nthe relationship between the (Ca2+ channel) T-distribution and several (LGN interneuron) IN response properties, we here\r\nrun a series of simulations where we vary the T-distribution in a multicompartmental IN\r\nmodel with a realistic morphology. We find that the somatic response to somatic\r\ncurrent injection is facilitated by a high T-channel density in the soma-region.\r\nConversely, a high T-channel density in the distal dendritic region is found to facilitate\r\ndendritic signalling in both the outward direction (increases the response in\r\ndistal dendrites to somatic input) and the inward direction (the soma responds stronger\r\nto distal synaptic input). ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156039",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Allken Vaneeda"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vaneeda@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181308,
+ "object_name": "156039"
+ }
+ ]
+ },
+ "ver_date": "2023-01-30T14:25:10.39",
+ "ver_number": 16
+ },
+ "156072": {
+ "citation": {
+ "attr_id": 391,
+ "value": "24863422"
+ },
+ "class_id": 19,
+ "created": "2014-07-30T07:43:12",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 156072,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156073,
+ "object_name": "Tomsett, Richard [r at autap.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156077,
+ "object_name": "Tomsett RJ, Ainsworth M, Thiele A, Sanayei M, Chen X, Gieselmann MA, Whittington MA, Cunningham MO, Kaiser M (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 156116,
+ "object_name": "VERTEX"
+ }
+ ]
+ },
+ "name": "Large-scale model of neocortical slice in vitro exhibiting persistent gamma (Tomsett et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model contains 15 neuron populations (8 excitatory, 7 inhibitory) arranged into 4 cortical layers (layer 1 empty, layers 2/3 combined). It produces a persistent gamma oscillation driven by layer 2/3. It runs using the VERTEX simulator, which is written in Matlab and is available from http://www.vertexsimulator.org"
+ },
+ "opensourcebrain": {
+ "value": "large-scale-model-of-neocortical-slice-in-vitro-exhibiting-persistent-gamma"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156072",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Gamma oscillations"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tomsett, Richard "
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "VERTEX"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "indigentmartian@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T13:03:36.127",
+ "ver_number": 9
+ },
+ "156120": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Avella Gonzalez OJ, van Aerde KI, van Elburg RAJ, Poil S-S, Mansvelder HD, et al. (2012) External Drive to Inhibitory Cells Induces Alternating Episodes of High- and Low-Amplitude Oscillations. PLoS Comput Biol 8(8): e1002666. doi:10.1371/journal.pcbi.1002666"
+ },
+ "class_id": 19,
+ "created": "2014-08-01T13:46:32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 156120,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155712,
+ "object_name": "Avella G. Oscar Javier [oscarjavella at gmail dot com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155757,
+ "object_name": "Avella Gonzalez OJ, van Aerde KI, van Elburg RA, Poil SS, Mansvelder HD, Linkenkaer-Hansen K, van Pelt J, van Ooyen A (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "156120",
+ "name": "ModelView"
+ }
+ ],
+ "default": "156120"
+ },
+ "name": "Single E-I oscillating network with amplitude modulation (Avella Gonzalez et al. 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Intriguingly, the amplitude of ongoing oscillations, such as measured in EEG recordings, fluctuates irregularly, with episodes of high amplitude (HAE) alternating with episodes of low amplitude (LAE).\r\n...\r\nHere, we show that transitions between HAE and LAE in the alpha/beta frequency band occur in a generic neuronal network model consisting of interconnected inhibitory (I) and excitatory (E) cells that are externally driven by sustained depolarizing currents(cholinergic input) and trains of action potentials that activate excitatory synapses. \r\n\r\nIn the model, action potentials onto inhibitory cells represent input from other brain areas and desynchronize network activity, being crucial for the emergence of amplitude fluctuations.\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156120",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "single compartment -conductance based cell-"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "oscarjavella@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181561,
+ "object_name": "156120"
+ }
+ ]
+ },
+ "ver_date": "2015-01-04T21:42:58",
+ "ver_number": 8
+ },
+ "156162": {
+ "class_id": 19,
+ "created": "2014-08-02T12:20:32",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 156162,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156161,
+ "object_name": "Friedrich P, Vella M, Guly\u00e1s AI, Freund TF, K\u00e1li S (2014)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Software (called Optimizer) for fitting neuronal models (Friedrich et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Our software, called Optimizer, implements a modular and extensible framework for\r\nthe optimization of neuronal models, and also features a graphical interface which\r\nmakes it easy for even non-expert users to handle many commonly occurring scenarios. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156162",
+ "ver_date": "2014-08-07T10:35:46",
+ "ver_number": 6
+ },
+ "156260": {
+ "citation": {
+ "attr_id": 391,
+ "value": "24304860"
+ },
+ "class_id": 19,
+ "created": "2014-08-06T17:04:08",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 156260,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ },
+ {
+ "object_id": 156778,
+ "object_name": "Damodaran, Sriraman [dsriraman at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156735,
+ "object_name": "Damodaran S, Evans RC, Blackwell KT (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Synchronicity of fast-spiking interneurons balances medium-spiny neurons (Damodaran et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This study investigates the role of feedforward and feedback inhibition in maintaining the balance between D1 and D2 MSNs of the striatum. The synchronized firing of FSIs are found to be critical in this mechanism and specifically the gap junction connections between FSIs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156260",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Damodaran, Sriraman \r\ndsriraman@gmail.com"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dsriraman@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2014-08-20T10:19:43",
+ "ver_number": 6
+ },
+ "156470": {
+ "class_id": 19,
+ "created": "2014-08-14T13:32:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 156470,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154858,
+ "object_name": "Teka W, Tabak J, Vo T, Wechselberger M, Bertram R (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "The dynamics underlying pseudo-plateau bursting in a pituitary cell model (Teka et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... pseudo-plateau bursts, are unlike bursts studied mathematically in neurons (plateau bursting) and the standard fast-slow analysis used for plateau bursting is of limited use. Using an alternative fast-slow analysis, with one fast and two slow variables, we show that pseudo-plateau bursting is a canard-induced mixed mode oscillation. ...\" See paper for other results."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156470",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2014-08-14T16:50:58",
+ "ver_number": 5
+ },
+ "156733": {
+ "class_id": 19,
+ "created": "2014-08-18T14:34:55",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 156733,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116577,
+ "object_name": "Solinas, Sergio [solinas at unipv.it]"
+ },
+ {
+ "object_id": 139758,
+ "object_name": "Roessert, Christian [christian.a at roessert.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167811,
+ "object_name": "R\u00f6ssert C, Solinas S, D'Angelo E, Dean P, Porrill J (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Information transmission in cerebellar granule cell models (Rossert et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this modeling study we analyse how electrophysiological\r\ngranule cell properties and spike sampling influence information coded\r\nby firing rate modulation, assuming no signal-related, i.e.,\r\nuncorrelated inhibitory feedback (open-loop mode). A detailed\r\none-compartment granule cell model was excited in simulation by either\r\ndirect current or mossy-fiber synaptic inputs. Vestibular signals were\r\nrepresented as tonic inputs to the flocculus modulated at frequencies\r\nup to 20 Hz (approximate upper frequency limit of vestibular-ocular\r\nreflex, VOR). Model outputs were assessed using estimates of both the\r\ntransfer function, and the fidelity of input-signal reconstruction\r\nmeasured as variance-accounted-for. The detailed granule cell model\r\nwith realistic mossy-fiber synaptic inputs could transmit infoarmation\r\nfaithfully and linearly in the frequency range of the\r\nvestibular-ocular reflex. ... \"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156733",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "christian.a@roessert.de"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2018-02-26T11:48:23.003",
+ "ver_number": 14
+ },
+ "156780": {
+ "class_id": 19,
+ "created": "2014-08-20T11:11:42",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 156780,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140733,
+ "object_name": "Hay, Etay [etay.hay at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167346,
+ "object_name": "Hay E, Segev I (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Microcircuits of L5 thick tufted pyramidal cells (Hay & Segev 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nWe simulated detailed conductance-based models of\r\nTTCs (Layer 5 thick tufted pyramidal cells) forming recurrent microcircuits that were interconnected as\r\nfound experimentally; the network was embedded in a realistic background\r\nsynaptic activity. \r\n\r\n...\r\nOur findings indicate that dendritic nonlinearities are pivotal in\r\ncontrolling the gain and the computational functions of TTCs microcircuits,\r\nwhich serve as a dominant output source for the neocortex.\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156780",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T11:35:35.987",
+ "ver_number": 21
+ },
+ "156781": {
+ "class_id": 19,
+ "created": "2014-08-21T10:22:41",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "id": 156781,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156785,
+ "object_name": "Choi H, Zhang L, Cembrowski MS, Sabottke CF, Markowitz AL, Butts DA, Kath WL, Singer JH, Riecke H (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Bursting and oscillations in RD1 Retina driven by AII Amacrine Neuron (Choi et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In many forms of retinal degeneration, photoreceptors die but inner retinal circuits remain intact. In the rd1 mouse, an established model for blinding retinal diseases, spontaneous activity in the coupled network of AII amacrine and ON cone bipolar cells leads to rhythmic bursting of ganglion cells. Since such activity could impair retinal and/or cortical responses to restored photoreceptor function, understanding its nature is important for developing treatments of retinal pathologies. Here we analyzed a compartmental model of the wild-type mouse AII amacrine cell to predict that the cell's intrinsic membrane properties, specifically, interacting fast Na and slow, M-type K conductances, would allow its membrane potential to oscillate when light-evoked excitatory synaptic inputs were withdrawn following photoreceptor degeneration. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156781",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Cembrowski, Mark [mcembrowski at gmail.com]\r\nChoi, Hannah [hannahchoi2014 at u.northwestern.edu]\r\nRiecke, Hermann [h-riecke at northwestern.edu]\r\nKath, William L [kath at northwestern.edu]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Retina AII amacrine neuron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2016-03-22T15:10:24.647",
+ "ver_number": 14
+ },
+ "156828": {
+ "class_id": 19,
+ "created": "2014-08-24T16:34:49",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 156828,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156119,
+ "object_name": "Simoes-de-Souza, Fabio [fabio.souza at ufabc.edu.br]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4675,
+ "object_name": "Bhalla US, Bower JM (1993)"
+ },
+ {
+ "object_id": 7136,
+ "object_name": "Woolf TB, Shepherd GM, Greer CA (1991)"
+ },
+ {
+ "object_id": 167668,
+ "object_name": "Sim\u00f5es-de-Souza FM, Antunes G, Roque AC (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Granule Cells of the Olfactory Bulb (Simoes_De_Souza et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 153283,
+ "object_name": "Olfactory bulb main interneuron granule TC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Electrical responses of three classes of granule cells of the olfactory bulb to synaptic activation in different dendritic locations. The constructed models were based on morphological detailed compartmental reconstructions of three granule cell classes of the olfactory bulb with active dendrites described by Bhalla and Bower (J. Neurophysiol. 69: 1948-1965, 1993) and dendritic spine distributions described by Woolf et al. (J. Neurosci. 11: 1837-1854, 1991). The computational studies with the model neurons showed that different quantities of spines have to be activated in each dendritic region to induce an action potential, which always was originated in the active terminal dendrites, independently of the location of the stimuli and the morphology of the dendritic tree."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156828",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Olfactory bulb granule cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fabio.souza@ufabc.edu.br"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:15:46.73",
+ "ver_number": 8
+ },
+ "156830": {
+ "class_id": 19,
+ "created": "2014-08-26T19:49:31",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 156830,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156833,
+ "object_name": "Makadia, Hirenkumar K [hiren.makadia at gmail.com]"
+ },
+ {
+ "object_id": 156834,
+ "object_name": "Anderson, Warren D [warren.anderson at jefferson.edu]"
+ },
+ {
+ "object_id": 156835,
+ "object_name": "Fey, Dirk [dirk.fey at ucd.ie]"
+ },
+ {
+ "object_id": 169243,
+ "object_name": "Vadigepalli, Rajanikanth [Rajanikanth.Vadigepalli at jefferson.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156831,
+ "object_name": "Makadia HK, Anderson WD, Fey D, Sauter T, Schwaber JS, Vadigepalli R (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Model of AngII signaling and membrane electrophysiology (Makadia, Anderson, Fey et al., 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed a novel multiscale model to bridge neuropeptide receptor-activated signaling pathway with membrane electrophysiology. \r\nThe model studies the effects of Angiotensin II (AngII) on neuronal excitability changes mediated by signaling dynamics and downstream\r\nphosphorylation of ion channels. The multiscale model was implemented as a set of ordinary differential equations solved using the ode15s\r\nsolver in Matlab (Mathworks, USA). The signaling reactions were modeled with either mass-action or Michaelis--Menten kinetics and ion\r\nchannel electrophysiology was modeled according to the Hodgkin-Huxley formalism. These models were initially validated against their\r\nrespective data domains independently and were integrated to develop a multiscale model of signaling and electrophysiology."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/156830",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hiren.makadia@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2017-02-23T11:06:21.433",
+ "ver_number": 21
+ },
+ "157157": {
+ "class_id": 19,
+ "created": "2014-09-02T02:08:45",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 157157,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 157159,
+ "object_name": "Saudargiene, Ausra [ausra.saudargiene at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 188652,
+ "object_name": "Saudargiene A, Cobb S, Graham BP (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: synaptic plasticity during theta cycles (Saudargiene et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ },
+ {
+ "object_id": 151329,
+ "object_name": "Hippocampus CA1 bistratified cell"
+ },
+ {
+ "object_id": 151330,
+ "object_name": "Hippocampus CA1 axo-axonic cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This NEURON code implements a microcircuit of CA1 pyramidal neuron and consists of a detailed model of CA1 pyramidal cell and four types of inhibitory interneurons (basket, bistratified, axoaxonic and oriens lacunosum-moleculare cells). Synaptic plasticity during theta cycles at a synapse in a single spine on the stratum radiatum dendrite of the CA1 pyramidal cell is modeled using a phenomenological model of synaptic plasticity (Graupner and Brunel, PNAS 109(20):3991-3996, 2012). \r\n\r\nThe code is adapted from the Poirazi CA1 pyramidal cell (ModelDB accession number 20212) \r\nand the Cutsuridis microcircuit model (ModelDB accession number 123815)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/157157",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Saudargiene, Ausra [ausra.saudargiene@gmail.com]"
+ },
+ "ver_date": "2022-05-27T11:37:39.797",
+ "ver_number": 12
+ },
+ "157339": {
+ "class_id": 19,
+ "created": "2014-09-09T08:35:33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 157339,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 170033,
+ "object_name": "Migliore, Rosanna [rosanna.migliore at cnr.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 170031,
+ "object_name": "Migliore M, De Simone G, Migliore R (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Effect of the initial synaptic state on the probability to induce LTP and LTD (Migliore et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "NEURON mod files from the paper: M. Migliore, et al. (2015). \r\n\r\nIn this paper, we investigate the possibility that the experimental protocols on synaptic plasticity may result in different consequences (e.g., LTD instead of LTP), according to the initial conditions of the stimulated synapses, and can generate confusing results. Using biophysical models of synaptic plasticity and hippocampal CA1 pyramidal neurons, we study how, why, and to what extent EPSPs observed at the soma after induction of LTP/LTD reflects the actual (local) synaptic state. The model and the results suggest a physiologically plausible explanation of why LTD induction is experimentally difficult, and they offer experimentally testable predictions on the stimulation protocols that may be more effective."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/157339",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Migliore, Rosanna [rosanna.migliore at cnr.it]"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Dendrite"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2015-03-10T11:34:02.61",
+ "ver_number": 34
+ },
+ "167414": {
+ "class_id": 19,
+ "created": "2014-09-16T11:22:16",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 167414,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 46840,
+ "object_name": "D'Angelo, Egidio [dangelo at unipv.it]"
+ },
+ {
+ "object_id": 150204,
+ "object_name": "Garrido, Jesus A [jesus.garrido at unipv.it]"
+ },
+ {
+ "object_id": 150226,
+ "object_name": "Luque, Niceto R. [nluque at ugr.es]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168595,
+ "object_name": "Casellato C, Antonietti A, Garrido JA, Carrillo RR, Luque NR, Ros E, Pedrocchi A, D'Angelo E (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150203,
+ "object_name": "EDLUT"
+ }
+ ]
+ },
+ "name": "Adaptive robotic control driven by a versatile spiking cerebellar network (Casellato et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We have coupled a realistic cerebellar spiking neural network (SNN) with a real robot and challenged it in multiple diverse sensorimotor tasks. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/167414",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Antonietti, Alberto [alberto.antonietti at polimi.it]\r\n"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T14:01:37.053",
+ "ver_number": 10
+ },
+ "167499": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Egger, Schmitt et al.: Robustness of sensory-evoked excitation is increased by layer 1 inhibitory inputs to distal apical dendrites (submitted)"
+ },
+ "class_id": 19,
+ "created": "2014-09-20T11:46:39",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 167499,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 167501,
+ "object_name": "Egger, Robert [robert.egger at nyumc.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245799,
+ "object_name": "Whisking"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185322,
+ "object_name": "Egger R, Schmitt AC, Wallace DJ, Sakmann B, Oberlaender M, Kerr JN (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Distal inhibitory control of sensory-evoked excitation (Egger, Schmitt et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of a cortical layer (L) 2 pyramidal neuron embedded in an anatomically realistic network of two barrel columns in rat vibrissal cortex. This model is used to investigate the effects of spatially and temporally specific inhibition from L1 inhibitory interneurons on the sensory-evoked subthreshold responses of the L2 pyramidal neuron, and can be used to create simulation results underlying Figures 3D, 4B, 4C and 4E from (Egger, Schmitt et al. 2015)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/167499",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Egger, Robert "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "robert.egger@tuebingen.mpg.de"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:35:53.08",
+ "ver_number": 12
+ },
+ "167638": {
+ "class_id": 19,
+ "created": "2014-09-24T17:29:51",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 167638,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168095,
+ "object_name": "Schneider CJ, Cuntz H, Soltesz I (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Generation of granule cell dendritic morphology (Schneider et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The following code was used to generate a complete population of 1.2 million granule cell dendritic morphologies within a realistic three-dimensional context. These generated dendritic morphologies match the known biological variability and context-dependence of morphological features."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/167638",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Schneider, Calvin "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "calvinjs@uci.edu"
+ },
+ "ver_date": "2014-10-24T15:05:58",
+ "ver_number": 4
+ },
+ "167694": {
+ "citation": {
+ "attr_id": 391,
+ "value": "24357611"
+ },
+ "class_id": 19,
+ "created": "2014-10-01T17:16:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 167694,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151406,
+ "object_name": "Behabadi, Bardia [bardiafb+mdb at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167695,
+ "object_name": "Behabadi BF, Mel BW (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Mechanisms underlying subunit independence in pyramidal neuron dendrites (Behabadi and Mel 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...Using a detailed compartmental model of a layer 5 pyramidal neuron, and an improved method for quantifying subunit independence that incorporates a more accurate model of dendritic integration, we first established that the output of each dendrite can be almost perfectly predicted by the intensity and spatial configuration of its own synaptic inputs, and is nearly invariant to the rate of bAP-mediated 'cross-talk' from other dendrites over a 100-fold range...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/167694",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "bardiafb+mdb@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2014-10-03T16:15:56",
+ "ver_number": 2
+ },
+ "167714": {
+ "biosimulations": {
+ "value": "modeldb-167714"
+ },
+ "class_id": 19,
+ "created": "2014-10-08T13:46:21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 167714,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 167716,
+ "object_name": "Spreading depression"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167721,
+ "object_name": "H\u00fcbel N, Dahlem MA (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Hodgkin-Huxley with dynamic ion concentrations (Hubel and Dahlem, 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The classical Hodgkin--Huxley (HH) model neglects the time-dependence of ion concentrations in spiking dynamics. The dynamics is therefore limited to a time scale of milliseconds, which is determined by the membrane capacitance multiplied by the resistance of the ion channels, and by the gating time constants. This model includes slow dynamics in an extended HH framework that simulates time-dependent ion concentrations, pumps, and buffers. Fluxes across the neuronal membrane change intra- and extracellular ion concentrations, whereby the latter can also change through contact to reservoirs in the surroundings. The dynamics on three distinct slow times scales is determined by the cell volume-to-surface-area ratio and the membrane permeability (seconds), the buffer time constants (tens of seconds), and the slower backward buffering (minutes to hours). The modulatory dynamics and the newly emerging excitable dynamics corresponds to pathological conditions observed in epileptiform burst activity, and spreading depression in migraine aura and stroke, respectively."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/167714",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spreading depression"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "markus.dahlem@gmail.com"
+ },
+ "ver_date": "2014-10-09T10:31:02",
+ "ver_number": 6
+ },
+ "167715": {
+ "citation": {
+ "attr_id": 391,
+ "value": "24860703"
+ },
+ "class_id": 19,
+ "created": "2014-10-08T15:31:52",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 167715,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167720,
+ "object_name": "Dahlem MA, Schumacher J, H\u00fcbel N (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Spreading depression model for FHM3 with Nav1.1 mutation (Dahlem et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Familial hemiplegic migraine (FHM) is a rare subtype of migraine with aura. A mutation causing FHM type 3 (FHM3) has been identified in SCN1A encoding the Nav1.1 Na+ channel. This genetic defect affects the inactivation gate. The code describes an extended Hodgkin-Huxley framework with dynamic ion concentrations in a wilde-type and mutant form.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/167715",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spreading depression"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "markus.dahlem@gmail.com"
+ },
+ "ver_date": "2014-10-08T22:12:54",
+ "ver_number": 3
+ },
+ "167772": {
+ "class_id": 19,
+ "created": "2014-10-09T10:30:44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 167772,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144508,
+ "object_name": "Orio, Patricio [patricio.orio at uv.cl]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167809,
+ "object_name": "Pezo D, Soudry D, Orio P (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Comparison of DA-based Stochastic Algorithms (Pezo et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nHere we review and test a set of the most recently published DA (Langevin-based Diffusion Approximation) implementations (Goldwyn et al., 2011; Linaro et al., 2011; Dangerfield et al., 2012; Orio and Soudry, 2012; Schmandt and Gal\u00e1n, 2012; G\u00fcler, 2013; Huang et al., 2013a), comparing all of them in a set of numerical simulations that asses numerical accuracy and computational efficiency on three different models: the original Hodgkin and Huxley model, a model with faster sodium channels, and a multi-compartmental model inspired in granular cells.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/167772",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Stochastic simulation"
+ },
+ "ver_date": "2017-02-15T14:02:09.39",
+ "ver_number": 12
+ },
+ "167875": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Clopath C*, Badura A*, de Zeuuw CI, Brunel N. A cerebellar learning model of vestibulo-ocular reflex adaptation in wild-type and mutant mice. J. of Neurosci. 34(21): 7203-7215, 2014"
+ },
+ "class_id": 19,
+ "created": "2014-10-16T12:36:16",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 167875,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144567,
+ "object_name": "Clopath, Claudia [c.clopath at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167876,
+ "object_name": "Clopath C, Badura A, De Zeeuw CI, Brunel N (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Vestibulo-Ocular Reflex model in Matlab (Clopath at al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...\r\nWe then\r\nintroduce a minimal model that consists of learning at the parallel\r\nfibers to Purkinje cells with the help of the climbing\r\nfibers. Although the minimal model reproduces the behavior of the\r\nwild-type animals and is analytically tractable, it fails at\r\nreproducing the behavior of mutant mice and the electrophysiology\r\ndata. Therefore, we build a detailed model involving plasticity at the\r\nparallel fibers to Purkinje cells' synapse guided by climbing fibers,\r\nfeedforward inhibition of Purkinje cells, and plasticity at the mossy\r\nfiber to vestibular nuclei neuron synapse. The detailed model\r\nreproduces both the behavioral and electrophysiological data of both\r\nthe wild-type and mutant mice and allows for experimentally testable\r\npredictions.\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/167875",
+ "other_type": {
+ "attr_id": 305,
+ "value": "Vestibulo-Ocular Reflex"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "c.clopath@imperial.ac.uk"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2014-10-17T10:50:34",
+ "ver_number": 6
+ },
+ "168143": {
+ "class_id": 19,
+ "created": "2014-10-27T06:59:20",
+ "gitrepo": false,
+ "id": 168143,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 126348,
+ "object_name": "Nakano, Takashi [nakano.takashi at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180792,
+ "object_name": "Nakano T, Otsuka M, Yoshimoto J, Doya K (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "A spiking neural network model of model-free reinforcement learning (Nakano et al 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Spiking neural\r\nnetworks provide a theoretically grounded means to test computational\r\nhypotheses on neurally plausible algorithms of reinforcement learning\r\nthrough numerical simulation.\r\n\r\n...\r\nIn this work, we use a spiking neural network model to approximate the\r\nfree energy of a restricted Boltzmann machine and apply it to the\r\nsolution of PORL (partially observable reinforcement learning)\r\nproblems with high-dimensional observations.\r\n... The way spiking neural networks handle PORL problems may provide a glimpse into the underlying laws of neural information processing which can only be discovered through such a top-down approach. \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168143",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nakano.takashi@gmail.com"
+ },
+ "ver_date": "2015-03-09T10:51:41.953",
+ "ver_number": 5
+ },
+ "168148": {
+ "class_id": 19,
+ "created": "2014-10-29T13:14:58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2397,
+ "object_name": "I Mixed"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 112844,
+ "object_name": "I Q"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168148,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 168308,
+ "object_name": "Stadler, Konstantin [konstantin.stadler at ntnu.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168170,
+ "object_name": "Stadler K, Bierwirth C, Stoenica L, Battefeld A, Reetz O, Mix E, Schuchmann S, Velmans T, Rosenberger K, Br\u00e4uer AU, Lehnardt S, Nitsch R, Budt M, Wolff T, Kole MH, Strauss U (2014)"
+ },
+ {
+ "object_id": 168171,
+ "object_name": "Reetz O, Stadler K, Strauss U (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "168148",
+ "name": "ModelView"
+ }
+ ],
+ "default": "168148"
+ },
+ "name": "Firing neocortical layer V pyramidal neuron (Reetz et al. 2014; Stadler et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neocortical Layer V model with firing behaviour adjusted to in vitro\r\nobservations. The model was used to investigate the effects of IFN and\r\nPKC on the excitability of neurons (Stadler et al 2014, Reetz et al.\r\n2014). The model contains new channel simulations for HCN1, HCN2 and the\r\nbig calcium dependent potassium channel BK."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168148",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Stadler, Konstantin (konstantin.stadler at ntnu.no)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "konstantin.stadler@ntnu.no"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-03-18T10:11:35.57",
+ "ver_number": 22
+ },
+ "168310": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.ncbi.nlm.nih.gov/pubmed/24550786"
+ },
+ "class_id": 19,
+ "created": "2014-10-31T06:53:19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168310,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144090,
+ "object_name": "Sidiropoulou, Kyriaki [sidirop at imbb.forth.gr]"
+ },
+ {
+ "object_id": 168311,
+ "object_name": "Konstantoudaki, Xanthippi [xeniakons at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167379,
+ "object_name": "Konstantoudaki X, Papoutsi A, Chalkiadaki K, Poirazi P, Sidiropoulou K (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "168310",
+ "name": "ModelView"
+ }
+ ],
+ "default": "168310"
+ },
+ "name": "Pyramidal neuron, fast, regular, and irregular spiking interneurons (Konstantoudaki et al 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 168312,
+ "object_name": "Neocortex spiking irregular interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model network of prefrontal cortical microcircuit based primarily on rodent data. It includes 16 pyramidal model neurons, 2 fast spiking interneuron models, 1 regular spiking interneuron model and 1 irregular spiking interneuron model. The goal of the paper was to use this model network to determine the role of specific interneuron subtypes in persistent activity"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168310",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Konstantoudaki, Xanthippi "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortical irregular spiking"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sidirop@imbb.forth.gr"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181340,
+ "object_name": "168310"
+ }
+ ]
+ },
+ "ver_date": "2015-01-04T21:43:56",
+ "ver_number": 9
+ },
+ "168314": {
+ "class_id": 19,
+ "created": "2014-11-01T15:19:53",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168314,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 151331,
+ "object_name": "Storage/recall"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168316,
+ "object_name": "Hummos A, Franklin CC, Nair SS (2014)"
+ },
+ {
+ "object_id": 231819,
+ "object_name": "Hummos A, Nair SS (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Role for short term plasticity and OLM cells in containing spread of excitation (Hummos et al 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154093,
+ "object_name": "Hippocampus CA3 interneuron basket GABA cell"
+ },
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This hippocampus model was developed by matching experimental data, including neuronal behavior, synaptic current dynamics, network spatial connectivity patterns, and short-term synaptic plasticity. Furthermore, it was constrained to perform pattern completion and separation under the effects of acetylcholine. The model was then used to investigate the role of short-term synaptic depression at the recurrent synapses in CA3, and inhibition by basket cell (BC) interneurons and oriens lacunosum-moleculare (OLM) interneurons in containing the unstable spread of excitatory activity in the network."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168314",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hummos, Ali [Hummosa@gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hummosa@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2015-02-17T23:51:42.217",
+ "ver_number": 12
+ },
+ "168407": {
+ "class_id": 19,
+ "created": "2014-11-05T19:17:53",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168407,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168408,
+ "object_name": "Skorheim S, Razak K, Bazhenov M (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Network models of frequency modulated sweep detection (Skorheim et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Frequency modulated (FM) sweeps are common in species-specific vocalizations, including human speech. Auditory neurons selective for the direction and rate of frequency change in FM sweeps are present across species, but the synaptic mechanisms underlying such selectivity are only beginning to be understood. Even less is known about mechanisms of experience-dependent changes in FM sweep selectivity. We present three network models of synaptic mechanisms of FM sweep direction and rate selectivity that explains experimental data ... \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168407",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Innerspaceapollo@gmail.com"
+ },
+ "ver_date": "2018-10-18T17:07:52.337",
+ "ver_number": 6
+ },
+ "168414": {
+ "class_id": 19,
+ "created": "2014-11-10T11:05:37",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168414,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 168415,
+ "object_name": "Zhang, Tianhe [tz5@duke.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168412,
+ "object_name": "Zhang TC, Janik JJ, Grill WM (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "168414_1",
+ "name": "WindUp"
+ },
+ {
+ "id": "168414_2",
+ "name": "Fiber, No EP"
+ },
+ {
+ "id": "168414_3",
+ "name": "Foreman SCS"
+ }
+ ],
+ "default": "168414_1"
+ },
+ "name": "Effects of spinal cord stimulation on WDR dorsal horn network (Zhang et al 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 128565,
+ "object_name": "Wide dynamic range neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... To study the mechanisms underlying SCS (Spinal cord stimulation), we constructed a biophysically-based network model of the dorsal horn circuit consisting of interconnected dorsal horn interneurons and a wide dynamic range (WDR) projection neuron and representations of both local and surround receptive field inhibition.\r\n\r\nWe validated the network model by reproducing cellular and network responses relevant to pain processing including wind-up, A-fiber mediated inhibition, and surround receptive field inhibition. ...\" See paper for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168414",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spinal Cord Stimulation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zhang, Tianhe [tz5@duke.edu]"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181530,
+ "object_name": "168414_3"
+ },
+ {
+ "object_id": 181532,
+ "object_name": "168414_2"
+ },
+ {
+ "object_id": 181705,
+ "object_name": "168414_1"
+ }
+ ]
+ },
+ "ver_date": "2023-02-16T10:20:58.397",
+ "ver_number": 22
+ },
+ "168418": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Polese D, Martinelli E, Marco S, Di Natale C, Gutierrez-Galvez A (2014) Understanding Odor Information Segregation in the Olfactory Bulb by Means of Mitral and Tufted Cells. PLoS ONE 9(10): e109716. doi:10.1371/journal.pone.0109716"
+ },
+ "class_id": 19,
+ "created": "2014-11-11T05:34:09",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168418,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168402,
+ "object_name": "Polese D, Martinelli E, Marco S, Di Natale C, Gutierrez-Galvez A (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Understanding odor information segregation in the olfactory bulb by MC/TCs (Polese et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 153282,
+ "object_name": "Olfactory bulb main tufted middle GLU cell"
+ },
+ {
+ "object_id": 168419,
+ "object_name": "Olfactory bulb short axon cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Odor identification is one of the main tasks of the olfactory system. It is performed almost independently from the concentration of the odor providing a robust recognition. This capacity to ignore concentration information does not preclude the olfactory system from estimating concentration itself. Significant experimental evidence has indicated that the olfactory system is able to infer simultaneously odor identity and intensity. However, it is still unclear at what level or levels of the olfactory pathway this segregation of information occurs. In this work, we study whether this odor information segregation is performed at the input stage of the olfactory bulb: the glomerular layer."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168418",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Olfactory bulb Short Axon cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "davide.polese@artov.imm.cnr.it"
+ },
+ "ver_date": "2018-10-17T16:16:02.283",
+ "ver_number": 7
+ },
+ "168590": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Simmonds and Chacron, PLoS Comp Biol, doi:10.1371/journal.pcbi.1004034"
+ },
+ "class_id": 19,
+ "created": "2014-11-14T09:03:01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168590,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168597,
+ "object_name": "Simmonds B, Chacron MJ (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "ELL pyramidal neuron (Simmonds and Chacron 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88116,
+ "object_name": "ELL pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "network model of ELL pyramidal neurons receiving both feedforward and feedback inputs"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168590",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "maurice.chacron@mcgill.ca"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2015-07-29T11:10:07.103",
+ "ver_number": 7
+ },
+ "168591": {
+ "class_id": 19,
+ "created": "2014-11-14T15:24:47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168591,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 153637,
+ "object_name": "Cavarretta, Francesco [francescocavarretta at hotmail.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169458,
+ "object_name": "Migliore M, Cavarretta F, Marasco A, Tulumello E, Hines ML, Shepherd GM (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "3D olfactory bulb: operators (Migliore et al, 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Using a 3D model of mitral and granule cell interactions supported by experimental findings, combined with a matrix-based representation of glomerular operations, we identify the mechanisms for forming one or more glomerular units in response to a given odor, how and to what extent the glomerular units interfere or interact with each other during learning, their computational role within the olfactory bulb microcircuit, and how their actions can be formalized into a theoretical framework in which the olfactory bulb can be considered to contain \"odor operators\" unique to each individual. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168591",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:16:55.007",
+ "ver_number": 17
+ },
+ "168599": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Oscillations emerging from noise-driven steady state in networks with electrical synapses and subthreshold resonance (Tchumatchenko T* and Clopath C*, Nature Communications, 2014)"
+ },
+ "class_id": 19,
+ "created": "2014-11-18T05:35:39",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168599,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144567,
+ "object_name": "Clopath, Claudia [c.clopath at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168600,
+ "object_name": "Tchumatchenko T, Clopath C (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Oscillations emerging from noise-driven NNs (Tchumatchenko & Clopath 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we show how the oscillation frequency is shaped by single neuron resonance, electrical and chemical synapses.The presence of both gap junctions and subthreshold resonance are necessary for the emergence of oscillations. Our results are in agreement with several experimental observations such as network responses to oscillatory inputs and offer a much-needed conceptual link connecting a collection of disparate effects observed in networks.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168599",
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "Glutamate"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "c.clopath@imperial.ac.uk"
+ },
+ "ver_date": "2014-11-21T17:48:53",
+ "ver_number": 6
+ },
+ "168856": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A computational study of stimulus driven epileptic seizure abatement. PN Taylor, Y Wang, M Goodfellow, J Dauwels, F Moeller, U Stephani, G Baier. PLoS One (To Appear)"
+ },
+ "class_id": 19,
+ "created": "2014-11-28T07:19:35",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168856,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155567,
+ "object_name": "Wang, Yujiang [yujiang.wang at newcastle.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 138323,
+ "object_name": "Magnetic stimulation"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226221,
+ "object_name": "Taylor PN, Wang Y, Goodfellow M, Dauwels J, Moeller F, Stephani U, Baier G (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A bistable model of Spike-Wave seizure and background activity (Taylor et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a four-variable model (in the Amari formalism) of bistable Spike-Wave seizure dynamics and background activity (fixed point). The published code is the deterministic version of the model in the related publication.\r\nThis model can be used to investigate seizure abatement using stimulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168856",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Single pulse stimulation"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yujiang.wang@newcastle.ac.uk"
+ },
+ "ver_date": "2015-01-13T13:29:48",
+ "ver_number": 5
+ },
+ "168858": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Coskren PJ, Luebke JI, Kabaso BD, Wearne SL, Yadav A, Rumbell T, Hof PR, Weaver CM. Functional consequences of age-related morphologic changes to pyramidal neurons of the rhesus monkey prefrontal cortex. Submitted to the Journal of Computational Neuroscience (2014)."
+ },
+ "class_id": 19,
+ "created": "2014-12-01T17:05:07",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168858,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 87515,
+ "object_name": "Weaver, Christina [christina.weaver at fandm.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 183997,
+ "object_name": "Coskren PJ, Luebke JI, Kabaso D, Wearne SL, Yadav A, Rumbell T, Hof PR, Weaver CM (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Rhesus Monkey Layer 3 Pyramidal Neurons: Young vs aged PFC (Coskren et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Layer 3 (L3) pyramidal neurons in the lateral prefrontal cortex (LPFC) of rhesus monkeys exhibit dendritic regression, spine loss and increased action potential (AP) firing rates during normal aging. The relationship between these structural and functional alterations, if any, is unknown. Computational models using the digital reconstructions with Hodgkin-Huxley and AMPA channels allowed us to assess relationships between demonstrated age-related changes and to predict physiological changes that have not yet been tested empirically. Tuning passive parameters for each model predicted significantly higher membrane resistance (Rm) in aged versus young neurons. This Rm increase alone did not account for the empirically observed fI-curves, but coupling these Rm values with subtle differences in morphology and membrane capacitance Cm did. The predicted differences in passive parameters (or other parameters with similar effects) are mathematically plausible, but\r\nmust be tested empirically."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168858",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "christina.weaver@fandm.edu"
+ },
+ "ver_date": "2015-08-12T16:28:21.503",
+ "ver_number": 7
+ },
+ "168861": {
+ "citation": {
+ "attr_id": 391,
+ "value": "J.A. Garc\u00eda-\u00adGrajales, G. Rucabado, A. Garc\u00eda-\u00adDopico, J.M. Pe\u00f1a and A. J\u00e9rusalem. Neurite, a finite difference large scale parallel program for the simulation of the electrical signal propagation in neurites under mechanical loading. PLoS ONE, (Under review), 2014"
+ },
+ "class_id": 19,
+ "created": "2014-12-02T07:41:51",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168861,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 180548,
+ "object_name": "Garcia-Grajales, Julian Andres "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180554,
+ "object_name": "Garc\u00eda-Grajales JA, Rucabado G, Garc\u00eda-Dopico A, Pe\u00f1a JM, J\u00e9rusalem A (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Neurite: electrophysiological-mechanical coupling simulation framework (Garcia-Grajales et al 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neurite simulates the electrical signal propagation in myelinated and unmyelinated axons, and in dendritic trees under mechanical loading. Two different solvers are available (explicit and implicit) with sequential (CPU) and parallel (GPUs) versions"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168861",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Garcia-Grajales Julian Andres"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "julian.garciagrajales@maths.ox.ac.uk"
+ },
+ "ver_date": "2016-02-05T10:24:42.003",
+ "ver_number": 21
+ },
+ "168866": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 23431402"
+ },
+ "class_id": 19,
+ "created": "2014-12-09T21:40:50",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 168866,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180476,
+ "object_name": "Mor\u00e9n J, Shibata T, Doya K (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A spatial model of the intermediate superior colliculus (Moren et. al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A spatial model of the intermediate superior colliculus. It reproduces the collicular saccade-generating output profile from NMDA receptor-driven burst neurons, shaped by integrative inhibitory feedback from spreading buildup neuron activity. The model is consistent with the view that collicular activity directly shapes the temporal profile of saccadic eye movements.\r\n\r\nWe use the Adaptive exponential integrate and fire neuron model, augmented with an NMDA-like membrane potential-dependent receptor. In addition, we use a synthetic spike integrator model as a stand-in for a spike-integrator circuit in the reticular formation.\r\n\r\nNOTE: We use a couple of custom neuron models, so the supplied model file includes an entire version of NEST. I also include a patch that applies to a clean version of the simulator (see the doc/README)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168866",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jan.moren@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118308,
+ "object_name": "Superior colliculus"
+ }
+ ]
+ },
+ "ver_date": "2015-02-24T09:11:12.27",
+ "ver_number": 5
+ },
+ "168867": {
+ "citation": {
+ "attr_id": 391,
+ "value": "The dynamics of sensory integration in a hierarchical network explains choice probabilities in cortical area MT"
+ },
+ "class_id": 19,
+ "created": "2014-12-15T08:22:38",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168867,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 168868,
+ "object_name": "Wimmer, Klaus [wimmer.klaus at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 170127,
+ "object_name": "Wimmer K, Compte A, Roxin A, Peixoto D, Renart A, de la Rocha J (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Hierarchical network model of perceptual decision making (Wimmer et al 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neuronal variability in sensory cortex predicts perceptual decisions. To investigate the interaction of bottom-up and top-down mechanisms during the decision process, we developed a hierarchical network model. The network consists of two circuits composed of leaky integrate-and-fire neurons: an integration circuit (e.g. LIP, FEF) and a sensory circuit (MT), recurrently coupled via bottom-up feedforward connections and top-down feedback connections. The integration circuit accumulates sensory evidence and produces a binary categorization due to winner-take-all competition between two decision-encoding populations (X.J. Wang, Neuron, 2002). The sensory circuit is a balanced randomly connected EI-network, that contains neural populations selective to opposite directions of motion. We have used this model to simulate a standard two-alternative forced-choice motion discrimination task."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168867",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Balanced network"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Wimmer, Klaus "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wimmer.klaus@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T13:53:13.247",
+ "ver_number": 11
+ },
+ "168874": {
+ "class_id": 19,
+ "created": "2014-12-16T18:07:50",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168874,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ },
+ {
+ "object_id": 168951,
+ "object_name": "Sherif, Mohamed [mohamed.sherif.md at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 150554,
+ "object_name": "Calcium waves"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168952,
+ "object_name": "Neymotin SA, McDougal RA, Sherif MA, Fall CP, Hines ML, Lytton WW (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Neuronal dendrite calcium wave model (Neymotin et al, 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nWe developed a reaction-diffusion model of an apical dendrite with diffusible inositol triphosphate (IP3 ), diffusible Ca2+, IP3 receptors (IP3 Rs), endoplasmic reticulum (ER) Ca2+ leak, and ER pump (SERCA) on ER.\r\n...\r\nAt least two modes of Ca2+ wave spread have been suggested: a continuous mode based on presumed relative homogeneity of ER within the cell; and a pseudo-saltatory model where Ca2+ regeneration occurs at discrete points with diffusion between them. \r\n\r\nWe compared the effects of three patterns of hypothesized IP3 R distribution: 1. continuous homogeneous ER, 2. hotspots with increased IP3R density (IP3 R hotspots), 3. areas of increased ER density (ER stacks). All three modes produced Ca2+ waves with velocities similar to those measured in vitro (~50 - 90\u00b5m /sec). ...\r\n\r\nThe measures were sensitive to changes in density and spacing of IP3 R hotspots and stacks.\r\n...\r\nAn extended electrochemical model, including voltage gated calcium channels and AMPA synapses, demonstrated that membrane priming via AMPA stimulation enhances subsequent Ca2+ wave amplitude and duration. Our modeling suggests that pharmacological targeting of IP3 Rs and SERCA could allow modulation of Ca2+ wave propagation in diseases where Ca2+ dysregulation has been implicated. \r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168874",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "mohamed.sherif.md@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T11:40:32.947",
+ "ver_number": 12
+ },
+ "168950": {
+ "class_id": 19,
+ "created": "2014-12-18T01:30:55",
+ "gitrepo": false,
+ "id": 168950,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139758,
+ "object_name": "Roessert, Christian [christian.a at roessert.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 185098,
+ "object_name": "Reservoir Computing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185099,
+ "object_name": "R\u00f6ssert C, Dean P, Porrill J (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Basis for temporal filters in the cerebellar granular layer (Roessert et al. 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This contains the models, functions and resulting data as used in: Roessert C, Dean P, Porrill J. At the Edge of Chaos: How Cerebellar Granular Layer Network Dynamics Can Provide the Basis for Temporal Filters. It is based on code used for Yamazaki T, Tanaka S (2005) Neural modeling of an internal clock. Neural Comput 17:1032-58"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168950",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Reservoir Computing"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "christian.a@roessert.de"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2015-09-23T09:49:43.357",
+ "ver_number": 19
+ },
+ "168957": {
+ "citation": {
+ "attr_id": 391,
+ "value": "other implementers Tuthill, John Reiser, Michael"
+ },
+ "class_id": 19,
+ "created": "2015-01-04T08:05:14",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 168957,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 168961,
+ "object_name": "Tuthill, John [john.c.tuthill at gmail.com]"
+ },
+ {
+ "object_id": 168962,
+ "object_name": "Reiser, Michael "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 168963,
+ "object_name": "Motion Detection"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168960,
+ "object_name": "Tuthill JC, Chiappe ME, Reiser MB (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Reichardt Model for Motion Detection in the Fly Visual System (Tuthill et al, 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 168964,
+ "object_name": "Fly lamina neuron"
+ },
+ {
+ "object_id": 168965,
+ "object_name": "Fly medulla neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This simulation implements a correlation-type model for visual motion detection, as originally described by Hassenstein and Reichardt (1956), and analyzes the response of the model to standard and reverse-phi motion stimuli. \r\n\r\nDetails are provided in: Tuthill JC, et al. (2011)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/168957",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Motion Detection"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Fly Lamina, Fly Medulla"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "john.c.tuthill@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ },
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 120613,
+ "object_name": "Drosophila (fruit fly)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:11:27.34",
+ "ver_number": 10
+ },
+ "169023": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Electrogenic properties of the Na+/K+ ATPase control\u2019s transitions between normal and pathological brain states. Under review in J Neurophysiology."
+ },
+ "class_id": 19,
+ "created": "2015-01-06T03:11:47",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 169023,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33765,
+ "object_name": "Bazhenov, Maxim [Bazhenov at Salk.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169340,
+ "object_name": "Krishnan GP, Filatov G, Shilnikov A, Bazhenov M (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 125368,
+ "object_name": "CONTENT"
+ }
+ ]
+ },
+ "name": "Single cell model with variable ion concentrations and Na+/K+ ATPase (Krishnan et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a single cell model with variable intra and extra cellular ion concentrations for Na+, K+ and Cl- ions. This model also incorporates both the electrogenic and ionic concentration effects of the Na+/K+ pump. \r\n\r\nThe program in this archive will run under CONTENT software to generate various bifurcation plots."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169023",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ion concentrations"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "girik@ucr.edu"
+ },
+ "ver_date": "2015-01-15T17:22:04",
+ "ver_number": 8
+ },
+ "169208": {
+ "class_id": 19,
+ "created": "2015-01-09T22:18:40",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 169208,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169210,
+ "object_name": "Young RG, Castelfranco AM, Hartline DK (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Lillie Transition: onset of saltatory conduction in myelinating axons (Young et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ },
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Included are the NEURON (.hoc) files needed to generate the data used in our Young, Castelfranco, Hartline (2013) paper. The resulting .dat files are in the same folder as the MATLAB (.m) files that are used to sort the data."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169208",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Myelination"
+ },
+ "ver_date": "2015-01-28T17:10:18",
+ "ver_number": 22
+ },
+ "169240": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Pedro Mateos-Aparicio, Ricardo Murphy and Johan F. Storm (2014). Complementary functions of SK and Kv7/M potassium channels in excitability control and synaptic integration in rat hippocampal dentate granule cells. Journal of Physiology 592, 669-693."
+ },
+ "class_id": 19,
+ "created": "2015-01-13T12:51:37",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 169240,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 169381,
+ "object_name": "Murphy, Ricardo [ricardo.murphy at medisin.uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169383,
+ "object_name": "Mateos-Aparicio P, Murphy R, Storm JF (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dentate granule cell: mAHP & sAHP; SK & Kv7/M channels (Mateos-Aparicio et al., 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model is based on that of Aradi & Holmes (1999; Journal of Computational Neuroscience 6, 215-235). It was used to help understand the contribution of M and SK channels to the medium afterhyperpolarization (mAHP) following one or seven spikes, as well as the contribution of M channels to the slow afterhyperpolarization (sAHP). We found that SK channels are the main determinants of the mAHP, in contrast to CA1 pyramidal cells where the mAHP is primarily caused by the opening of M channels. The model reproduced these experimental results, but we were unable to reproduce the effects of the M-channel blocker XE991 on the sAHP. It is suggested that either the XE991-sensitive component of the sAHP is not due to M channels, or that when contributing to the sAHP, these channels operate in a mode different from that associated with the mAHP."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169240",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Murphy, Ricardo "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ricardo.murphy@medisin.uio.no"
+ },
+ "ver_date": "2015-01-21T15:15:46",
+ "ver_number": 4
+ },
+ "169242": {
+ "class_id": 19,
+ "created": "2015-01-13T14:13:37",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 169242,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185546,
+ "object_name": "Esposito U, Giugliano M, Vasilaki E (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Adaptation of Short-Term Plasticity parameters (Esposito et al. 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The anatomical connectivity among neurons has been experimentally found to be largely non-random across brain areas. This means that certain connectivity motifs occur at a higher frequency than would be expected by chance. Of particular interest, short-term synaptic plasticity properties were found to colocalize with specific motifs: an over-expression of bidirectional motifs has been found in neuronal pairs where short-term facilitation dominates synaptic transmission among the neurons, whereas an over-expression of unidirectional motifs has been observed in neuronal pairs where short-term depression dominates. In previous work we found that, given a network with fixed short-term properties, the interaction between short- and long-term plasticity of synaptic transmission is sufficient for the emergence of specific motifs. Here, we introduce an error-driven learning mechanism for short-term plasticity that may explain how such observed correspondences develop from randomly initialized dynamic synapses. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169242",
+ "ver_date": "2015-11-13T15:39:23.66",
+ "ver_number": 9
+ },
+ "169278": {
+ "class_id": 19,
+ "created": "2015-01-15T09:55:15",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 169278,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 169290,
+ "object_name": "Rudnicki, Marek [marek.rudnicki at tum.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 125854,
+ "object_name": "Zilany MS, Bruce IC, Nelson PC, Carney LH (2009)"
+ },
+ {
+ "object_id": 169280,
+ "object_name": "Zilany MS, Bruce IC, Carney LH (2014)"
+ },
+ {
+ "object_id": 169289,
+ "object_name": "Holmberg M (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Cochlea: inner ear models in Python (Zilany et al 2009, 2014; Holmberg M 2007)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1965,
+ "object_name": "Cochlea hair outer GLU cell"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Collection of inner ear models in Python."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169278",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "marekrud@gmail.com"
+ },
+ "ver_date": "2018-10-18T17:08:16.587",
+ "ver_number": 14
+ },
+ "169457": {
+ "class_id": 19,
+ "created": "2015-01-23T05:14:10",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ },
+ {
+ "object_id": 122811,
+ "object_name": "Cav3.3 CACNA1I"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ },
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 169457,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187894,
+ "object_name": "M\u00e4ki-Marttunen T, Halnes G, Devor A, Witoelar A, Bettella F, Djurovic S, Wang Y, Einevoll GT, Andreassen OA, Dale AM (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Schiz.-linked gene effects on intrinsic single-neuron excitability (Maki-Marttunen et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Python scripts for running NEURON simulations that model a layer V pyramidal cell with certain genetic variants implemented. The genes included are obtained from genome-wide association studies of schizophrenia."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169457",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tuomomm@uio.no"
+ },
+ "ver_date": "2017-03-18T10:12:32.617",
+ "ver_number": 16
+ },
+ "169775": {
+ "citation": {
+ "attr_id": 391,
+ "value": "25149693"
+ },
+ "class_id": 19,
+ "created": "2015-01-27T23:50:08",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 169775,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169776,
+ "object_name": "Matsui H, Zheng M, Hoshino O (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Default mode network model (Matsui et al 2014)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Default mode network (DMN) shows intrinsic, high-level activity at rest. We tested a hypothesis proposed for its role in sensory information processing: Intrinsic DMN activity facilitates neural responses to sensory input. A neural network model, consisting of a sensory network (Nsen) and a DMN, was simulated. The Nsen contained cell assemblies. Each cell assembly comprised principal cells, GABAergic interneurons (Ia, Ib), and glial cells. We let the Nsen carry out a perceptual task: detection of sensory stimuli. \u2026\r\nThis enabled the Nsen to reliably detect the stimulus. We suggest that intrinsic default model network activity may accelerate the reaction speed of the sensory network by modulating its ongoing-spontaneous activity in a subthreshold manner. Ambient GABA contributes to achieve an optimal ongoing spontaneous subthreshold neuronal state, in which GABAergic gliotransmission triggered by the intrinsic default model network activity may play an important role."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169775",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Matsui, H"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rinnakyarotto@hotmail.co.jp"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2015-01-30T17:26:25",
+ "ver_number": 6
+ },
+ "169983": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Unsupervised learning of an efficient short-term memory network, Vertechi*, P and Brendel*, W and Machens C. K., Advances in Neural Information Processing Systems 27, 2014"
+ },
+ "class_id": 19,
+ "created": "2015-01-30T15:07:57",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 169983,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 170014,
+ "object_name": "Brendel, Wieland [wieland.brendel at bethgelab.org]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 170013,
+ "object_name": "Vertechi P, Brendel W, Machens CK (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Unsupervised learning of an efficient short-term memory network (Vertechi, Brendel & Machens 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Learning in recurrent neural networks has been a topic fraught with\r\ndifficulties and problems. We here report substantial progress in the\r\nunsupervised learning of recurrent networks that can keep track\r\nof an input signal. Specifically, we show how these networks can \r\nlearn to efficiently represent their present and past inputs, based \r\non local learning rules only."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169983",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Brendel, Wieland "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "rate neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wieland.brendel@bethgelab.org"
+ },
+ "ver_date": "2015-07-26T14:43:55.047",
+ "ver_number": 8
+ },
+ "169984": {
+ "citation": {
+ "attr_id": 391,
+ "value": "25609629"
+ },
+ "class_id": 19,
+ "created": "2015-02-02T12:36:42",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 169984,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156778,
+ "object_name": "Damodaran, Sriraman [dsriraman at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180745,
+ "object_name": "Damodaran S, Cressman JR, Jedrzejewski-Szmek Z, Blackwell KT (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Striatal NN model of MSNs and FSIs investigated effects of dopamine depletion (Damodaran et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This study investigates the mechanisms that are affected in the striatal network after dopamine depletion and identifies potential therapeutic targets to restore normal activity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169984",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dsriraman@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2015-03-04T17:16:45.367",
+ "ver_number": 3
+ },
+ "169985": {
+ "citation": {
+ "attr_id": 391,
+ "value": "23303922, 25278870"
+ },
+ "class_id": 19,
+ "created": "2015-02-02T13:00:24",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 169985,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 169986,
+ "object_name": "Sanders, Honi [honi at brandeis.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 169987,
+ "object_name": "Dendritic Bistability"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 155125,
+ "object_name": "Sanders H, Berends M, Major G, Goldman MS, Lisman JE (2013)"
+ },
+ {
+ "object_id": 169989,
+ "object_name": "Sanders H, Kolterman BE, Shusterman R, Rinberg D, Koulakov A, Lisman J (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "NMDAR & GABAB/KIR Give Bistable Dendrites: Working Memory & Sequence Readout (Sanders et al., 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Here, we show that the voltage dependence of the inwardly rectifying potassium (KIR) conductance activated by GABA(B) receptors adds substantial robustness to network simulations of bistability and the persistent firing that it underlies. The hyperpolarized state is robust because, at hyperpolarized potentials, the GABA(B)/KIR conductance is high and the NMDA conductance is low; the depolarized state is robust because, at depolarized potentials, the NMDA conductance is high and the GABA(B)/KIR conductance is low. Our results suggest that this complementary voltage dependence of GABA(B)/KIR and NMDA conductances makes them a \"perfect couple\" for producing voltage bistability.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/169985",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Dendritic Bistability"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "K_IR"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sanders, Honi "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "honi@brandeis.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2015-02-03T17:10:06",
+ "ver_number": 16
+ },
+ "170029": {
+ "class_id": 19,
+ "created": "2015-02-03T08:06:49",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 170029,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156834,
+ "object_name": "Anderson, Warren D [warren.anderson at jefferson.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 185305,
+ "object_name": "Cytokine Signaling"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 186155,
+ "object_name": "Anderson WD, Makadia HK, Greenhalgh AD, Schwaber JS, David S, Vadigepalli R (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Microglial cytokine network (Anderson et al., 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 96242,
+ "object_name": "Microglia"
+ },
+ {
+ "object_id": 96243,
+ "object_name": "Macrophage"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an ODE model of autocrine/paracrine microglial cytokine interactions. Simulations include analyses of neuroinflammation mechanisms in the context of adaptation and tolerance to LPS."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/170029",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Cytokine Signaling"
+ },
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "TNF-alpha"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "warren.anderson@jefferson.edu"
+ },
+ "ver_date": "2018-01-05T15:49:39.34",
+ "ver_number": 8
+ },
+ "170030": {
+ "class_id": 19,
+ "created": "2015-02-03T10:10:26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 170030,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 184729,
+ "object_name": "Miceli F, Soldovieri MV, Ambrosino P, De Maria M, Migliore M, Migliore R, Taglialatela M (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "170030_1",
+ "name": "Kv7.2+Kv7.3"
+ },
+ {
+ "id": "170030_2",
+ "name": "Kv7.2+Kv7.2R201C+Kv7.3"
+ }
+ ],
+ "default": "170030_1"
+ },
+ "name": "Early-onset epileptic encephalopathy (Miceli et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model files from the paper \"Early-Onset Epileptic Encephalopathy Caused by \r\nGain-of-Function Mutations in the Voltage Sensor of Kv7.2 and Kv7.3\r\nPotassium Channel Subunits\" by Francesco Miceli, \r\nMaria Virginia Soldovieri, Paolo Ambrosino, Michela De Maria, \r\nMichele Migliore, Rosanna Migliore, and Maurizio Taglialatela\r\nJ Neurosci. 2015 Mar 4;35(9):3782-93. \r\n\r\n\r\nThe file fig7C.hoc reproduces the simulations shown in Fig.7C of the paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/170030",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T13:51:01.623",
+ "ver_number": 19
+ },
+ "180370": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Balbi P, Martinoia S and Massobrio P (2015) Axon-somatic back-propagation in detailed models of spinal alpha motoneurons. Front. Comput. Neurosci. 9:15. doi: 10.3389/fncom.2015.00015"
+ },
+ "class_id": 19,
+ "created": "2015-02-13T15:09:24.363",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 180370,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151444,
+ "object_name": "Balbi, Pietro [piero.balbi at fsm.it]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180448,
+ "object_name": "Balbi P, Martinoia S, Massobrio P (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Axon-somatic back-propagation in a detailed model of cat spinal motoneuron (Balbi et al, 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Morphologically detailed conductance-based models of cat spinal alpha motoneurons have been developed, with the aim to reproduce and clarify some aspects of the electrophysiological behavior of the antidromic axon-somatic spike propagation. Fourteen 3D morphologically detailed somata and dendrites of cat spinal alpha motoneurons have been imported from an open-access web-based database of neuronal morphologies, NeuroMorpho.org, and instantiated in neurocomputational models."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/180370",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Back-propagation"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "piero.balbi@fsm.it"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2018-07-11T17:09:25.123",
+ "ver_number": 10
+ },
+ "180372": {
+ "class_id": 19,
+ "created": "2015-02-13T18:34:28.087",
+ "gitrepo": false,
+ "id": 180372,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180191,
+ "object_name": "Elias LA, Watanabe RN, Kohn AF (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 180371,
+ "object_name": "ReMoto (web link to model)"
+ }
+ ]
+ },
+ "name": "Large-scale neuromusculoskeletal model of human upright standing (Elias et al 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... This paper studies neuromuscular mechanisms\r\nbehind upright stance control by means of a biologically based\r\nlarge-scale neuromusculoskeletal (NMS) model. \r\n\r\nIt encompasses: i) conductance-based spinal neuron models (motor\r\nneurons and interneurons); ii) muscle proprioceptor models (spindle\r\nand Golgi tendon organ) providing sensory afferent feedback; iii)\r\nHill-type muscle models of the leg plantar and dorsiflexors; and iv)\r\nan inverted pendulum model for the body biomechanics during upright\r\nstance.\r\n\r\nThe motor neuron pools are driven by stochastic spike\r\ntrains. Simulation results showed that the neuromechanical outputs\r\ngenerated by the NMS model resemble experimental data from subjects\r\nstanding on a stable surface.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/180372",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2015-02-13T18:58:09.49",
+ "ver_number": 5
+ },
+ "180373": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Shai AS, Anastassiou CA, Larkum ME, Koch C (2015) Physiology of Layer 5 Pyramidal\r\nNeurons in Mouse Primary Visual Cortex: Coincidence Detection through Bursting. PLoS Comput Biol 0(0): e1004090. doi:10.1371/journal. pcbi.1004090"
+ },
+ "class_id": 19,
+ "created": "2015-02-16T21:06:30.37",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 180373,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 181973,
+ "object_name": "Shai AS, Anastassiou CA, Larkum ME, Koch C (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "modelviews": {
+ "all": [
+ {
+ "id": "180373",
+ "name": "ModelView"
+ }
+ ],
+ "default": "180373"
+ },
+ "name": "Layer 5 Pyramidal Neuron (Shai et al., 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This work contains a NEURON model for a layer 5 pyramidal neuron (based on Hay et al., 2011) with distributed groups of synapses across the basal and tuft dendrites. The results of that simulation are used to fit a phenomenological model, which is also included in this file."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/180373",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "adamimos@gmail.com"
+ },
+ "ver_date": "2015-04-30T13:34:23.373",
+ "ver_number": 8
+ },
+ "180789": {
+ "class_id": 19,
+ "created": "2015-03-05T09:28:41.64",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 88206,
+ "object_name": "I_HERG"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 180789,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 180866,
+ "object_name": "Forrest, Michael [mikeforrest at hotmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 169987,
+ "object_name": "Dendritic Bistability"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ },
+ {
+ "object_id": 242863,
+ "object_name": "Alcohol Use Disorder"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180865,
+ "object_name": "Forrest MD (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Alcohol action in a detailed Purkinje neuron model and an efficient simplified model (Forrest 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... we employ a\r\nnovel reduction algorithm to produce a 2 compartment model of the cerebellar Purkinje\r\nneuron from a previously published, 1089 compartment model. It runs more than 400 times\r\nfaster and retains the electrical behavior of the full model. So, it is more suitable for inclusion\r\nin large network models, where computational power is a limiting issue. We show the utility\r\nof this reduced model by demonstrating that it can replicate the full model\u2019s response to\r\nalcohol, which can in turn reproduce experimental recordings from Purkinje neurons\r\nfollowing alcohol application.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/180789",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Forrest, Michael [mikeforrest@hotmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mikeforrest@hotmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2018-06-07T16:02:56.39",
+ "ver_number": 12
+ },
+ "180791": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Toyoizumi T, Kaneko M, Stryker MP, Miller KD (2014)\r\nModeling the dynamic interaction of hebbian and homeostatic plasticity.\r\nNeuron 84:497-510"
+ },
+ "class_id": 19,
+ "created": "2015-03-09T01:08:51.763",
+ "gitrepo": false,
+ "id": 180791,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 168872,
+ "object_name": "Toyoizumi T, Kaneko M, Stryker MP, Miller KD (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Modeling hebbian and homeostatic plasticity (Toyoizumi et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nWe propose a\r\nmodel in which synaptic strength is the product of\r\na synapse-specific Hebbian factor and a postsynaptic-\r\ncell-specific homeostatic factor, with each factor\r\nseparately arriving at a stable inactive state.\r\n\r\nThis\r\nmodel captures ODP dynamics and has plausible\r\nbiophysical substrates.\r\n\r\nWe confirm model predictions\r\nexperimentally that plasticity is inactive at\r\nstable states and that synaptic strength overshoots\r\nduring recovery from visual deprivation.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/180791",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Hebb&homeostatic scaling"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "taro.toyoizumi@brain.riken.jp"
+ },
+ "ver_date": "2015-03-14T18:02:26.06",
+ "ver_number": 11
+ },
+ "180823": {
+ "citation": {
+ "attr_id": 391,
+ "value": "25737547"
+ },
+ "class_id": 19,
+ "created": "2015-03-11T00:58:46.237",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 180823,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144418,
+ "object_name": "Yamazaki, Tadashi "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 180825,
+ "object_name": "Yamazaki T, Nagao S, Lennon W, Tanaka S (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Cerebellar memory consolidation model (Yamazaki et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Long-term depression (LTD) at parallel fiber-Purkinje cell (PF-PC)\r\nsynapses is thought to underlie memory formation in cerebellar motor\r\nlearning. \r\n\r\nRecent experimental results, however, suggest that multiple\r\nplasticity mechanisms in the cerebellar cortex and\r\ncerebellar/vestibular nuclei participate in memory formation. \r\n\r\nTo\r\nexamine this possibility, we formulated a simple model of the\r\ncerebellum with a minimal number of components based on its known\r\nanatomy and physiology, implementing both LTD and long-term\r\npotentiation (LTP) at PF-PC synapses and mossy fiber-vestibular\r\nnuclear neuron (MF-VN) synapses. \r\n\r\nWith this model, we conducted a\r\nsimulation study of the gain adaptation of optokinetic response (OKR)\r\neye movement.\r\n\r\nOur model reproduced several important aspects of\r\npreviously reported experimental results in wild-type and\r\ncerebellum-related gene-manipulated mice. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/180823",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pnas14@neuralgorithm.org"
+ },
+ "ver_date": "2016-05-24T11:14:54.257",
+ "ver_number": 5
+ },
+ "181010": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Lim S, Goldman MS (2013) Balanced cortical microcircuitry for maintaining information in working memory, Nature Neuroscience 16:1360-1314"
+ },
+ "class_id": 19,
+ "created": "2015-03-19T00:50:55.663",
+ "gitrepo": false,
+ "id": 181010,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 181030,
+ "object_name": "Lim, Sukbin "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 152558,
+ "object_name": "Lim S, Goldman MS (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Model of working memory based on negative derivative feedback (Lim and Goldman, 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We proposed a model of working memory in which recurrent synaptic interactions provide a corrective feedback that enables persistent activity to be maintained stably for prolonged durations. When recurrent excitatory and inhibitory inputs to memory neurons were balanced in strength and offset in time, drifts in activity triggered a corrective signal that counteracted memory decay. Circuits containing this mechanism temporally integrated their inputs, generated the irregular neural firing observed during persistent activity and were robust against common perturbations that severely disrupted previous models of short-term memory storage."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/181010",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sukbin80@gmail.com"
+ },
+ "ver_date": "2015-03-19T15:35:31.803",
+ "ver_number": 8
+ },
+ "181032": {
+ "class_id": 19,
+ "created": "2015-03-24T16:15:42.41",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 181032,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 181044,
+ "object_name": "Cox, Conor [cdcox1 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 181038,
+ "object_name": "Trieu BH, Kram\u00e1r EA, Cox CD, Jia Y, Wang W, Gall CM, Lynch G (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Effect of polysynaptic facilitaiton between piriform-hippocampal network stages (Trieu et al 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model of a multistage network with stages representing regions and synaptic contacts from the olfactory cortex to region CA1 of the hippocampus in Brian2 spiking neural network simulator (Trieu et al 2015).\r\n\r\nIt is primarily designed to assess how synaptic facilitation at multiple stages in response to theta firing changes the output of the network. Further developments will be posted at: \r\n\r\ngithub.com/cdcox/multistage_network\r\n\r\nThis model was prepared by Conor D Cox, University of California, Irvine\r\n\r\nFor questions please contact Conor at cdcox1@gmail.com"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/181032",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Conor D Cox cdcox1@gmail.com"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Brian2"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cdcox1@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ },
+ {
+ "object_id": 115949,
+ "object_name": "Olfactory cortex"
+ },
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ },
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:17:09.383",
+ "ver_number": 20
+ },
+ "181035": {
+ "citation": {
+ "attr_id": 391,
+ "value": "F. Solari, M. Chessa, N. Medathati, and P. Kornprobst. What can we expect from a V1-MT feedforward architecture for optical flow estimation? Submitted to Signal Processing: Image Communication, 2015.\r\n\r\nM. Chessa, S.P. Sabatini, F. Solari. A systematic analysis of a V1-MT neural model for motion estimation. Submitted to Neurocomputing, 2015."
+ },
+ "class_id": 19,
+ "created": "2015-03-30T03:57:28.357",
+ "gitrepo": false,
+ "id": 181035,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 181036,
+ "object_name": "Chessa, Manuela [manuela.chessa at unige.it]"
+ },
+ {
+ "object_id": 181037,
+ "object_name": "Solari, Fabio [fabio.solari at unige.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 168963,
+ "object_name": "Motion Detection"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182497,
+ "object_name": "Solari F, Chessa M, Medathati NVK, Kornprobst P (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "FFV1MT: A V1-MT feedforward architecture for optical flow estimation (Solari et a., 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A neural feed-forward model composed of two layers that mimic the V1-MT primary motion\r\npathway, derived from previous works by Heeger and Simoncelli."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/181035",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chessa, Manuela [manuela.chessa@unige.it]\r\nSolari, Fabio [fabio.solari@unige.it]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Visual Cortex"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Functional model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "manuela.chessa@unige.it"
+ },
+ "ver_date": "2015-05-20T11:09:52.933",
+ "ver_number": 8
+ },
+ "181962": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Toporikova, N., Chevalier, M., & Thoby-Brisson, M. (2015).Sigh and Eupnea Rhythmogenesis Involve Distinct Interconnected Subpopulations: A Combined\r\nComputational and Experimental Study. E. Journal of Neuroscience.\r\nDOI:http://dx.doi.org/10.1523/ENEURO.0074-14.2015"
+ },
+ "class_id": 19,
+ "created": "2015-04-13T16:55:27.223",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "id": 181962,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 181963,
+ "object_name": "Toporikova N, Chevalier M, Thoby-Brisson M (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Model of eupnea and sigh generation in respiratory network (Toporikova et al 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Based on recent in vitro data obtained in the mouse embryo, we have built a computational model consisting of two compartments, interconnected through appropriate synapses. One compartment generates sighs and the other produces eupneic bursts. The model reproduces basic features of simultaneous sigh and eupnea generation (two types of bursts differing in terms of\r\nshape, amplitude, and frequency of occurrence) and mimics the effect of blocking glycinergic synapses"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/181962",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "toporikovan@wlu.edu"
+ },
+ "ver_date": "2015-04-15T10:38:10.193",
+ "ver_number": 6
+ },
+ "181967": {
+ "class_id": 19,
+ "created": "2015-04-21T16:02:08.72",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 181967,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 93425,
+ "object_name": "Cutsuridis, Vassilis [vcutsuridis at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 151331,
+ "object_name": "Storage/recall"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 181914,
+ "object_name": "Cutsuridis V, Poirazi P (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Long time windows from theta modulated inhib. in entorhinal\u2013hippo. loop (Cutsuridis & Poirazi 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154093,
+ "object_name": "Hippocampus CA3 interneuron basket GABA cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ },
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ },
+ {
+ "object_id": 151329,
+ "object_name": "Hippocampus CA1 bistratified cell"
+ },
+ {
+ "object_id": 151330,
+ "object_name": "Hippocampus CA1 axo-axonic cell"
+ },
+ {
+ "object_id": 181968,
+ "object_name": "Hippocampus CA3 axo-axonic cells"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A recent experimental study (Mizuseki et al., 2009) has shown that the temporal\r\ndelays between population activities in successive entorhinal and hippocampal anatomical stages are\r\nlonger (about 70\u201380 ms) than expected from axon conduction velocities and passive synaptic integration\r\nof feed-forward excitatory inputs. We investigate via computer simulations the mechanisms that give\r\nrise to such long temporal delays in the hippocampus structures. \r\n...\r\nThe model shows that the experimentally\r\nreported long temporal delays in the DG, CA3 and CA1 hippocampal regions are due to theta\r\nmodulated somatic and axonic inhibition...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/181967",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T11:42:27.393",
+ "ver_number": 9
+ },
+ "182129": {
+ "class_id": 19,
+ "created": "2015-05-05T02:46:32.153",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 182129,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 266547,
+ "object_name": "Lupascu, Carmen Alina "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266546,
+ "object_name": "Lupascu CA, Morabito A, Ruggeri F, Parisi C, Pimpinella D, Pizzarelli R, Meli G, Marinelli S, Cherubini E, Cattaneo A, Migliore M (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Computational modeling of gephyrin-dependent inhibitory transsynaptic signaling (Lupascu et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182129",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Carmen Alina Lupascu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T11:46:39.56",
+ "ver_number": 11
+ },
+ "182134": {
+ "class_id": 19,
+ "created": "2015-05-07T11:15:53.127",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 182134,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226051,
+ "object_name": "Fink, Christian G. [cgfink at owu.edu]"
+ },
+ {
+ "object_id": 226052,
+ "object_name": "Gliske, Stephen [sgliske at umich.edu]"
+ },
+ {
+ "object_id": 136020,
+ "object_name": "Stacey, William [wstacey at med.umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182907,
+ "object_name": "Fink CG, Gliske S, Catoni N, Stacey WC (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Normal ripples, abnormal ripples, and fast ripples in a hippocampal model (Fink et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...We use a computational model of hippocampus to investigate possible network mechanisms underpinning normal ripples, pathological ripples, and fast ripples. Our results unify several prior findings regarding HFO mechanisms, and also make several new predictions regarding abnormal HFOs. We show that HFOs are generic, emergent phenomena whose characteristics reflect a wide range of connectivity and network input. Although produced by different mechanisms, both normal and abnormal HFOs generate similar ripple frequencies, underscoring that peak frequency is unable to distinguish the two. Abnormal ripples are generic phenomena that arise when input to pyramidal cells overcomes network inhibition, resulting in high-frequency, uncoordinated firing. In addition, fast ripples transiently and sporadically arise from the precise conditions that produce abnormal ripples. Lastly, we show that such abnormal conditions do not require any specific network structure to produce coherent HFOs, as even completely asynchronous activity is capable of producing abnormal ripples and fast ripples in this manner. These results provide a generic, network-based explanation for the link between pathological ripples and fast ripples, and a unifying description for the entire spectrum from normal ripples to pathological fast ripples.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182134",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cgfink@owu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-03-20T18:16:03.36",
+ "ver_number": 22
+ },
+ "182135": {
+ "class_id": 19,
+ "created": "2015-05-07T12:05:38.69",
+ "gitrepo": false,
+ "id": 182135,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 144264,
+ "object_name": "Koene RA, Tijms B, van Hees P, Postma F, de Ridder A, Ramakers GJ, van Pelt J, van Ooyen A (2009)"
+ },
+ {
+ "object_id": 182141,
+ "object_name": "van Ooyen A, Carnell A, de Ridder S, Tarigan B, Mansvelder HD, Bijma F, de Gunst M, van Pelt J (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "NETMORPH: creates NNs with realistic neuron morphologies (Koene et al. 2009, van Ooyen et al. 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "NETMORPH is a simulation tool for building synaptically\r\nconnected networks with realistic neuron morphologies. Axonal and\r\ndendritic morphologies are created by using stochastic rules for the behavior of individual growth cones, the structures at the tip of outgrowing axons and dendrites that mediate elongation and branching. Axons and dendrites are not guided by any extracellular cues. Synapses are\r\nformed when crossing axonal and dendritic segments come sufficiently close to each other. See the README in the archive for more information."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182135",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "van Ooyen, Arjen [arjen.van.ooyen at gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "arjen.van.ooyen@gmail.com"
+ },
+ "ver_date": "2015-07-26T14:48:43.463",
+ "ver_number": 37
+ },
+ "182142": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Keller D, Babai N, Kochubey O, Han Y, Markram H, Sch\u00fcrmann F, et al. (2015) An Exclusion Zone for Ca2+ Channels around Docked Vesicles Explains Release Control by Multiple Channels at a CNS Synapse. PLoS Comput Biol 11(5): e1004253. doi:10.1371/journal.pcbi.1004253"
+ },
+ "class_id": 19,
+ "created": "2015-05-08T08:23:40.323",
+ "gitrepo": false,
+ "id": 182142,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182147,
+ "object_name": "Keller D, Babai N, Kochubey O, Han Y, Markram H, Sch\u00fcrmann F, Schneggenburger R (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2835,
+ "object_name": "MCell"
+ }
+ ]
+ },
+ "name": "Active zone model of Ca2+ secretion coupling (Keller et al. 2015)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... At a large model synapse, the calyx of Held, transmitter release is controlled by several Ca2+ channels in a \"domain overlap\" mode, at least in young animals. To study the geometrical constraints of Ca2+ channel placement in domain overlap control of release, we used stochastic MCell modelling, at active zones for which the position of docked vesicles was derived from electron microscopy (EM). \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182142",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Vesicle Release"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Calyx of Held"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dkeller@eskimo.com"
+ },
+ "ver_date": "2015-05-08T10:15:20.997",
+ "ver_number": 4
+ },
+ "182373": {
+ "class_id": 19,
+ "created": "2015-05-14T16:16:24.447",
+ "gitrepo": false,
+ "id": 182373,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182371,
+ "object_name": "King PD, Zylberberg J, DeWeese MR (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Inhibitory cells enable sparse coding in V1 model (King et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we show that adding a separate population\r\nof inhibitory neurons to a spiking model of V1 provides conformance to Dale\u2019s Law, proposes a computational role for at least one class\r\nof interneurons, and accounts for certain observed physiological properties in V1. ... \""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182373",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2015-05-14T17:15:16.67",
+ "ver_number": 4
+ },
+ "182515": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Ferguson KA, Huh CYL, Amilhon B et al. Simple, biologically-constrained CA1 pyramidal cell models using an intact, whole hippocampus context [v1; ref status: indexed, http://f1000r.es/37u] F1000Research 2014, 3:104 (doi: 10.12688/f1000research.3894.1)"
+ },
+ "class_id": 19,
+ "created": "2015-05-21T08:29:12.43",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 182515,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182521,
+ "object_name": "Ferguson KA, Huh CY, Amilhon B, Williams S, Skinner FK (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron (Ferguson et al. 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Izhikevich-based models of CA1 pyramidal cells, with parameters constrained based on a whole hippocampus preparation.\r\n\r\nStrongly and weakly adapting models based on the experimental data have been developed.\r\n\r\nCode produces example model output.\r\n\r\nThe code will also be made available on OSB."
+ },
+ "opensourcebrain": {
+ "value": "ca1-pyr-cell-ferguson-et-al-2014"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182515",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "frances.skinner@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T11:57:49.77",
+ "ver_number": 8
+ },
+ "182685": {
+ "class_id": 19,
+ "created": "2015-05-29T13:27:40.133",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 182685,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 183714,
+ "object_name": "Bush, Daniel [drdanielbush @ gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182686,
+ "object_name": "Bush D, Barry C, Manson D, Burgess N (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Models of Vector Navigation with Grid Cells (Bush et al., 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Four models of vector navigation in large scale 2D space using grid cell representations of location are included: \r\n(1) The 'Distance Cell' model, which directly decodes absolute start and goal locations in allocentric space from rate-coded grid cell representations before computing the displacement between them; \r\n(2) The 'Rate-coded Vector Cell' model, which directly decodes the displacement between start and goal locations from rate-coded grid cell representations; \r\n(3) The 'Phase-coded Vector Cell' model, which directly decodes the displacement between start and goal locations from the temporally-coded grid cell representations provided by phase precession; \r\n(4) The 'Linear Look-ahead' model, which uses a directed search through grid cell representations, initiated at the start location and then moving along a specific axis at a constant speed, to compute the displacement between start and goal locations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182685",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spatial Navigation"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2016-07-19T17:29:59.207",
+ "ver_number": 11
+ },
+ "182758": {
+ "class_id": 19,
+ "created": "2015-06-01T13:44:27.397",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 182758,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234452,
+ "object_name": "Terman, David [terman at math.ohio-state.edu]"
+ },
+ {
+ "object_id": 234453,
+ "object_name": "Malone, Taylor "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 39981,
+ "object_name": "Terman D, Rubin JE, Yew AC, Wilson CJ (2002)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Activity patterns in a subthalamopallidal network of the basal ganglia model (Terman et al 2002)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 182735,
+ "object_name": "Subthalamic nucleus principal GABA cell"
+ },
+ {
+ "object_id": 182591,
+ "object_name": "Globus pallidus principal GABA cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Based on recent experimental data, we have developed a\r\nconductance-based computational network model of the subthalamic\r\nnucleus and the external segment of the globus pallidus\r\nin the indirect pathway of the basal ganglia. Computer\r\nsimulations and analysis of this model illuminate the roles of the\r\ncoupling architecture of the network, and associated synaptic\r\nconductances, in modulating the activity patterns displayed by\r\nthis network. Depending on the relationships of these coupling\r\nparameters, the network can support three general classes of\r\nsustained firing patterns: clustering, propagating waves, and\r\nrepetitive spiking that may show little regularity or correlation. ...\". Terman's XPP code and a partial implementation by Taylor Malone in NEURON and python are included."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182758",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2017-11-12T09:52:31.013",
+ "ver_number": 18
+ },
+ "182759": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 25569445\r\nhttp://www.ncbi.nlm.nih.gov/pubmed/25569445"
+ },
+ "class_id": 19,
+ "created": "2015-06-02T08:09:00",
+ "gitrepo": false,
+ "id": 182759,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182782,
+ "object_name": "Sadeh, Sadra [s.sadeh at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182761,
+ "object_name": "Sadeh S, Rotter S (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Orientation selectivity in inhibition-dominated recurrent networks (Sadeh and Rotter, 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Emergence of contrast-invariant orientation selectivity in large-scale networks of excitatory and inhibitory neurons using integrate-and-fire neuron models."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182759",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sadeh, Sadra [s.sadeh at ucl.ac.uk]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.sadeh@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2015-06-04T16:19:10.34",
+ "ver_number": 18
+ },
+ "182784": {
+ "class_id": 19,
+ "created": "2015-06-04T09:22:11.483",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 182784,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182782,
+ "object_name": "Sadeh, Sadra [s.sadeh at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182868,
+ "object_name": "Sadeh S, Clopath C, Rotter S (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Functional balanced networks with synaptic plasticity (Sadeh et al, 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model investigates the impact of learning on functional sensory networks. \r\nIt uses large-scale recurrent networks of excitatory and inhibitory spiking neurons equipped with synaptic plasticity. \r\nIt explains enhancement of orientation selectivity and emergence of feature-specific connectivity in visual cortex of rodents during development, as reported in experiments."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182784",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.sadeh@gmail.com"
+ },
+ "ver_date": "2018-10-17T17:20:02.253",
+ "ver_number": 7
+ },
+ "182785": {
+ "class_id": 19,
+ "created": "2015-06-07T15:06:33.937",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 182785,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189310,
+ "object_name": "McDougal RA, Shepherd GM (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "3D-printer visualization of NEURON models (McDougal and Shepherd, 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We introduce the use of 3D printing as a technique for visualizing traced morphologies. Our method for generating printable versions of a cell or group of cells is to expand dendrite and axon diameters and then to transform the tracing into a 3D object with a neuronal surface generating algorithm like Constructive Tessellated Neuronal Geometry (CTNG). ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182785",
+ "ver_date": "2016-05-13T12:36:22.053",
+ "ver_number": 10
+ },
+ "182797": {
+ "class_id": 19,
+ "created": "2015-06-11T23:45:59.237",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 182797,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182799,
+ "object_name": "Sekulic V, Chen TC, Lawrence JJ, Skinner FK (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Multi-comp. CA1 O-LM interneuron model with varying dendritic Ih distributions (Sekulic et al 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 190560,
+ "object_name": "Hippocampus CA1 stratum oriens lacunosum-moleculare interneuron "
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model presented here was used to investigate possible dendritic distributions of the HCN channel-mediated current (Ih) in models of oriens-lacunosum/moleculare (O-LM) CA1 hippocampal interneurons. Physiological effects of varying the dendritic distributions consisted of examining back-propagating action potential speeds."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182797",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "HCN current distributions"
+ },
+ "ver_date": "2016-07-08T11:48:46.403",
+ "ver_number": 10
+ },
+ "182843": {
+ "citation": {
+ "attr_id": 391,
+ "value": "K. Ferguson, C.Y.L. Huh, B. Amilhon, S. Williams, F.K. Skinner (2013). \u201cExperimentally constrained CA1 fast-firing parvalbumin-positive interneuron network models exhibit sharp transitions into coherent high frequency rhythms\u201d. Frontiers in Computational Neuroscience. 7:144 doi: 10.3389/fncom.2013.00144. http://www.frontiersin.org/journal/10.3389/fncom.2013.00144/abstract"
+ },
+ "class_id": 19,
+ "created": "2015-06-16T13:27:07.37",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 182843,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182527,
+ "object_name": "Ferguson KA, Huh CY, Amilhon B, Williams S, Skinner FK (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CA1 PV+ fast-firing hippocampal interneuron (Ferguson et al. 2013)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ },
+ {
+ "object_id": 151329,
+ "object_name": "Hippocampus CA1 bistratified cell"
+ },
+ {
+ "object_id": 151330,
+ "object_name": "Hippocampus CA1 axo-axonic cell"
+ },
+ {
+ "object_id": 182866,
+ "object_name": "Hippocampus CA1 PV+ fast-firing interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This two-variable simple model is derived based on patch-clamp recordings from the CA1 region of a whole hippocampus preparation of PV+ fast-firing cells. \r\nSince basket cells, axo-axonic cells and bistratified cells can be PV+ and fast-firing, this model could be representative of these cell types. The model code will also be made available on OSB."
+ },
+ "opensourcebrain": {
+ "value": "ca1-pv-fast-firing-cell-ferguson-et-al-2013"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182843",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "CA1 PV+ fast-firing"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "frances.skinner@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T11:57:33.567",
+ "ver_number": 11
+ },
+ "182906": {
+ "class_id": 19,
+ "created": "2015-06-30T16:49:19.973",
+ "gitrepo": false,
+ "id": 182906,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 184498,
+ "object_name": "Zhao X, Robinson PA (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Neural-field model of generalized seizures (Zhao et al., 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The mechanisms underlying generalized seizures are explored with neural field theory. A corticothalamic neural field model is used to explore changes leading to pathological seizure states. It is found that absence seizures arise from instabilities in the system\r\nand replicate experimental studies in numerous animal models and clinical studies."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182906",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "xzha6112@uni.sydney.edu.au"
+ },
+ "ver_date": "2015-07-02T13:30:13.347",
+ "ver_number": 5
+ },
+ "182988": {
+ "citation": {
+ "attr_id": 391,
+ "value": "TRPM8-DEPENDENT DYNAMIC RESPONSE IN A MATHEMATICAL MODEL OF COLD THERMORECEPTOR\r\nOlivares E, Salgado S, Maidana JP, Herrera G, Campos M, Madrid R, Orio P\r\nSubmitted to PLoS One, July 2015"
+ },
+ "class_id": 19,
+ "created": "2015-07-01T13:36:10.56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 137264,
+ "object_name": "I trp"
+ },
+ {
+ "object_id": 185112,
+ "object_name": "I TRPM8"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 182988,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144508,
+ "object_name": "Orio, Patricio [patricio.orio at uv.cl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185108,
+ "object_name": "Olivares E, Salgado S, Maidana JP, Herrera G, Campos M, Madrid R, Orio P (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "TRPM8-dependent dynamic response in cold thermoreceptors (Olivares et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ },
+ {
+ "object_id": 185113,
+ "object_name": "Dorsal Root Ganglion cell: cold sensing"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model reproduces the dynamic response of cold thermoreceptors, transiently changing the firing rate upon heating or cooling. It also displays the 'static' or adapted firing patterns observed in these receptors."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/182988",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "TRPM8"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cold sensitive nerve ending"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "patricio.orio@uv.cl"
+ },
+ "ver_date": "2015-09-21T17:01:13.19",
+ "ver_number": 11
+ },
+ "183014": {
+ "class_id": 19,
+ "created": "2015-07-05T18:47:37.297",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 183014,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 186990,
+ "object_name": "Dura, Salvador [ salvadordura at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 186767,
+ "object_name": "Dura-Bernal S, Zhou X, Neymotin SA, Przekwas A, Francis JT, Lytton WW (2015)"
+ },
+ {
+ "object_id": 187321,
+ "object_name": "Dura-Bernal S, Li K, Neymotin SA, Francis JT, Principe JC, Lytton WW (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Cortical model with reinforcement learning drives realistic virtual arm (Dura-Bernal et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227970,
+ "object_name": "Neocortex M1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 227711,
+ "object_name": "Neocortex M1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 230188,
+ "object_name": "Neocortex M1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed a 3-layer sensorimotor cortical network of consisting of 704 spiking model-neurons, including excitatory, fast-spiking and low-threshold spiking interneurons. Neurons were interconnected with AMPA/NMDA, and GABAA synapses. We trained our model using spike-timing-dependent reinforcement learning to control a virtual musculoskeletal human arm, with realistic anatomical and biomechanical properties, to reach a target. Virtual arm position was used to simultaneously control a robot arm via a network interface."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183014",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Motor control"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:29:32.497",
+ "ver_number": 30
+ },
+ "183015": {
+ "class_id": 19,
+ "created": "2015-07-06T13:18:20.533",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 183015,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ },
+ {
+ "object_id": 183020,
+ "object_name": "Seidenstein, Alexandra [ahs342 at nyu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156682,
+ "object_name": "McDougal RA, Hines ML, Lytton WW (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Reaction-diffusion in the NEURON simulator (McDougal et al 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In order to support research on the role of cell biological principles (genomics, proteomics, signaling cascades and reaction dynamics) on the dynamics of neuronal response in health and disease, NEURON's Reaction-Diffusion (rxd) module in Python provides specification and simulation for these dynamics, coupled with the electrophysiological dynamics of the cell membrane. Arithmetic operations on species and parameters are overloaded, allowing arbitrary reaction formulas to be specified using Python syntax. These expressions are then transparently compiled into bytecode that uses NumPy for fast vectorized calculations. At each time step, rxd combines NEURON's integrators with SciPy's sparse linear algebra library.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183015",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Alexandra Seidenstein"
+ },
+ "ver_date": "2015-07-26T14:50:06.547",
+ "ver_number": 11
+ },
+ "183017": {
+ "class_id": 19,
+ "created": "2015-07-06T14:18:19.607",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 183017,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150034,
+ "object_name": "Solanka, Lukas [l.solanka at sms.ed.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 183018,
+ "object_name": "Solanka L, van Rossum MC, Nolan MF (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 225554,
+ "object_name": "NEST (web link to model)"
+ }
+ ]
+ },
+ "name": "Noise promotes independent control of gamma oscillations and grid firing (Solanka et al 2015)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neural computations underlying cognitive functions require calibration of the strength of excitatory and inhibitory synaptic connections and are associated with modulation of gamma frequency oscillations in network activity. However, principles relating gamma oscillations, synaptic strength and circuit computations are unclear. We address this in attractor network models that account for grid firing and theta-nested gamma oscillations in the medial entorhinal cortex. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183017",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Grid cell"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2019-02-21T09:40:14.893",
+ "ver_number": 8
+ },
+ "183077": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Aumentado-Armstrong et al. PLoS Comp Biol 10.1371/journal.pcbi.1004430"
+ },
+ "class_id": 19,
+ "created": "2015-07-09T09:51:38.433",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 183077,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 183078,
+ "object_name": "Aumentado-Armstrong T, Metzen MG, Sproule MK, Chacron MJ (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Midbrain torus semicircularis neuron model (Aumentado-Armstrong et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This paper investigates how midbrain electrosensory neurons give invariant responses to natural communication stimuli. A model explains that such invariance can be achieved by combining afferent input from ON and OFF cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183077",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "maurice.chacron@mcgill.ca"
+ },
+ "ver_date": "2015-07-10T08:41:01.857",
+ "ver_number": 13
+ },
+ "183251": {
+ "class_id": 19,
+ "created": "2015-07-13T16:34:03.933",
+ "gitrepo": false,
+ "id": 183251,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118393,
+ "object_name": "Hjorth, Johannes [hjorth at csc.kth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 183089,
+ "object_name": "Hjorth JJ, Sterratt DC, Cutts CS, Willshaw DJ, Eglen SJ (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ },
+ {
+ "object_id": 127324,
+ "object_name": "R (web link to model)"
+ }
+ ]
+ },
+ "name": "Quantitative assessment of computational models for retinotopic map formation (Hjorth et al. 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Molecular and activity-based cues acting together are thought to guide retinal axons to their terminal sites in vertebrate optic tectum or superior colliculus (SC) to form an ordered map of connections. The details of mechanisms involved, and the degree to which they might interact, are still not well understood. We have developed a framework within which existing computational models can be assessed in an unbiased and quantitative manner against a set of experimental data curated from the mouse retinocollicular system. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183251",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118308,
+ "object_name": "Superior colliculus"
+ }
+ ]
+ },
+ "ver_date": "2015-07-26T14:53:44.477",
+ "ver_number": 7
+ },
+ "183300": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 222353,
+ "object_name": "event generator for table of prob to spikes supporting S2 fig"
+ },
+ {
+ "object_id": 222354,
+ "object_name": "gui trace creation supporting information figure S3 B, C, D"
+ },
+ {
+ "object_id": 222355,
+ "object_name": "matlab archive and diagnostic related"
+ },
+ {
+ "object_id": 222356,
+ "object_name": "manual simulated breath writer"
+ },
+ {
+ "object_id": 222357,
+ "object_name": "model analysis matlab code"
+ },
+ {
+ "object_id": 222358,
+ "object_name": "matlab code created test data sets for experiment analysis code testing"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-07-14T12:32:07.383",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 183300,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 218089,
+ "object_name": "Short SM, Morse TM, McTavish TS, Shepherd GM, Verhagen JV (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Mitral cell activity gating by respiration and inhibition in an olfactory bulb NN (Short et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 207694,
+ "object_name": "Olfactory bulb main tufted cell external"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To explore interactions between respiration, inhibition, and olfaction, \r\nexperiments using light to active channel rhodopsin in sensory neurons expressing Olfactory Marker Protein were performed in mice and modeled in silico.\r\nThis archive contains NEURON models that were run on parallel computers to explore the interactions between varying strengths of respiratory activity and olfactory sensory neuron input and the roles of periglomerular, granule, and external tufted cells in shaping mitral cell responses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183300",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shaina.short@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T18:31:32.337",
+ "ver_number": 25
+ },
+ "183371": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Sweeney Y, Hellgren Kotaleski J, Hennig MH (2015) A Diffusive Homeostatic Signal Maintains Neural Heterogeneity and Responsiveness in Cortical Networks. PLoS Comput Biol 11(7): e1004389. doi: 10.1371/journal.pcbi.1004389"
+ },
+ "class_id": 19,
+ "created": "2015-07-16T08:23:01.75",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 183371,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 183422,
+ "object_name": "Sweeney, Yann [yann.sweeney at ed.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 183421,
+ "object_name": "Volume transmission"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 183373,
+ "object_name": "Sweeney Y, Hellgren Kotaleski J, Hennig MH (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Diffusive homeostasis in a spiking network model (Sweeney et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 226,
+ "object_name": "NO"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper we propose a new mechanism, diffusive homeostasis, in which neural excitability is modulated by nitric oxide, a gas which can flow freely across cell membranes. Our model simulates the activity-dependent synthesis and diffusion of nitric oxide in a recurrent network model of integrate-and-fire neurons. The concentration of nitric oxide is then used as homeostatic readout which modulates the firing threshold of each neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183371",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Volume transmission"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yann.sweeney@ed.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 2375,
+ "object_name": "NO"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T13:52:16.123",
+ "ver_number": 12
+ },
+ "183424": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 26142457"
+ },
+ "class_id": 19,
+ "created": "2015-07-18T04:26:16.887",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 183424,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189098,
+ "object_name": "Kubota, Yoshi [yoshiy at nips.ac.jp]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189096,
+ "object_name": "Kubota Y, Kondo S, Nomura M, Hatada S, Yamaguchi N, Mohamed AA, Karube F, L\u00fcbke J, Kawaguchi Y (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A Layer V CCS type pyramidal cell, inhibitory synapse current conduction (Kubota Y et al., 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A layer V crossed-corticostriatal (CCS) \u2018slender untufted\u2019 pyramidal cell model of rat frontal cortex was built using Neurolucida tracing as well as 3D reconstructed dendrites of serial electron micrographs to give the model as authentic morphology as possible."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183424",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yoshiy@nips.ac.jp"
+ },
+ "ver_date": "2017-07-03T22:02:59.183",
+ "ver_number": 6
+ },
+ "183718": {
+ "class_id": 19,
+ "created": "2015-07-23T18:05:06.387",
+ "gitrepo": false,
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 183718,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 186894,
+ "object_name": "Tikidji-Hamburyan, Ruben [ruben.tikidji.hamburyan at gmail.com] "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 186893,
+ "object_name": "Tikidji-Hamburyan RA, Mart\u00ednez JJ, White JA, Canavier CC (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "PIR gamma oscillations in network of resonators (Tikidji-Hamburyan et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 128565,
+ "object_name": "Wide dynamic range neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... The coupled oscillator model implemented with Wang\u2013Buzsaki model neurons is not\r\nsufficiently robust to heterogeneity in excitatory drive, and therefore intrinsic frequency, to account for in vitro models of ING. Similarly, in a\r\ntightly synchronized regime, the stochastic population oscillator model is often characterized by sparse firing, whereas interneurons both in vivo\r\nand in vitro do not fire sparsely during gamma,but rather on average every other cycle. We substituted so-called resonator neural models, which\r\nexhibit class 2 excitability and postinhibitory rebound (PIR), for the integrators that are typically used. This results in much greater robustness\r\nto heterogeneity that actually increases as the average participation in spikes per cycle approximates physiological levels. Moreover, dynamic\r\nclamp experiments that show autapse-induced firing in entorhinal cortical interneurons support the idea that PIR can serve as a network gamma\r\nmechanism. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183718",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tikidji-Hamburyan, Ruben [rath@gwu.edu]"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "NEURON+Python"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rtikid@lsuhsc.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2015-12-17T17:48:58.303",
+ "ver_number": 12
+ },
+ "183722": {
+ "class_id": 19,
+ "created": "2015-07-31T19:20:37.617",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122807,
+ "object_name": "HERG KCNH2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 183722,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 183721,
+ "object_name": "Yu N, Canavier CC (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Phase plane reveals two slow variables in midbrain dopamine neuron bursts (Yu and Canavier, 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Midbrain dopamine neurons exhibit a novel type of bursting that we call \u201cinverted square wave bursting\u201d when exposed to Ca2+-activated small conductance (SK) K+ channel blockers in vitro. This type of bursting has three phases: hyperpolarized silence, spiking, and depolarization block. We find that two slow variables are required for this type of bursting, and we show that the three-dimensional bifurcation diagram for inverted square wave bursting is a folded surface with upper (depolarized) and lower (hyperpolarized) branches. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183722",
+ "ver_date": "2015-07-31T19:58:00.81",
+ "ver_number": 6
+ },
+ "183948": {
+ "class_id": 19,
+ "created": "2015-08-06T21:47:05.183",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 183948,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128503,
+ "object_name": "Goldwyn, Joshua [jhgoldwyn at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ },
+ {
+ "object_id": 183995,
+ "object_name": "Ephaptic coupling"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187475,
+ "object_name": "Goldwyn JH, Rinzel J (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Ephaptic coupling in passive cable and MSO neuron models (Goldwyn & Rinzel 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88110,
+ "object_name": "Medial Superior Olive (MSO) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulation code to explore how the synchronous activity of a bundle of neurons generates extracellular voltage, and how this extracellular voltage influences the membrane potential of \"nearby\" neurons. A non-synaptic mechanism known as ephaptic coupling. A model of a passive cable population (including user-friendly matlab GUI) and a model of medial superior olive neurons are included."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183948",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ephaptic coupling"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jhgoldwyn@gmail.com"
+ },
+ "ver_date": "2016-02-01T15:01:47.963",
+ "ver_number": 8
+ },
+ "183949": {
+ "class_id": 19,
+ "created": "2015-08-07T14:29:27.56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122327,
+ "object_name": "Kv1.2 KCNA2"
+ },
+ {
+ "object_id": 122822,
+ "object_name": "Kv1.9 Kv7.1 KCNQ1"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 183949,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83510,
+ "object_name": "Powers, Randy [rkpowers at u.washington.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 183084,
+ "object_name": "Powers RK, Heckman CJ (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Discharge hysteresis in motoneurons (Powers & Heckman 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Motoneuron\r\nactivity is strongly influenced by the activation of persistent\r\ninward currents (PICs) mediated by voltage-gated sodium and calcium\r\nchannels. ... It has recently been suggested that a number\r\nof factors other than PIC can contribute to delta F (firing rate differences between motoneurons) values, including\r\nmechanisms underlying spike frequency adaptation and spike threshold\r\naccommodation. In the present study, we used a set of compartmental\r\nmodels representing a sample of 20 motoneurons with a range\r\nof thresholds to investigate how several different intrinsic motoneuron\r\nproperties can potentially contribute to variations in F values. ... Our results indicate that, although other\r\nfactors can contribute, variations in discharge hysteresis and delta F\r\nvalues primarily reflect the contribution of dendritic PICs to motoneuron\r\nactivation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/183949",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2022-11-04T13:12:03.773",
+ "ver_number": 13
+ },
+ "184054": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Dendritic sodium spikes are required for long-term potentiation at distal synapses on hippocampal pyramidal neurons\r\nYujin Kim*, Ching-Lung Hsu*, Mark Cembrowski, Brett Mensh, Nelson Spruston\r\neLife 2015;10.7554/eLife.06414\r\nDOI: http://dx.doi.org/10.7554/eLife.06414"
+ },
+ "class_id": 19,
+ "created": "2015-08-13T10:24:57.287",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184054,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 184057,
+ "object_name": "Cembrowski, Mark S [cembrowskim at janelia.hhmi.org]"
+ },
+ {
+ "object_id": 184058,
+ "object_name": "Hsu, Ching-Lung [hsuc at janelia.hhmi.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 184056,
+ "object_name": "Kim Y, Hsu CL, Cembrowski MS, Mensh BD, Spruston N (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: Dendritic Na+ spikes are required for LTP at distal synapses (Kim et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model simulates the effects of dendritic sodium spikes initiated in distal apical dendrites on the voltage and the calcium dynamics revealed by calcium imaging. It shows that dendritic sodium spike promotes large and transient calcium influxes via NMDA receptor and L-type voltage-gated calcium channels, which contribute to the induction of LTP at distal synapses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184054",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hsuc@janelia.hhmi.org"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-06-12T11:14:18.773",
+ "ver_number": 13
+ },
+ "184139": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Jung Ho Hyun, Kisang Eom, Kyu-Hee Lee, Jin Young Bae, Yong Chul Bae, Myoung-Hwan Kim, Sooyun Kim, Won-Kyung Ho and Suk-Ho Lee (2015) Kv1.2 mediates heterosynaptic modulation of direct cortical synaptic inputs in CA3 pyramidal cells. J. Physiol. 593(16): 3617-3643."
+ },
+ "class_id": 19,
+ "created": "2015-08-15T01:42:19.723",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122327,
+ "object_name": "Kv1.2 KCNA2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 184139,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187083,
+ "object_name": "Hyun JH, Eom K, Lee KH, Bae JY, Bae YC, Kim MH, Kim S, Ho WK, Lee SH (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA3 pyramidal neurons: Kv1.2 mediates modulation of cortical inputs (Hyun et al., 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model simulates the contribution of dendritic Na+ and D-type K+ channels to EPSPs at three different locations of apical dendrites, which mimicking innervation sites of mossy fibers (MF), recurrent fibers (AC), and perforant pathway (PP)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184139",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "leesukho@snu.ac.kr"
+ },
+ "ver_date": "2016-01-07T16:18:49.893",
+ "ver_number": 6
+ },
+ "184140": {
+ "class_id": 19,
+ "created": "2015-08-17T00:18:55.237",
+ "gitrepo": false,
+ "id": 184140,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146501,
+ "object_name": "Nicola, Wilten [wnicola at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185336,
+ "object_name": "Ferguson KA, Njap F, Nicola W, Skinner FK, Campbell SA (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Mean-field systems and small scale neural networks (Ferguson et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We explore adaptation induced bursting as a mechanism for theta oscillations in hippocampal area CA1. To do this, we have developed a mean-field system for a network of fitted Izhikevich neurons with sparse coupling and heterogeneity. The code contained here runs the mean-field system pointwise or on a two-parameter mesh, in addition to networks of neurons that are smaller then those considered in the paper. The file README.pdf contains instructions on use. \r\n\r\nNote that the following file (peakfinder): \r\n\r\nhttp://www.mathworks.com/matlabcentral/fileexchange/25500-peakfinder-x0--sel--thresh--extrema--includeendpoints--interpolate-\r\n\r\nis required to compute burst frequencies in the mean-field system and must be downloaded and placed in the same root folder as MFSIMULATOR.mat"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184140",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wnicola@uwaterloo.ca"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2015-12-21T15:27:33.037",
+ "ver_number": 8
+ },
+ "184141": {
+ "citation": {
+ "attr_id": 391,
+ "value": "C.Vich and A.Guillamon (2015), preprint accepted to Journal of Computational Neuroscience"
+ },
+ "class_id": 19,
+ "created": "2015-08-17T05:28:22.683",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184141,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 184150,
+ "object_name": "Vich, Catalina [catalina.vich at uib.es]"
+ },
+ {
+ "object_id": 184151,
+ "object_name": "Guillamon, Antoni "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 243515,
+ "object_name": "Conductances estimation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185758,
+ "object_name": "Vich C, Guillamon A (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Estimation of conductance in a conductance-based model of quadratic type (Vich & Guillamon 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We assume to have a quadratic approximation of a conductance-based neuron model,\u00a0as in H.Rotstein (2015). Given the resulting membrane potential (v) and\u00a0the course of the gating variable (w), this program estimates the synaptic\u00a0current that the neuron is receiving at each time.\u00a0\r\n\u00a0 Moreover, given the voltage traces for two different applied (steady) currents and the excitatory and inhibitory reversal potentials, the program estimates the excitatory and\u00a0inhibitory conductances separately.\r\n\u00a0 Finally, the program gives the option of estimating the synaptic conductance. This conductance can be estimated in two different ways: (1) if only one voltage trace is given, the synaptic conductance is estimated using the synaptic reversal potential; (2) however, if two voltage traces are given (for two different applied currents), then the synaptic conductance can be either estimated using the synaptic reversal potential or the leak conductance."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184141",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "estimation of conductance"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Vich, Catalina and Guillamon, Antoni "
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "conductance-based model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "catalina.vich@uib.es"
+ },
+ "ver_date": "2018-06-25T15:51:52.947",
+ "ver_number": 22
+ },
+ "184142": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184144,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T08:56:17.353",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184142,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 4 329321704",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg3-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184142",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:20:16.447",
+ "ver_number": 9
+ },
+ "184145": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184146,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T09:07:21.117",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184145,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 6a 471081668",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184136,
+ "object_name": "Neocortex layer 6a interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 6a of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184145",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:20:28.067",
+ "ver_number": 9
+ },
+ "184148": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184149,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T10:24:09.62",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184148,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 4 329322394",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184148",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:20:40.983",
+ "ver_number": 9
+ },
+ "184152": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184153,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T10:31:59.153",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184152,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 471085845",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184152",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:20:52.81",
+ "ver_number": 8
+ },
+ "184157": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184158,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T10:37:59.933",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184157,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Sst-IRES-Cre VISp layer 2/3 471086533",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Sst-IRES-Cre neuron from layer 2/3 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184157",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-06-08T16:35:44.173",
+ "ver_number": 7
+ },
+ "184159": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184160,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T10:42:46.163",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184159,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 5 471087975",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227971,
+ "object_name": "Neocortex V1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Rorb-IRES2-Cre-D neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184159",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:21:06.373",
+ "ver_number": 10
+ },
+ "184161": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 266824,
+ "object_name": "Standalone NEURON python3"
+ },
+ {
+ "object_id": 184162,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T10:47:57.473",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184161,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 2/3 472299294",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Rorb-IRES2-Cre-D neuron from layer 2/3 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184161",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:21:23.48",
+ "ver_number": 8
+ },
+ "184163": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184165,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T10:53:04.02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184163,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Sst-IRES-Cre VISp layer 5 472299363",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Sst-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184163",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-06-08T16:36:31.37",
+ "ver_number": 8
+ },
+ "184166": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184167,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T10:56:43.653",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184166,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 4 472300877",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg2-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184166",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:21:38.503",
+ "ver_number": 8
+ },
+ "184168": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184169,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:01:09.193",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184168,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 6a 472301074",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184136,
+ "object_name": "Neocortex layer 6a interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 6a of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184168",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:21:58.757",
+ "ver_number": 9
+ },
+ "184171": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184172,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:04:42.063",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184171,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Sst-IRES-Cre VISp layer 4 472304539",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184132,
+ "object_name": "Neocortex layer 4 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Sst-IRES-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184171",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:22:10.6",
+ "ver_number": 9
+ },
+ "184173": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184174,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:09:39.747",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184173,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Sst-IRES-Cre VISp layer 2/3 472304676",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Sst-IRES-Cre neuron from layer 2/3 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184173",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:22:21.867",
+ "ver_number": 9
+ },
+ "184175": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Gurney, K. N., Humphries, M. D., & Redgrave, P. (2015). A New Framework for Cortico-Striatal Plasticity: Behavioural Theory Meets In Vitro Data at the Reinforcement-Action Interface. PLoS Biology, 13(1), e1002034. http://doi.org/10.1371/journal.pbio.1002034"
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:10:02.95",
+ "gitrepo": false,
+ "id": 184175,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33786,
+ "object_name": "Gurney, Kevin [K.Gurney at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 181033,
+ "object_name": "Gurney KN, Humphries MD, Redgrave P (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Cortico-striatal plasticity in medium spiny neurons (Gurney et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In the associated paper (Gurney et al, PLoS Biology, 2015) we presented a computational framework that addresses several issues in cortico-striatal plasticity including spike timing, reward timing, dopamine level, and dopamine receptor type. Thus, we derived a complete model of dopamine and spike-timing dependent cortico-striatal plasticity from in vitro data. We then showed this model produces the predicted activity changes necessary for learning and extinction in an operant task. Moreover, we showed the complex dependencies of cortico-striatal plasticity are not only sufficient but necessary for learning and extinction. The model was validated in a wider setting of action selection in basal ganglia, showing how it could account for behavioural data describing extinction, renewal, and reacquisition, and replicate in vitro experimental data on cortico-striatal plasticity. The code supplied here allows reproduction of the proposed process of learning in medium spiny neurons, giving the results of Figure 7 of the paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184175",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "k.gurney@shef.ac.uk"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ }
+ ]
+ },
+ "ver_date": "2015-08-17T13:36:12.51",
+ "ver_number": 4
+ },
+ "184176": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184177,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:13:16.083",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184176,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 5 472306460",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227971,
+ "object_name": "Neocortex V1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg2-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184176",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:22:35.547",
+ "ver_number": 9
+ },
+ "184178": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184179,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:22:59.903",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184178,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 4 472306544",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184178",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:22:51.103",
+ "ver_number": 6
+ },
+ "184180": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184181,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:26:53.117",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184180,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 2/3 472306616",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 2/3 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184180",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:23:06.207",
+ "ver_number": 8
+ },
+ "184182": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184183,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:30:08.127",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184182,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 472349114",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184182",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-06-08T16:32:49.133",
+ "ver_number": 7
+ },
+ "184184": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184185,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:34:08.177",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184184,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Htr3a-Cre VISp layer 2/3 472352327",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Htr3a-Cre neuron from layer 2/3 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184184",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:23:21.52",
+ "ver_number": 6
+ },
+ "184186": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184187,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:37:48.417",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184186,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 4 472363762",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg3-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184186",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:23:35.117",
+ "ver_number": 7
+ },
+ "184196": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184197,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:41:23.72",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184196,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Htr3a-Cre VISp layer 2/3 472421285",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Htr3a-Cre neuron from layer 2/3 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184196",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:23:48.09",
+ "ver_number": 6
+ },
+ "184202": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184203,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:47:20.967",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184202,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 4 472427533",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg2-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184202",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:24:01.403",
+ "ver_number": 7
+ },
+ "184231": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184232,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:50:37.57",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184231,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 2/3 472434498",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Rorb-IRES2-Cre-D neuron from layer 2/3 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184231",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:24:13.2",
+ "ver_number": 9
+ },
+ "184274": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184278,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T11:55:17.61",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184274,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Sst-IRES-Cre VISp layer 6a 472440759",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184136,
+ "object_name": "Neocortex layer 6a interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Sst-IRES-Cre neuron from layer 6a of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184274",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:24:29.047",
+ "ver_number": 11
+ },
+ "184297": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184298,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:06:33.95",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184297,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 4 472442377",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184297",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:24:41.037",
+ "ver_number": 7
+ },
+ "184299": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184300,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:10:46.76",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184299,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Gad2-IRES-Cre VISp layer 5 472447460",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Gad2-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184299",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-03T10:14:51.123",
+ "ver_number": 13
+ },
+ "184301": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184302,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:13:38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184301,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Sst-IRES-Cre VISp layer 5 472450023",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Sst-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184301",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:25:06.487",
+ "ver_number": 7
+ },
+ "184303": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184304,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:17:21.01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184303,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 4 472451419",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184303",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:25:18.18",
+ "ver_number": 6
+ },
+ "184305": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184306,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:20:26.217",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184305,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 5 472455509",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg3-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184305",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:25:33.07",
+ "ver_number": 6
+ },
+ "184308": {
+ "class_id": 19,
+ "created": "2015-08-17T13:23:11.08",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184308,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 4 472912107",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg2-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184308",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:25:48.79",
+ "ver_number": 11
+ },
+ "184310": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184311,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:27:34.71",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184310,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 472912177",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184310",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:26:04.603",
+ "ver_number": 9
+ },
+ "184312": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184313,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:31:44.877",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184312,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 4 473465456",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg2-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184312",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:26:17.7",
+ "ver_number": 7
+ },
+ "184314": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184315,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:35:39.103",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184314,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 5 473561660",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Rorb-IRES2-Cre-D neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184314",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:26:31.427",
+ "ver_number": 9
+ },
+ "184316": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184317,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:39:04.33",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184316,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Gad2-IRES-Cre VISp layer 5 473561729",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Gad2-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184316",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:26:45.067",
+ "ver_number": 6
+ },
+ "184319": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184320,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:45:11.86",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184319,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 4 473834758",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184319",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:26:57.637",
+ "ver_number": 8
+ },
+ "184321": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184322,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:48:56.243",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184321,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Sst-IRES-Cre VISp layer 5 473835796",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Sst-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184321",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:27:11.687",
+ "ver_number": 7
+ },
+ "184323": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184324,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:51:39.267",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184323,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 6a 473860269",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184136,
+ "object_name": "Neocortex layer 6a interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 6a of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184323",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:27:27.977",
+ "ver_number": 7
+ },
+ "184325": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184326,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:56:15.76",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184325,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 473862421",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184325",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:27:38.687",
+ "ver_number": 8
+ },
+ "184327": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184328,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T13:59:03.957",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184327,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 2/3 473862496",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 2/3 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184327",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:27:51.347",
+ "ver_number": 8
+ },
+ "184329": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184330,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T14:03:26.607",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184329,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 4 473862845",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg3-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184329",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:28:02.933",
+ "ver_number": 6
+ },
+ "184331": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184332,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T14:34:39.67",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184331,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 4 473863035",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184331",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:28:14.937",
+ "ver_number": 8
+ },
+ "184333": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184334,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T14:42:58.987",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184333,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 4 473863510",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Rorb-IRES2-Cre-D neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184333",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:28:26.723",
+ "ver_number": 7
+ },
+ "184335": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 190566,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T14:46:55.87",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184335,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 5 473863578",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg3-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184335",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-03T16:58:28.82",
+ "ver_number": 11
+ },
+ "184337": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184338,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T14:51:50.163",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184337,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 4 473871429",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184337",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:28:50.893",
+ "ver_number": 7
+ },
+ "184339": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184340,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T14:56:29.083",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184339,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Rbp4-Cre VISp layer 6a 473871592",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227971,
+ "object_name": "Neocortex V1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Rbp4-Cre neuron from layer 6a of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184339",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:29:05.073",
+ "ver_number": 7
+ },
+ "184341": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184342,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-17T15:00:26.343",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184341,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 5 473871773",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227971,
+ "object_name": "Neocortex V1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg3-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184341",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:29:16.747",
+ "ver_number": 8
+ },
+ "184344": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184345,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-18T15:03:49.947",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184344,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 4 473872986",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Scnn1a-Tg3-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184344",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:29:29.39",
+ "ver_number": 7
+ },
+ "184346": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184347,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-18T15:13:20.613",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184346,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Rbp4-Cre VISp layer 5 472424854",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227971,
+ "object_name": "Neocortex V1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Rbp4-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184346",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:29:40.93",
+ "ver_number": 8
+ },
+ "184348": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184349,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-18T15:28:06.537",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184348,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Ntsr1-Cre VISp layer 4 472430904",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 230186,
+ "object_name": "Neocortex V1 L4 stellate GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Ntsr1-Cre neuron from layer 6a of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184348",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:29:52.843",
+ "ver_number": 8
+ },
+ "184350": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 184351,
+ "object_name": "Standalone NEURON"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-08-18T15:36:29.16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "Allen SDK"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184350,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 473465774",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Pvalb-IRES-Cre neuron from layer 5 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184350",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:30:04.847",
+ "ver_number": 8
+ },
+ "184352": {
+ "class_id": 19,
+ "created": "2015-08-19T17:15:50.033",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184352,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 182684,
+ "object_name": "Allen Institute (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Allen Institute: Nr5a1-Cre VISp layer 4 472915634",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an Allen Cell Types Database model of a Nr5a1-Cre neuron from layer 4 of the mouse primary visual cortex. The model was based on a traced morphology after filling the cell with biocytin and optimized using experimental electrophysiology data recorded from the same cell. The electrophysiology data was collected in a highly standardized way to facilitate comparison across all cells in the database. The model was optimized by a genetic algorithm that adjusted the densities of conductances placed at the soma to match experimentally-measured features of action potential firing. Data and models from the Allen Cell Types Database are made available to the community under the Allen Institute's Terms of Use and Citation Policy."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184352",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:30:19.15",
+ "ver_number": 4
+ },
+ "184404": {
+ "class_id": 19,
+ "created": "2015-08-20T03:01:49.447",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 184409,
+ "object_name": "I MI"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184404,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 118002,
+ "object_name": "Stein W, Straub O, Ausborn J, Mader W, Wolf H (2008)"
+ },
+ {
+ "object_id": 118123,
+ "object_name": "Ausborn J, Stein W, Wolf H (2007)"
+ },
+ {
+ "object_id": 184405,
+ "object_name": "St\u00e4dele C, Heigele S, Stein W (2015)"
+ },
+ {
+ "object_id": 184583,
+ "object_name": "Daur N, Diehl F, Mader W, Stein W (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 118095,
+ "object_name": "MadSim"
+ }
+ ]
+ },
+ "name": "Interaction of leak and IMI conductance on the STG over broad temperature range (Stadele et al 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114303,
+ "object_name": "Stomatogastric Ganglion (STG) Lateral Gastric (LG) cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 184582,
+ "object_name": "CabTRP 1a"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The ZIP file contains a Hodgkin-Huxley based circuit model and the simulation environment MadSim used to study the interaction of leak and IMI on the gastric mill network of the crab (Cancer borealis) as represented in (C. St\u00e4dele, S. Heigele and W. Stein, 2015)\r\n\r\nMadSim, the simulation environment used for this study, is freeware and included in the package."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184404",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I MI"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Stomatogastric ganglion gastric mill CPG"
+ },
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "CabTRP 1a"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "carola@nruobiologie.de"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "ver_date": "2017-01-13T12:19:58.507",
+ "ver_number": 20
+ },
+ "184410": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Synaptic Efficacy as a Function of Ionotropic Receptor Distribution: A Computational Study\r\nPLOS One 2015"
+ },
+ "class_id": 19,
+ "created": "2015-08-20T20:11:10.41",
+ "gitrepo": false,
+ "id": 184410,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 184411,
+ "object_name": "Allam, Sushmita [sushmita.allam at gmail.com]"
+ },
+ {
+ "object_id": 184412,
+ "object_name": "Bouteiller, Jean-Marie C [jbouteil at usc.edu]"
+ },
+ {
+ "object_id": 184413,
+ "object_name": "Hu, Eric [ehu at usc.edu]"
+ },
+ {
+ "object_id": 184423,
+ "object_name": "Ambert, Nicolas [nicolas.ambert at rhenovia.com]"
+ },
+ {
+ "object_id": 184424,
+ "object_name": "Greget, Renaud [renaud.greget at rhenovia.com]"
+ },
+ {
+ "object_id": 184425,
+ "object_name": "Bischoff, Serge [serge.bischoff at rhenovia.com"
+ },
+ {
+ "object_id": 184426,
+ "object_name": "Baudry, Michel [michel.baudry at rhenovia.com]"
+ },
+ {
+ "object_id": 184427,
+ "object_name": "Berger, Theodore W. [berger at usc.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187275,
+ "object_name": "Allam SL, Bouteiller JM, Hu EY, Ambert N, Greget R, Bischoff S, Baudry M, Berger TW (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 184414,
+ "object_name": "SBML"
+ },
+ {
+ "object_id": 184421,
+ "object_name": "LibRoadRunner"
+ }
+ ]
+ },
+ "name": "Response of AMPA receptor kinetic model to glutamate release distance (Allam et al., 2015)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These files model the response of an AMPA receptor kinetic model to the release (and diffusion) of glutamate as a function of distance between receptor and release site."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184410",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Allam, Sushmita \r\nBouteiller, Jean-Marie C \r\nHu, Eric \r\nAmbert, Nicolas \r\nGreget, Renaud \r\nBischoff, Serge \r\nBaudry, Michel \r\nBerger, Theodore W. "
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "LibRoadRunner"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jbouteil@usc.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2016-01-21T15:03:07.963",
+ "ver_number": 20
+ },
+ "184479": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Nichols, E., Hutt, A., 2015. Open-source numerical simulation tool for two-dimensional neural fields involving finite axonal transmission speed. International Conference on Mathematical NeuroScience, Antibes Juan-les-Pins, France. June 2015.\r\n\r\nNichols, E., Green, K., Hutt, A., van Veen, L., 2014. Two-dimensional patterns in neural fields subject to finite transmission speed. BMC Neuroscience 15(1), p.16.\r\n\r\nNichols, E., Hutt, A., 2014. Two-dimensional neural field simulator with parameter interface and 3D visualization. International Conference on Neural Field Theory, Reading, U.K., June 2014.\r\n\r\nNichols, E., Hutt, A., 2013. Neural field simulator: fast computation and 3D-visualization. BMC Neuroscience 14(1), p.179."
+ },
+ "class_id": 19,
+ "created": "2015-08-26T07:18:18.45",
+ "gitrepo": false,
+ "id": 184479,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 187111,
+ "object_name": "Nichols, Eric J [ericjnichols at gmail.com]"
+ },
+ {
+ "object_id": 187112,
+ "object_name": "Hutt, Axel [axel.hutt @ inria.fr]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 184480,
+ "object_name": "Nichols E, Green K, Hutt A (2015)"
+ },
+ {
+ "object_id": 184483,
+ "object_name": "Nichols E, Green K, Hutt A, van Veen L (2014)"
+ },
+ {
+ "object_id": 184485,
+ "object_name": "Nichols E, Hutt A (2014)"
+ },
+ {
+ "object_id": 184486,
+ "object_name": "Nichols E, Hutt A (2013)"
+ },
+ {
+ "object_id": 187109,
+ "object_name": "Nichols EJ, Hutt A (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 187110,
+ "object_name": "Neural Field Simulator"
+ }
+ ]
+ },
+ "name": "Neural Field Simulator (Nichols & Hutt 2012-2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The NeuralFieldSimulator considers scalar spatially homogeneous neural fields taking into account finite axonal transmission speed and synaptic temporal derivatives of first and second order. A text-based interface offers complete control of field parameters and several approaches are used to accelerate simulations. A graphical output utilizes video hardware acceleration to display running output with reduced computational cost compared to exclusively software-based simulators. Diverse applications of simulations include breather oscillations, static and dynamic Turing patterns and activity spreading with finite propagation speed."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184479",
+ "other_type": {
+ "attr_id": 305,
+ "value": "Neural Field"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ericjnichols@gmail.com"
+ },
+ "ver_date": "2016-01-12T10:52:24.21",
+ "ver_number": 7
+ },
+ "184487": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Rui Ponte Costa, Robert C Froemke, Per Jesper Sj\u00f6str\u00f6m, Mark C W van Rossum - Unified pre- and postsynaptic long-term plasticity enables reliable and flexible learning, eLife 2015;10.7554/eLife.09457"
+ },
+ "class_id": 19,
+ "created": "2015-08-26T14:35:46.22",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184487,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149959,
+ "object_name": "Costa, Rui Ponte [ruipontecosta at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237563,
+ "object_name": "Costa RP, Froemke RC, Sj\u00f6str\u00f6m PJ, van Rossum MC (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Memory savings through unified pre- and postsynaptic STDP (Costa et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 226,
+ "object_name": "NO"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 184489,
+ "object_name": "Endocannabinoid"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Although it is well known that long-term synaptic plasticity can be expressed both pre- and postsynaptically, the functional consequences of this arrangement have remained elusive. We show that spike-timing-dependent plasticity with both pre- and postsynaptic expression develops receptive fields with reduced variability and improved discriminability compared to postsynaptic plasticity alone. These long-term modifications in receptive field statistics match recent sensory perception experiments. In these simulations we demonstrate that learning with this form of plasticity leaves a hidden postsynaptic memory trace that enables fast relearning of previously stored information, providing a cellular substrate for memory savings. Our results reveal essential roles for presynaptic plasticity that are missed when only postsynaptic expression of long-term plasticity is considered, and suggest an experience-dependent distribution of pre- and postsynaptic strength changes."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184487",
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "Endocannabinoid"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ruipontecosta@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T13:54:42.04",
+ "ver_number": 14
+ },
+ "184491": {
+ "class_id": 19,
+ "created": "2015-09-01T13:46:12.727",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184491,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230781,
+ "object_name": "Pavlides, Alex "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225773,
+ "object_name": "Pavlides A, Hogan SJ, Bogacz R (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Excessive beta oscillations in Parkinson's disease (Pavlides et al. 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Understanding the generation of beta oscillations is important to improve treatments for Parkinson\u2019s disease. Competing theories exist for how these oscillations are generated in the affected brain circuits, which include the motor cortex and a set of subcortical nuclei called the basal ganglia. This paper suggests two hypotheses for the generation of beta oscillations. The first hypothesis is that beta oscillations are generated in the motor cortex, and the basal ganglia resonate to the cortical input. The second hypothesis additionally proposes that feedback from the basal ganglia to cortex is critically important for the presence of the oscillations. We show that the models can successfully account for a wide range of experimental data concerning the presence of beta oscillations in Parkinson\u2019s disease.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184491",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "alex.pavlides@hotmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2017-07-14T17:36:02.823",
+ "ver_number": 6
+ },
+ "184497": {
+ "class_id": 19,
+ "created": "2015-09-02T17:38:24.377",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184497,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206978,
+ "object_name": "Rumbell TH, Draguljic D, Yadav A, Hof PR, Luebke JI, Weaver CM (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Rhesus Monkey Young and Aged L3 PFC Pyramidal Neurons (Rumbell et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A stereotypical pyramidal neuron morphology with ion channel parameter combinations that reproduce firing patterns of one young and one aged rhesus monkey L3 PFC pyramidal neurons. Parameters were found through an automated optimization method."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184497",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timrumbell@gmail.com"
+ },
+ "ver_date": "2018-01-06T13:35:35.133",
+ "ver_number": 7
+ },
+ "184545": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Front Syst Neurosci. 2015 Aug 7;9:110. doi: 10.3389/fnsys.2015.00110. eCollection 2015.\r\n\r\nNetwork models provide insights into how oriens-lacunosum-moleculare and bistratified cell interactions influence the power of local hippocampal CA1 theta oscillations.\r\nFerguson KA, Huh CY, Amilhon B, Manseau F, Williams S, Skinner FK."
+ },
+ "class_id": 19,
+ "created": "2015-09-04T15:37:25.157",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184545,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 184546,
+ "object_name": "Ferguson KA, Huh CY, Amilhon B, Manseau F, Williams S, Skinner FK (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CA1 SOM+ (OLM) hippocampal interneuron (Ferguson et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This two-variable simple model is derived based on patch-clamp recordings from the CA1 region of a whole hippocampus preparation of SOM+ inhibitory cells. \r\n\r\nThe model code will also be made available on OSB."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184545",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "frances.skinner@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T11:58:29.267",
+ "ver_number": 7
+ },
+ "184725": {
+ "class_id": 19,
+ "created": "2015-09-09T18:00:44.153",
+ "gitrepo": false,
+ "id": 184725,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124046,
+ "object_name": "Polsky, Alon [alonpol at tx.technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 140740,
+ "object_name": "Polsky A, Mel B, Schiller J (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "NMDA spikes in basal dendrites of L5 pyramidal neurons (Polsky et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nIn apical\r\ndendrites of neocortical pyramidal neurons, calcium spikes are known\r\nto contribute to burst generation, but a comparable understanding of\r\nbasal dendritic mechanisms is lacking. Here we show that NMDA spikes\r\nin basal dendrites mediate both detection and generation of bursts\r\nthrough a postsynaptic mechanism. \r\n\r\nHigh-frequency inputs to basal\r\ndendrites markedly facilitated NMDA spike initiation compared with\r\nlow-frequency activation or single inputs.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184725",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2015-09-09T18:02:08.89",
+ "ver_number": 2
+ },
+ "184731": {
+ "citation": {
+ "attr_id": 391,
+ "value": "In final revisions for PLoS Comp Biol"
+ },
+ "class_id": 19,
+ "created": "2015-09-11T16:11:29.38",
+ "gitrepo": false,
+ "id": 184731,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187057,
+ "object_name": "Chay A, Zamparo I, Koschinski A, Zaccolo M, Blackwell KT (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal cell receptor dependent cAMP dynamics (Chay et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We use a combination of live cell imaging and stochastic modeling of signaling pathways to investigate how noradrenergic receptor stimulation interacts with calcium to control cAMP, required for synaptic plasticity and memory in the hippocampus. Our simulation results explain the mechanism whereby prior noradrenergic receptor stimulation does not enhance the subsequent NMDA stimulated cAMP elevation. Specifically, our results demonstrate the the negative feedback loop from cAMP, through PKA, to PDE4 cannot explain the results, and that switching of the noradrenergic receptor from Gs to Gi is required."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184731",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 215,
+ "object_name": "Adrenergic"
+ }
+ ]
+ },
+ "ver_date": "2016-03-14T14:50:52.88",
+ "ver_number": 6
+ },
+ "184732": {
+ "citation": {
+ "attr_id": 391,
+ "value": "\"Variability in respiratory rhythm generation: in vitro and in silico models\", C Fietkiewicz, GO Shafer, EA Platt, CG Wilson, Communications in Nonlinear Science and Numerical Simulation, Volume 32, March 2016, Pages 158\u2013168 (doi: 10.1016/j.cnsns.2015.08.018)"
+ },
+ "class_id": 19,
+ "created": "2015-09-11T18:08:20.683",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 184732,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 122331,
+ "object_name": "Noise Sensitivity"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 232102,
+ "object_name": "Respiratory control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185010,
+ "object_name": "Fietkiewicz C, Shafer GO, Platt EA, Wilson CG (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "pre-B\u00f6tzinger complex variability (Fietkiewicz et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 125611,
+ "object_name": "Respiratory column neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Based on\r\nexperimental observations, we developed a computational model that can\r\nbe embedded in more comprehensive models of respiratory and\r\ncardiovascular autonomic control. Our simulation results successfully\r\nreproduce the variability we observed experimentally. The in silico\r\nmodel suggests that age-dependent variability may be due to a\r\ndevelopmental increase in mean synaptic conductance between preB\u00f6tC\r\nneurons. We also used simulations to explore the effects of stochastic\r\nspiking in sensory relay neurons. Our results suggest that stochastic\r\nspiking may actually stabilize modulation of both respiratory rate and\r\nits variability when the rate changes due to physiological demand.\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/184732",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cxf47@case.edu"
+ },
+ "ver_date": "2021-05-22T13:58:04.617",
+ "ver_number": 6
+ },
+ "185014": {
+ "class_id": 19,
+ "created": "2015-09-14T04:19:02.81",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 185014,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226071,
+ "object_name": "David F, Courtiol E, Buonviso N, Fourcaud-Trocm\u00e9 N (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Gamma-beta alternation in the olfactory bulb (David, Fourcaud-Trocm\u00e9 et al., 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model, a simplified olfactory bulb network with mitral and granule cells, proposes a framework for two regimes of oscillation in the olfactory bulb: \r\n1 - a weak inhibition regime (with no granule spike) where the network oscillates in the gamma (40-90Hz) band\r\n2 - a strong inhibition regime (with granule spikes) where the network oscillates in the beta (15-30Hz) band.\r\nSlow modulations of sensory and centrifugal inputs, phase shifted by a quarter of cycle, possibly combined with short term depression of the mitral to granule AMPA synapse, allows the network to alternate between the two regimes as observed in anesthetized animals."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185014",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Beta oscillations"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nicolas.fourcaud-trocme@cnrs.fr"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2021-03-10T11:15:42.71",
+ "ver_number": 16
+ },
+ "185021": {
+ "citation": {
+ "attr_id": 391,
+ "value": "K.A. Ferguson*, F. Njap*, W. Nicola*, F.K. Skinner#, S.A. Campbell# (2015) \"Examining the limits of cellular adaptation bursting mechanisms in biologically-based excitatory networks of the hippocampus\". Journal of Computational Neuroscience (accepted)\r\n(* shared first authors, #shared senior authors)"
+ },
+ "class_id": 19,
+ "created": "2015-09-14T17:52:58.907",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 185021,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185336,
+ "object_name": "Ferguson KA, Njap F, Nicola W, Skinner FK, Campbell SA (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron network model (Ferguson et al 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "From the paper:\r\nFigure 4 (1000 cell network) is reproduced by running this brian code.\r\nThe raster plot and one of the excitatory cell voltage is produced."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185021",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "frances.skinner@gmail.com"
+ },
+ "ver_date": "2017-07-28T11:58:09.947",
+ "ver_number": 5
+ },
+ "185090": {
+ "class_id": 19,
+ "created": "2015-09-15T15:43:06.857",
+ "gitrepo": false,
+ "id": 185090,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185093,
+ "object_name": "Gehring TV, Luksys G, Sandi C, Vasilaki E (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Detailed analysis of trajectories in the Morris water maze (Gehring et al. 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "MATLAB code that can be used for detailed behavioural analyzes of the trajectories of animals be means of a semi-supervised clustering algorithm. The method is applied here to trajectories in the Morris Water Maze (see Gehring, T. V. et al., Scientific Reports, 2015) but the code can easily be adapted to other types experiments. For more information and the latest version of the code please refer to https://bitbucket.org/tiagogehring/mwm_trajectories"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185090",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiagogehring@gmail.com"
+ },
+ "ver_date": "2015-09-15T17:54:45.733",
+ "ver_number": 6
+ },
+ "185122": {
+ "citation": {
+ "attr_id": 391,
+ "value": "1. Miller GM, Ogunnaike BA, Schwaber JS, Vadigepalli R (2010) Robust dynamic balance of AP-1 transcription factors in a neuronal gene regulatory network. BMC Systems Biology 4: 171.\r\n2. Makadia, H.K., Schwaber, J.S., and Vadigepalli, R. (2015). Intracellular information processing through encoding and decoding of dynamic signaling features. PLOS Computational Biology (accepted)."
+ },
+ "class_id": 19,
+ "created": "2015-09-25T12:35:09.257",
+ "gitrepo": false,
+ "id": 185122,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156833,
+ "object_name": "Makadia, Hirenkumar K [hiren.makadia at gmail.com]"
+ },
+ {
+ "object_id": 169243,
+ "object_name": "Vadigepalli, Rajanikanth [Rajanikanth.Vadigepalli at jefferson.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 169158,
+ "object_name": "Miller GM, Ogunnaike BA, Schwaber JS, Vadigepalli R (2010)"
+ },
+ {
+ "object_id": 185889,
+ "object_name": "Makadia HK, Schwaber JS, Vadigepalli R (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Activator protein 1(AP-1) transcriptional regulatory model in brainstem neurons (Makadia et al 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 185139,
+ "object_name": "Brainstem neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We have developed a mathematical model of AT1R-activated signaling kinases and a downstream transcriptional regulatory network controlling the family of activator protein 1 (AP-1) transcription factors. The signaling interactions of the transcriptional model were modeled with either mass-action or Michaelis--Menten kinetics, whereas the phenomenological model of the kinases used exponentials. These models were validated against their respective data domains independently and were integrated into one. The model was implemented as a set of ordinary differential equations solved using the ode15s solver in Matlab (Mathworks, USA)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185122",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "c-Fos, c-Jun"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "brainstem neuron"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "AT1R"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hiren.makadia@gmail.com"
+ },
+ "ver_date": "2015-09-30T17:19:57.38",
+ "ver_number": 10
+ },
+ "185123": {
+ "class_id": 19,
+ "created": "2015-09-25T14:36:45.583",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 185123,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124046,
+ "object_name": "Polsky, Alon [alonpol at tx.technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 143085,
+ "object_name": "Synaptic-input statistic"
+ },
+ {
+ "object_id": 169987,
+ "object_name": "Dendritic Bistability"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185126,
+ "object_name": "Poleg-Polsky A (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Effects of neural morphology on global and focal NMDA-spikes (Poleg-Polsky 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 182505,
+ "object_name": "Neocortex layer 4 neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This entry contains the NEURON files required to recreate figures 4-8 of the paper \"Effects of Neural Morphology and Input Distribution on Synaptic Processing by Global and Focal NMDA-spikes\" by Alon Poleg-Polsky"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185123",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "polegpolskya@mail.nih.gov"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2015-09-28T14:14:58.68",
+ "ver_number": 11
+ },
+ "185300": {
+ "class_id": 19,
+ "created": "2015-10-05T12:22:53.7",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 88210,
+ "object_name": "I_Na,Ca"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 185300,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156833,
+ "object_name": "Makadia, Hirenkumar K [hiren.makadia at gmail.com]"
+ },
+ {
+ "object_id": 156834,
+ "object_name": "Anderson, Warren D [warren.anderson at jefferson.edu]"
+ },
+ {
+ "object_id": 169243,
+ "object_name": "Vadigepalli, Rajanikanth [Rajanikanth.Vadigepalli at jefferson.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 186225,
+ "object_name": "Anderson WD, Makadia HK, Vadigepalli R (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Cell signaling/ion channel variability effects on neuronal response (Anderson, Makadia, et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 185139,
+ "object_name": "Brainstem neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 186226,
+ "object_name": "Angiotensin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We evaluated the impact of molecular variability in the expression of cell signaling components and ion channels\r\n on electrophysiological excitability and neuromodulation. We employed a computational approach that integrated neuropeptide receptor-mediated signaling with electrophysiology. We simulated a population of neurons in which expression levels of a neuropeptide receptor and multiple ion channels were simultaneously\r\n varied within a physiological range. We analyzed the effects of variation on the electrophysiological response to a neuropeptide stimulus. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185300",
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "Angiotensin"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "AT1R"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "warren.anderson@jefferson.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 186227,
+ "object_name": "AT1R"
+ }
+ ]
+ },
+ "ver_date": "2017-01-13T12:20:40.1",
+ "ver_number": 7
+ },
+ "185328": {
+ "class_id": 19,
+ "created": "2015-10-14T14:01:13.643",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 185328,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ },
+ {
+ "object_id": 150452,
+ "object_name": "Moore, John W [moore at neuro.duke.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185327,
+ "object_name": "Moore JW (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Enhancing the HH eqs: simulations based on the first publication in Biophys J (Moore 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The experiments in the Cole and Moore article in the first issue of the Biophysical Journal provided the first independent experimental confirmation of the Hodgkin-Huxley (HH) equations. A log-log plot of the K current versus time showed that raising the HH variable n to the sixth power provided the best fit to the data. Subsequent simulations using n6 and setting the resting potential at the in vivo value simplifies the HH equations by eliminating the leakage term. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185328",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "ver_date": "2015-10-15T10:16:22.583",
+ "ver_number": 5
+ },
+ "185330": {
+ "class_id": 19,
+ "created": "2015-10-16T11:33:47.167",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 185330,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189151,
+ "object_name": "Enrico, Paolo [enrico at uniss.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 112854,
+ "object_name": "Addiction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189150,
+ "object_name": "Enrico P, Migliore M, Spiga S, Mulas G, Caboni F, Diana M (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "VTA neurons: Morphofunctional alterations in acute opiates withdrawal (Enrico et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 189152,
+ "object_name": "Ventral tegmental area dopamine neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we present a biophysical model of a DA VTA neuron based on 3D morphological reconstruction and electrophysiological data, showing how opiates withdrawal-driven morphological and electrophysiological changes could affect the firing rate and discharge pattern....\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185330",
+ "ver_date": "2019-04-17T16:53:57.11",
+ "ver_number": 12
+ },
+ "185332": {
+ "class_id": 19,
+ "created": "2015-10-19T16:26:01.12",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 185332,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 185339,
+ "object_name": "Zylbertal, Asaph [asaph.zylbertal at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 185343,
+ "object_name": "Persistent activity"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185341,
+ "object_name": "Zylbertal A, Kahan A, Ben-Shaul Y, Yarom Y, Wagner S (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "AOB mitral cell: persistent activity without feedback (Zylbertal et al., 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 185340,
+ "object_name": "Olfactory bulb (accessory) mitral cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Persistent activity has been reported in many brain areas and is\r\nhypothesized to mediate working memory and emotional brain states and\r\nto rely upon network or biophysical feedback. Here we demonstrate a\r\nnovel mechanism by which persistent neuronal activity can be generated\r\nwithout feedback, relying instead on the slow removal of Na+ from\r\nneurons following bursts of activity. This is a realistic\r\nconductance-based model that was constructed using the detailed\r\nmorphology of a single typical accessory olfactory bulb (AOB) mitral\r\ncell for which the electrophysiological properties were\r\ncharacterized."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185332",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Persistent activity"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zylbertal, Asaph [asaph.zylbertal at mail.huji.ac.il]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Accessory olfactory bulb mitral cell"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:19:02.88",
+ "ver_number": 14
+ },
+ "185334": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Bose, A., & Rubin, J. E. (2015). Strategies to Maximize Burst Lengths in Rhythmic Anti-Phase Activity of Networks with Reciprocal Inhibition. International Journal of Bifurcation and Chaos, 25(07), 1540004."
+ },
+ "class_id": 19,
+ "created": "2015-10-19T22:44:04.63",
+ "gitrepo": false,
+ "id": 185334,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125612,
+ "object_name": "Rubin, Jonathan E [jonrubin at pitt.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185337,
+ "object_name": "Bose A, Rubin JE (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Double boundary value problem (A. Bose and J.E. Rubin, 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "For two neurons coupled with mutual inhibition, we investigate the strategies that each neuron should utilize in order to maximize the number of spikes it can fire (or equivalently the amount of time it is active) before the other neuron takes over. We derive a one-dimensional map whose fixed points correspond to periodic anti-phase bursting solutions. The model here solves a novel double boundary value problem that can be used to obtain the graph of this map.\r\n\r\nRead More: http://www.worldscientific.com/doi/abs/10.1142/S0218127415400040"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185334",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Mutual inhibition"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "half-center oscillator"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jonrubin@pitt.edu"
+ },
+ "ver_date": "2015-10-20T10:04:30.877",
+ "ver_number": 3
+ },
+ "185338": {
+ "class_id": 19,
+ "created": "2015-10-23T07:37:57.707",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 185338,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230416,
+ "object_name": "Ueyama, Yuki [yuki.ueyama at st.seikei.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230330,
+ "object_name": "Ueyama Y (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 127515,
+ "object_name": "Muscle model and vibrissa biomechanics"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Model predictive control model for an isometric motor task (Ueyama 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A model predictive control model for an isometric motor task."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185338",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Motor cortex neuron"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Motor control"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ueyama-yuki@rehab.go.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yuki Ueyama"
+ },
+ "ver_date": "2017-07-10T16:51:27.51",
+ "ver_number": 8
+ },
+ "185350": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Jedlicka P, Benuskova L, Abraham WC (2015) A Voltage-Based STDP Rule Combined with Fast BCM-Like Metaplasticity Accounts for LTP and Concurrent \u201cHeterosynaptic\u201d LTD in the Dentate Gyrus In Vivo. PLoS Computational Biology"
+ },
+ "class_id": 19,
+ "created": "2015-10-25T16:24:35.153",
+ "gitrepo": false,
+ "id": 185350,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 148255,
+ "object_name": "Jedlicka, Peter [jedlicka at em.uni-frankfurt.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185352,
+ "object_name": "Jedlicka P, Benuskova L, Abraham WC (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Modeling dentate granule cells heterosynaptic plasticity using STDP-BCM rule (Jedlicka et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "... Here we study how key components of learning mechanisms in the brain, namely spike timing-dependent plasticity and metaplasticity, interact with spontaneous activity in the input pathways of the neuron. Using biologically realistic simulations we show that ongoing background activity is a key determinant of the degree of long-term potentiation and long-term depression of synaptic transmission between nerve cells in the hippocampus of freely moving animals. This work helps better understand the computational rules which drive synaptic plasticity in vivo.\r\n..."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185350",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jedlicka@em.uni-frankfurt"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2016-02-26T01:22:05.503",
+ "ver_number": 9
+ },
+ "185355": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Intrinsic rescaling of granule cells restores pattern separation ability of a dentate gyrus network model during epileptic hyperexcitability.\r\nYim MY, Hanuschkin A, Wolfart J.\r\nHippocampus. 2015 Mar;25(3):297-308. doi: 10.1002/hipo.22373.\r\nPMID: 25269417"
+ },
+ "class_id": 19,
+ "created": "2015-10-27T04:28:40.093",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 185501,
+ "object_name": "Kir2 leak"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122824,
+ "object_name": "IRK"
+ },
+ {
+ "object_id": 185462,
+ "object_name": "Kir2.1 KCNJ2"
+ },
+ {
+ "object_id": 185502,
+ "object_name": "Kir2.2 KCNJ12"
+ },
+ {
+ "object_id": 185503,
+ "object_name": "Kir2.3 KCNJ4"
+ },
+ {
+ "object_id": 185504,
+ "object_name": "Kir2.4 KCNJ14"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 185355,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 185460,
+ "object_name": "Yim, Man Yi [manyi.yim at googlemail.com]"
+ },
+ {
+ "object_id": 185461,
+ "object_name": "Hanuschkin, Alexander "
+ },
+ {
+ "object_id": 185500,
+ "object_name": "Wolfart, Jakob "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 41934,
+ "object_name": "Intrinsic plasticity"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 185463,
+ "object_name": "Pattern Separation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185356,
+ "object_name": "Yim MY, Hanuschkin A, Wolfart J (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dentate gyrus network model pattern separation and granule cell scaling in epilepsy (Yim et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ },
+ {
+ "object_id": 124389,
+ "object_name": "Dentate gyrus MOPP cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The dentate gyrus (DG) is thought to enable efficient hippocampal memory acquisition via pattern separation. With patterns defined as spatiotemporally distributed action potential sequences, the principal DG output neurons (granule cells, GCs), presumably sparsen and separate similar input patterns from the perforant path (PP). In electrophysiological experiments, we have demonstrated that during temporal lobe epilepsy (TLE), GCs downscale their excitability by transcriptional upregulation of \u2018leak\u2019 channels. Here we studied whether this cell type-specific intrinsic plasticity is in a position to homeostatically adjust DG network function. We modified an established conductance-based computer model of the DG network such that it realizes a spatiotemporal pattern separation task, and quantified its performance with and without the experimentally constrained leaky GC phenotype. ..."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185355",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Pattern Separation"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Kir2 leak"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Wolfart, Jakob"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jakob.wolfart@uni-rostock.de"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T11:50:37.643",
+ "ver_number": 24
+ },
+ "185464": {
+ "class_id": 19,
+ "created": "2015-10-28T14:31:16.91",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 185464,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189192,
+ "object_name": "Osinski, Boleslaw [boleszek at uchicago.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189191,
+ "object_name": "Osinski BL, Kay LM (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Olfactory Bulb mitral-granule network generates beta oscillations (Osinski & Kay 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 153283,
+ "object_name": "Olfactory bulb main interneuron granule TC GABA cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model of the dendrodendritic mitral-granule synaptic network generates gamma and beta oscillations as a function of the granule cell excitability, which is represented by the granule cell resting membrane potential."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185464",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Osinski, Boleslaw [boleszek@uchicago.edu]"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:19:21.037",
+ "ver_number": 17
+ },
+ "185512": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Journal of Computational Neuroscience, Article 582 (JCNS-D-15-00036R2)\r\nEffect of Polarization Induced by Non-Weak Electric Fields on the Excitability \r\n\r\nof Elongated Neurons With Active Dendrite"
+ },
+ "class_id": 19,
+ "created": "2015-11-07T16:10:50.807",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 185512,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136797,
+ "object_name": "Barreto, Ernest "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185597,
+ "object_name": "Reznik RI, Barreto E, Sander E, So P (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Non-Weak E-Fields Pyramidal Neurons (Reznik et. al.,2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Effect of Polarization Induced by Non-Weak Electric Fields on the Excitability of Elongated Neurons With Active Dendrite.\r\n\r\nIn response to polarization, the active currents in the dendrites of pyramidal neurons play a pivotal role in the excitability of elongated neurons. Depending on a number of parameters either hyperpolarizing or depolarizing currents in the dendrite dominate as polarization is increased. Furthermore, the impact that these active dendrite channels (Ca, KAHP, etc) occur when only a small fraction of their channels are open."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185512",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "robert.reznik@icloud.com"
+ },
+ "ver_date": "2015-11-16T16:55:05.253",
+ "ver_number": 7
+ },
+ "185513": {
+ "citation": {
+ "attr_id": 391,
+ "value": "S. K. Sudhakar, B. Torben-Nielsen, E. De Schutter: Cerebellar nuclear neurons use time and rate coding to transmit Purkinje neuron pauses. PLoS Computational Biology in press"
+ },
+ "class_id": 19,
+ "created": "2015-11-09T00:49:11.94",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 185513,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185541,
+ "object_name": "Sudhakar SK, Torben-Nielsen B, De Schutter E (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cerebellar nuclear neuron (Sudhakar et al., 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In this modeling study, we investigate different forms of Purkinje neuron simple spike pause synchrony and its influence on candidate coding strategies in the cerebellar nuclei. That is, we investigate how different alignments of synchronous pauses in synthetic Purkinje neuron spike trains affect either time-locking or rate-changes in the downstream nuclei. We find that Purkinje neuron synchrony is mainly represented by changes in the firing rate of cerebellar nuclei neurons. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185513",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shyam_u2@yahoo.co.in"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2023-01-27T11:58:16.043",
+ "ver_number": 25
+ },
+ "185858": {
+ "class_id": 19,
+ "created": "2015-11-20T09:44:57.707",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 185858,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 169987,
+ "object_name": "Dendritic Bistability"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 185343,
+ "object_name": "Persistent activity"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 186992,
+ "object_name": "Neymotin SA, McDougal RA, Bulanova AS, Zeki M, Lakatos P, Terman D, Hines ML, Lytton WW (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Ca+/HCN channel-dependent persistent activity in multiscale model of neocortex (Neymotin et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ },
+ {
+ "object_id": 184136,
+ "object_name": "Neocortex layer 6a interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neuronal persistent activity has been primarily assessed in terms of electrical mechanisms, without attention to the complex array of molecular events that also control cell excitability. We developed a multiscale neocortical model proceeding from the molecular to the network level to assess the contributions of calcium regulation of hyperpolarization-activated cyclic nucleotide-gated (HCN) channels in providing additional and complementary support of continuing activation in the network. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185858",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Anna Bulanova"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 184,
+ "object_name": "mGluR1"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T11:53:00.113",
+ "ver_number": 21
+ },
+ "185864": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 156264,
+ "object_name": "modified version of Hu et al. 2009"
+ },
+ {
+ "object_id": 156265,
+ "object_name": "axon prject with Hu et al 2009"
+ },
+ {
+ "object_id": 185862,
+ "object_name": ""
+ },
+ {
+ "object_id": 187612,
+ "object_name": "manual version"
+ },
+ {
+ "object_id": 232072,
+ "object_name": "GUI with Morse 2010 base"
+ },
+ {
+ "object_id": 247967,
+ "object_name": "50 Hz 500 ms version"
+ }
+ ]
+ },
+ "class_id": 19,
+ "created": "2015-11-21T11:03:17.007",
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "current"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 185864,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ },
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267665,
+ "object_name": "Yuan P, Zhang M, Tong L, Morse TM, McDougal RA, Ding H, Chan D, Cai Y, Grutzendler J"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Axonal spheroids and conduction defects in Alzheimer\u2019s disease (Yuan, Zhang, Tong, et al 2022)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "PAAS (plaque-associated axonal spheroid(s)) are dystrophic structures that sprout from axons that pass through amyloid beta plaques. If small enough they do not interfere with action potential (AP) propagation. Medium sized ones delay APs, and large, or many spheroids can block single APs and block or delay trains of APs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185864",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yuan, Peng (Paul)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-21T09:56:26.85",
+ "ver_number": 8
+ },
+ "185875": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Smolen 2015"
+ },
+ "class_id": 19,
+ "created": "2015-11-24T15:02:41.457",
+ "gitrepo": false,
+ "id": 185875,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149176,
+ "object_name": "Smolen, Paul [paul.d.smolen at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185514,
+ "object_name": "Smolen P (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113428,
+ "object_name": "Java (web link to model)"
+ }
+ ]
+ },
+ "name": "Modeling maintenance of Long-Term Potentiation in clustered synapses (Smolen 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here a model is developed that connects ongoing, competing processes of synaptic\r\ngrowth and weakening to stochastic processes of receptor insertion and removal in dendritic spines. The model simulates long-term\r\n(>1 yr) persistence of groups of strong synapses. A unimodal weight distribution results. For stability of this distribution it proved\r\nessential to incorporate resource competition between synapses organized into small clusters. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/185875",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2015-11-24T15:08:17.52",
+ "ver_number": 6
+ },
+ "186768": {
+ "class_id": 19,
+ "created": "2015-12-15T05:30:33.34",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 226058,
+ "object_name": "HCN2"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 186768,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 189085,
+ "object_name": "Sanjay, M [msanjaycmc at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 186840,
+ "object_name": "Sanjay M, Neymotin SA, Krothapalli SB (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CA3 Network Model of Epileptic Activity (Sanjay et. al, 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154093,
+ "object_name": "Hippocampus CA3 interneuron basket GABA cell"
+ },
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This computational study investigates how a CA3 neuronal network consisting of pyramidal cells, basket cells and OLM interneurons becomes epileptic when dendritic inhibition to pyramidal cells is impaired due to the dysfunction of OLM interneurons. After standardizing the baseline activity (theta-modulated gamma oscillations), systematic changes are made in the connectivities between the neurons, as a result of step-wise impairment of dendritic inhibition."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/186768",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "msanjaycmc@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "M Sanjay"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2023-01-30T14:51:22.183",
+ "ver_number": 12
+ },
+ "186977": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 26635594"
+ },
+ "class_id": 19,
+ "created": "2015-12-21T16:59:07.25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 186977,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155712,
+ "object_name": "Avella G. Oscar Javier [oscarjavella at gmail dot com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 186978,
+ "object_name": "Avella Gonzalez OJ, Mansvelder HD, van Pelt J, van Ooyen A (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "H-currents effect on the fluctuation of gamma/beta oscillations (Avella-Gonzalez et al., 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was designed to study the impact of H-currents on\r\nthe dynamics of cortical oscillations, and in paticular on\r\nthe occurrence of high and low amplitude episodes (HAE, LAE) in network oscillations.\r\nThe H-current is a slow, hyperpolarization-activated, depolarizing current\r\nthat contributes to neuronal resonance and membrane potential.\r\n\r\nWe characterized amplitude fluctuations in network oscillations by measuring \r\nthe average durations of HAEs and LAEs, and explored\r\nhow these were modulated by trains of external spikes, both in \r\nthe presence and absence of H-channels. \r\n\r\nWe looked at HAE duration, the frequency\r\nand power of network oscillations, and the effect\r\nof H-channels on the temporal voltage profile in single cells.\r\n\r\nWe found that H-currents increased the oscillation frequency and, in combination with external spikes, representing input from areas outside the network, strongly decreased the synchrony of firing. As a consequence, the oscillation power and the duration of episodes during which the network exhibited high-amplitude oscillations were greatly reduced in the presence of H-channels."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/186977",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "H-currents, Na current, K current, leak current"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "prefrontal cortex"
+ },
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "glutamate"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "AMPA"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "oscarjavella@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Oscar Javier Avella Gonzalez"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2018-07-11T17:11:28.477",
+ "ver_number": 8
+ },
+ "187213": {
+ "biosimulations": {
+ "value": "modeldb-187213"
+ },
+ "class_id": 19,
+ "created": "2016-01-13T16:00:35.787",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 187213,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 188279,
+ "object_name": "H\u00fcbel N, Andrew RD, Ullah G (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Anoxic depolarization, recovery: effect of brain regions and extracellular space (Hubel et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The extent of anoxic depolarization (AD), the initial electrophysiological event during ischemia, determines the degree of brain region-specific neuronal damage. Neurons in higher brain regions have stronger ADs and are more easily injured than neurons in lower brain region. The mechanism leading to such differences is not clear. We use a computational model based on a Hodgkin-Huxley framework which includes neural spiking dynamics, processes of ion accumulation, and homeostatic mechanisms like vascular coupling and Na/K-exchange pumps. We show that a large extracellular space (ECS) explains the recovery failure in high brain regions. A phase-space analysis shows that with a large ECS recovery from AD through potassium regulation is impossible. The code 'time_series.ode' can be used to simulate AD for a large and a small ECS and show the different behaviors. The code \u2018continuations.ode\u2019 can be used to show the fixed point structure. Depending on our choice of large or small ECS the fixed point curve implies the presence/absence of a recovery threshold that defines the potassium clearance demand."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187213",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "niklas.huebel@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Niklas H\u00fcbel"
+ },
+ "ver_date": "2016-01-19T10:38:28.11",
+ "ver_number": 9
+ },
+ "187473": {
+ "citation": {
+ "attr_id": 391,
+ "value": "J Neurophysiol. 2015 Dec 1;114(6):3140-53. doi: 10.1152/jn.00226.2015. Epub 2015 Sep 2.\r\nSpike propagation through the dorsal root ganglia in an unmyelinated sensory neuron: a modeling study.\r\nSundt D1, Gamper N2, Jaffe DB3.\r\nPMID: 26334005"
+ },
+ "class_id": 19,
+ "created": "2016-02-01T11:31:41.087",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 187473,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140473,
+ "object_name": "Jaffe, David B [david.jaffe at utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187477,
+ "object_name": "Sundt D, Gamper N, Jaffe DB (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A model of the T-junction of a C-fiber sensory neuron (Sundt et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The effect of geometry and ionic mechanisms on spike propagation through the T-junction of an unmyelinated sensory neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187473",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "david.jaffe@utsa.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "David B. Jaffe"
+ },
+ "ver_date": "2016-02-05T16:28:18.633",
+ "ver_number": 3
+ },
+ "187474": {
+ "class_id": 19,
+ "created": "2016-02-01T11:49:03.87",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 187474,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ },
+ {
+ "object_id": 187609,
+ "object_name": "Metzner, Christoph [c.metzner at herts.ac.uk]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145814,
+ "object_name": "Hay E, Hill S, Sch\u00fcrmann F, Markram H, Segev I (2011)"
+ },
+ {
+ "object_id": 167346,
+ "object_name": "Hay E, Segev I (2015)"
+ },
+ {
+ "object_id": 233515,
+ "object_name": "M\u00e4ki-Marttunen T, Halnes G, Devor A, Metzner C, Dale AM, Andreassen OA, Einevoll GT (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 154351,
+ "object_name": "NeuroML"
+ }
+ ]
+ },
+ "name": "Layer V pyramidal cell model with reduced morphology (M\u00e4ki-Marttunen et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this work, we develop and apply an automated, stepwise method for fitting a neuron model to data with fine spatial resolution, such as that achievable with voltage sensitive dyes (VSDs) and Ca2+ imaging.\r\n...\r\nWe apply our method to simulated data from layer 5 pyramidal cells (L5PCs) and construct a model with reduced neuronal morphology. We connect the reduced-morphology neurons into a network and validate against simulated data from a high-resolution L5PC network model. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187474",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Metzner, Christoph [c.metzner@herts.ac.uk]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tuomo.maki-marttunen@tut.fi"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-03-28T15:09:10.95",
+ "ver_number": 38
+ },
+ "187599": {
+ "citation": {
+ "attr_id": 391,
+ "value": "H\u00fcbel, N. and Ullah, G., \"Anions Govern Cell Volume: a Case Study of Relative Astrocytic and Neuronal Swelling in Spreading Depolarization\", PLoS ONE, 10.1371/journal.pone.0147060 (2016)"
+ },
+ "class_id": 19,
+ "created": "2016-02-02T13:27:05.42",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 144382,
+ "object_name": "Osmosis-driven water flux"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 187599,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 139270,
+ "object_name": "Anoxic depolarization"
+ },
+ {
+ "object_id": 167716,
+ "object_name": "Spreading depression"
+ },
+ {
+ "object_id": 183421,
+ "object_name": "Volume transmission"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 188546,
+ "object_name": "H\u00fcbel N, Ullah G (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "An ion-based model for swelling of neurons and astrocytes (Hubel & Ullah 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ },
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The programs describe ion dynamics and osmosis-driven cellular swelling. \u201ccode_fig3.ode\u201d shows a \r\nscenario of permanent cessation of energy supply / Na/K-pump activity, and the induced transition from \r\nnormal conditions to the Donnan equilibrium for an isolated neuron and its extracellular space. \r\n\r\n\u201ccode_Fig7.ode\u201d shows spreading depolarization induced by an interruption of energy supply in a model \r\nconsisting of a neuron, a glia cell and the extracellular space. The simulations show the evolution of ion\r\nconcentrations, Nernst potentials, the membrane potential, gating variables and cellular volumes."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187599",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "niklas.huebel@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Niklas H\u00fcbel"
+ },
+ "ver_date": "2016-02-03T15:19:45.54",
+ "ver_number": 5
+ },
+ "187600": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Teka W, Stockton D, Santamaria F. \"Power-law dynamics of membrane\r\nconductances increase spiking diversity in a Hdgkin-Huxley model\" PLoS\r\nComputational Biology, in press, 2016."
+ },
+ "class_id": 19,
+ "created": "2016-02-02T16:18:39.833",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 187600,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187684,
+ "object_name": "Teka W, Stockton D, Santamaria F (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Hodgkin\u2013Huxley model with fractional gating (Teka et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 128565,
+ "object_name": "Wide dynamic range neuron"
+ },
+ {
+ "object_id": 155861,
+ "object_name": "Abstract integrate-and-fire fractional leaky neuron"
+ },
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We use fractional order derivatives to model the kinetic dynamics of the gate variables for the potassium and sodium conductances of the Hodgkin-Huxley model. Our results show that power-law dynamics of the different gate variables result\r\nin a wide range of action potential shapes and spiking patterns, even in the case where the model was stimulated with constant current. As a consequence, power-law behaving conductances result in an increase in the number of spiking patterns a neuron can generate and, we propose, expand the computational capacity of the neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187600",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Fractional differentiator neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wondimuwub@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Wondimu Teka"
+ },
+ "ver_date": "2016-03-03T13:19:58.503",
+ "ver_number": 3
+ },
+ "187603": {
+ "class_id": 19,
+ "created": "2016-02-04T07:36:20.677",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 187603,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234245,
+ "object_name": "Wilmes, Katharina A. [katharina.wilmes at googlemail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 188639,
+ "object_name": "Wilmes KA, Sprekeler H, Schreiber S (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Inhibition of bAPs and Ca2+ spikes in a multi-compartment pyramidal neuron model (Wilmes et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Synaptic plasticity is thought to induce memory traces in the brain that are the foundation of learning. To ensure the stability of these traces in the presence of further learning, however, a regulation of plasticity appears beneficial. Here, we take up the recent suggestion that dendritic inhibition can switch plasticity of excitatory synapses on and off by gating backpropagating action potentials (bAPs) and calcium spikes, i.e., by gating the coincidence signals required for Hebbian forms of plasticity. We analyze temporal and spatial constraints of such a gating and investigate whether it is possible to suppress bAPs without a simultaneous annihilation of the forward-directed information flow via excitatory postsynaptic potentials (EPSPs). In a computational analysis of conductance-based multi-compartmental models, we demonstrate that a robust control of bAPs and calcium spikes is possible in an all-or-none manner, enabling a binary switch of coincidence signals and plasticity. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187603",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "katharina.wilmes@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Katharina Anna Wilmes"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-10-29T23:19:59.15",
+ "ver_number": 20
+ },
+ "187604": {
+ "class_id": 19,
+ "created": "2016-02-04T22:10:38.58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": true
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 187604,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153194,
+ "object_name": "Bezaire, Marianne [mariannejcase at gmail.com]"
+ },
+ {
+ "object_id": 217983,
+ "object_name": "Raikov, Ivan [ivan.g.raikov at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 218127,
+ "object_name": "Bezaire MJ, Raikov I, Burk K, Vyas D, Soltesz I (2016)"
+ },
+ {
+ "object_id": 206350,
+ "object_name": "Bezaire M, Raikov I, Burk K, Armstrong C, Soltesz I (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Hippocampal CA1 NN with spontaneous theta, gamma: full scale & network clamp (Bezaire et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 35373,
+ "object_name": "Hippocampus CA1 interneuron oriens alveus GABA cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ },
+ {
+ "object_id": 136178,
+ "object_name": "Hippocampus CA1 stratum radiatum interneuron"
+ },
+ {
+ "object_id": 151329,
+ "object_name": "Hippocampus CA1 bistratified cell"
+ },
+ {
+ "object_id": 151330,
+ "object_name": "Hippocampus CA1 axo-axonic cell"
+ },
+ {
+ "object_id": 182866,
+ "object_name": "Hippocampus CA1 PV+ fast-firing interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is a full-scale, biologically constrained rodent hippocampal CA1 network model that includes 9 cells types (pyramidal cells and 8 interneurons) with realistic proportions of each and realistic connectivity between the cells. In addition, the model receives realistic numbers of afferents from artificial cells representing hippocampal CA3 and entorhinal cortical layer III. The model is fully scaleable and parallelized so that it can be run at small scale on a personal computer or large scale on a supercomputer. The model network exhibits spontaneous theta and gamma rhythms without any rhythmic input. The model network can be perturbed in a variety of ways to better study the mechanisms of CA1 network dynamics. Also see online code at http://bitbucket.org/mbezaire/ca1 and further information at http://mariannebezaire.com/models/ca1"
+ },
+ "opensourcebrain": {
+ "value": "nc_ca1"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187604",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Raikov, Ivan [ivan.g.raikov@gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampus CA1 neurogliaform cell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T12:12:03.73",
+ "ver_number": 15
+ },
+ "187605": {
+ "class_id": 19,
+ "created": "2016-02-09T14:43:00.417",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 187605,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187682,
+ "object_name": "Cui Y, Prokin I, Xu H, Delord B, Genet S, Venance L, Berry H (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Endocannabinoid dynamics gate spike-timing dependent depression and potentiation (Cui et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The endocannabinoid (eCB) system is considered involved in synaptic depression.\r\nRecent reports have also linked eCBs to synaptic potentiation. However it is not known how eCB signaling may support such bidirectionality. To question the mechanisms of this phenomena in spike-timing dependent plasticity (STDP) at corticostriatal synapses, we combined electrophysiology experiments with biophysical modeling. We demonstrate that STDP is controlled by eCB levels and dynamics: prolonged and moderate levels of eCB lead to eCB-mediated long-term depression (eCB-tLTD) while short and large eCB transients produce eCB-mediated long-term potentiation (eCB-tLTP). Therefore, just like neurotransmitters glutamate or GABA, eCB form a bidirectional system."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187605",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I_TRPV1"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "CB1R"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "isprokin@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ilya Prokin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2017-01-13T12:21:27.967",
+ "ver_number": 13
+ },
+ "187610": {
+ "class_id": 19,
+ "created": "2016-02-11T15:41:11.133",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "id": 187610,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 184057,
+ "object_name": "Cembrowski, Mark S [cembrowskim at janelia.hhmi.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187619,
+ "object_name": "Bloss EB, Cembrowski MS, Karsh B, Colonell J, Fetter RD, Spruston N (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron synaptic integration (Bloss et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We examined synaptic connectivity\r\nbetween molecularly defined inhibitory interneurons\r\nand CA1 pyramidal cell dendrites using\r\ncorrelative light-electron microscopy and large-volume\r\narray tomography. We show that interneurons\r\ncan be highly selective in their connectivity to specific\r\ndendritic branch types and, furthermore,\r\nexhibit precisely targeted connectivity to the origin\r\nor end of individual branches. Computational simulations\r\nindicate that the observed subcellular\r\ntargeting enables control over the nonlinear integration\r\nof synaptic input or the initiation and\r\nbackpropagation of action potentials in a branchselective\r\nmanner. Our results demonstrate that\r\nconnectivity between interneurons and pyramidal\r\ncell dendrites is more precise and spatially segregated\r\nthan previously appreciated, which may be\r\na critical determinant of how inhibition shapes dendritic\r\ncomputation.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187610",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cembrowskim@janelia.hhmi.org"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mark Cembrowski"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2018-07-11T17:14:47.833",
+ "ver_number": 6
+ },
+ "187615": {
+ "class_id": 19,
+ "created": "2016-02-23T05:33:51.087",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 122811,
+ "object_name": "Cav3.3 CACNA1I"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 187615,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 233562,
+ "object_name": "M\u00e4ki-Marttunen T, Lines GT, Edwards AG, Tveito A, Dale AM, Einevoll GT, Andreassen OA (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Pleiotropic effects of SCZ-associated genes (M\u00e4ki-Marttunen et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 52422,
+ "object_name": "Cardiac atrial cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Python and MATLAB scripts for studying the dual effects of SCZ-related genes on layer 5 pyramidal cell firing and sinoatrial node cell pacemaking properties. The study is based on two L5PC models (Hay et al. 2011, Almog & Korngreen 2014) and SANC models (Kharche et al. 2011, Severi et al. 2012)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187615",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "CACNB2, ATP2A2, HCN1"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tuomomm@uio.no; tuomo.maki-marttunen@tut.fi"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tuomo M\u00e4ki-Marttunen"
+ },
+ "ver_date": "2023-01-27T13:08:40.367",
+ "ver_number": 12
+ },
+ "187687": {
+ "class_id": 19,
+ "created": "2016-03-08T03:10:59.55",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 187687,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189164,
+ "object_name": "Henningson, Erik [erikh at maths.lth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189163,
+ "object_name": "Diehl S, Henningsson E, Heyden A (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Axon growth model (Diehl et al. 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The model describes the elongation over time of an axon from a small neurite to its steady-state length. The elongation depends on the availability of tubulin dimers in the growth cone. The dimers are produced in the soma and then transported along the axon to the growth cone.\r\n\r\nMathematically the model consists of a partial differential equation coupled with two nonlinear ordinary differential equations. \r\n\r\nThe code implements a spatial scaling to deal with the growing (and shrinking) domain and a temporal scaling to deal with evolutions on different time scales. Further, the numerical scheme is chosen to fully utilize the structure of the problems. To summarize, this results in fast and reliable axon growth simulations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/187687",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Henningson, Erik [erikh@maths.lth.se]"
+ },
+ "ver_date": "2016-05-10T11:17:00.557",
+ "ver_number": 15
+ },
+ "188423": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Masquelier T, Portelli G and Kornprobst P (2016). Microsaccades enable efficient synchrony-based coding in the retina: a simulation study. Scientific Reports."
+ },
+ "class_id": 19,
+ "created": "2016-03-16T08:08:43.977",
+ "gitrepo": false,
+ "id": 188423,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123929,
+ "object_name": "Masquelier, Tim [timothee.masquelier at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 188424,
+ "object_name": "Masquelier T, Portelli G, Kornprobst P (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Microsaccades and synchrony coding in the retina (Masquelier et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We show that microsaccades (MS) enable efficient synchrony-based coding among the primate retinal ganglion cells (RGC). We find that each MS causes certain RGCs to fire synchronously, namely those whose receptive fields contain contrast edges after the MS. The emitted synchronous spike volley thus rapidly transmits the most salient edges of the stimulus. We demonstrate that the readout could be done rapidly by simple coincidence-detector neurons, and that the required connectivity could emerge spontaneously with spike timing-dependent plasticity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/188423",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timothee.masquelier@alum.mit.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Timoth\u00e9e Masquelier"
+ },
+ "ver_date": "2016-03-16T10:49:50.407",
+ "ver_number": 3
+ },
+ "188543": {
+ "class_id": 19,
+ "created": "2016-03-18T17:11:15.54",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 188543,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 188387,
+ "object_name": "Markram H, Muller E, Ramaswamy S, Reimann MW, Abdellah M, Sanchez CA, Ailamaki A, Alonso-Nanclares L, Antille N, Arsever S, Kahou GA, Berger TK, Bilgili A, Buncic N, Chalimourda A, Chindemi G, Courcol JD, Delalondre F, Delattre V, Druckmann S, Dumusc R, Dynes J, Eilemann S, Gal E, Gevaert ME, Ghobril JP, Gidon A, Graham JW, Gupta A, Haenel V, Hay E, Heinis T, Hernando JB, Hines M, Kanari L, Keller D, Kenyon J, Khazen G, Kim Y, King JG, Kisvarday Z, Kumbhar P, Lasserre S, Le B\u00e9 JV, Magalh\u00e3es BR, Merch\u00e1n-P\u00e9rez A, Meystre J, Morrice BR, Muller J, Mu\u00f1oz-C\u00e9spedes A, Muralidhar S, Muthurasa K, Nachbaur D, Newton TH, Nolte M, Ovcharenko A, Palacios J, Pastor L, Perin R, Ranjan R, Riachi I, Rodr\u00edguez JR, Riquelme JL, R\u00f6ssert C, Sfyrakis K, Shi Y, Shillcock JC, Silberberg G, Silva R, Tauheed F, Telefont M, Toledo-Rodriguez M, Tr\u00e4nkler T, Van Geit W, D\u00edaz JV, Walker R, Wang Y, Zaninetta SM (2015)"
+ },
+ {
+ "object_id": 188478,
+ "object_name": "Ramaswamy S, Courcol JD, Abdellah M, Adaszewski SR, Antille N, Arsever S, Atenekeng G, Bilgili A, Brukau Y, Chalimourda A, Chindemi G, Delalondre F, Dumusc R, Eilemann S, Gevaert ME, Gleeson P, Graham JW, Hernando JB, Kanari L, Katkov Y, Keller D, King JG, Ranjan R, Reimann MW, R\u00f6ssert C, Shi Y, Shillcock JC, Telefont M, Van Geit W, Diaz JV, Walker R, Wang Y, Zaninetta SM, DeFelipe J, Hill SL, Muller J, Segev I, Sch\u00fcrmann F, Muller EB, Markram H (2015)"
+ },
+ {
+ "object_id": 188479,
+ "object_name": "Reimann MW, King JG, Muller EB, Ramaswamy S, Markram H (2015)"
+ },
+ {
+ "object_id": 232955,
+ "object_name": "Abdellah M, Hernando J, Antille N, Eilemann S, Markram H, Sch\u00fcrmann F (2017)"
+ },
+ {
+ "object_id": 233054,
+ "object_name": "Reimann MW, Nolte M, Scolamiero M, Turner K, Perin R, Chindemi G, Dlotko P, Levi R, Hess K, Markram H (2017)"
+ },
+ {
+ "object_id": 230838,
+ "object_name": "Gal E, London M, Globerson A, Ramaswamy S, Reimann MW, Muller E, Markram H, Segev I (2017)"
+ },
+ {
+ "object_id": 233323,
+ "object_name": "Reimann MW, Horlemann AL, Ramaswamy S, Muller EB, Markram H (2017)"
+ },
+ {
+ "object_id": 260056,
+ "object_name": "Barros-Zulaica N, Rahmon J, Chindemi G, Perin R, Markram H, Muller E, Ramaswamy S (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 154350,
+ "object_name": "NeuroML (web link to model)"
+ }
+ ]
+ },
+ "name": "The neocortical microcircuit collaboration portal (Markram et al. 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"This portal provides an online public resource of the Blue Brain Project's first release of a digital reconstruction of the microcircuitry of juvenile Rat somatosensory cortex, access to experimental data sets used in the reconstruction, and the resulting models.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/188543",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Markram group"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228597,
+ "object_name": "Barrel cortex"
+ }
+ ]
+ },
+ "ver_date": "2017-09-28T15:33:48.533",
+ "ver_number": 7
+ },
+ "188544": {
+ "class_id": 19,
+ "created": "2016-03-20T15:43:21.913",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 188544,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182905,
+ "object_name": "Dura-Bernal, Salvador [salvadordura at gmail.com]"
+ },
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 183020,
+ "object_name": "Seidenstein, Alexandra [ahs342 at nyu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195862,
+ "object_name": "Lytton WW, Seidenstein AH, Dura-Bernal S, McDougal RA, Sch\u00fcrmann F, Hines ML (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 195884,
+ "object_name": "NetPyNE"
+ }
+ ]
+ },
+ "name": "Parallelizing large networks in NEURON (Lytton et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Large multiscale neuronal network simulations and\r\ninnovative neurotechnologies are required for development of these models requires\r\ndevelopment of new simulation technologies.\r\n\r\nWe describe here the current use of\r\nthe NEURON simulator with MPI (message passing interface) for simulation in\r\nthe domain of moderately large networks on commonly available High\r\nPerformance Computers (HPCs).\r\n\r\nWe discuss the\r\nbasic layout of such simulations, including the methods of simulation setup, the\r\nrun-time spike passing paradigm and post-simulation data storage and data\r\nmanagement approaches.\r\n\r\nWe also compare three types of\r\nnetworks, ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/188544",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "NetPyNE"
+ },
+ "ver_date": "2017-02-23T11:07:45.137",
+ "ver_number": 11
+ },
+ "188552": {
+ "class_id": 19,
+ "created": "2016-03-24T10:31:47.107",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 188552,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 188554,
+ "object_name": "Naze, Sebastien [sebastien.naze at univ-amu.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 188551,
+ "object_name": "Naze S, Bernard C, Jirsa V (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Multiscale modeling of epileptic seizures (Naze et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ },
+ {
+ "object_id": 188553,
+ "object_name": "Abstract Hindmarsh-Rose neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In the context of epilepsy, the functional properties of the network at the source of a seizure are disrupted by a possibly large set of factors at the cellular and molecular levels. It is therefore needed to sacrifice some biological accuracy to model seizure dynamics in favor of macroscopic realizations. Here, we present a neuronal network model that convenes both neuronal and network representations with the goal to describe brain dynamics involved in the development of epilepsy. We compare our modeling results with animal in vivo recordings to validate our approach in the context of seizures. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/188552",
+ "ver_date": "2017-02-23T11:08:18.783",
+ "ver_number": 7
+ },
+ "188977": {
+ "class_id": 19,
+ "created": "2016-03-30T18:00:18.85",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 188977,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189469,
+ "object_name": "Malerba P, Krishnan GP, Fellous JM, Bazhenov M (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal cells, basket cells, ripples (Malerba et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 182866,
+ "object_name": "Hippocampus CA1 PV+ fast-firing interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of CA1 pyramidal layer Ripple activity, triggered when receiving current input (to represent CA3 sharp-waves). \r\nCells are Adaptive-Exponential Integrate and Fire neurons, receiving independent OU noise."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/188977",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2017-03-07T18:09:33.137",
+ "ver_number": 7
+ },
+ "189088": {
+ "class_id": 19,
+ "created": "2016-04-17T05:25:10.047",
+ "gitrepo": false,
+ "id": 189088,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189092,
+ "object_name": "Atherton, Laura "
+ },
+ {
+ "object_id": 189093,
+ "object_name": "Prince, Luke "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249382,
+ "object_name": "Atherton LA, Prince LY, Tsaneva-Atanasova K (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Fully continuous Pinsky-Rinzel model for bifurcation analysis (Atherton et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 189094,
+ "object_name": "Pinsky-Rinzel CA1/3 pyramidal cell "
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The original, 2-compartment, CA3 cell, Pinsky-Rinzel model (Pinsky, Rinzel 1994) has several discontinuous functions that prevent the use of standard bifurcation analysis tools to study the model. Here we present a modified, fully continuous system that captures the behaviour of the original model, while permitting the use of available numerical continuation software to perform full-system bifurcation and fast-slow analysis in XPPAUT."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189088",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Laura Atherton and Luke Prince"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Pinsky-Rinzel Ca1/3 pyramidal cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "k.tsaneva-atanasova@exeter.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Krasimira Tsaneva-Atanasova"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2016-04-27T15:01:40.833",
+ "ver_number": 17
+ },
+ "189153": {
+ "class_id": 19,
+ "created": "2016-04-20T10:34:03.723",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189153,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189720,
+ "object_name": "Jedrzejewska-Szmek, Joanna "
+ },
+ {
+ "object_id": 189721,
+ "object_name": "Damodaran, Sriraman "
+ },
+ {
+ "object_id": 189722,
+ "object_name": "Dorman, Daniel B "
+ },
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195048,
+ "object_name": "Jedrzejewska-Szmek J, Damodaran S, Dorman DB, Blackwell KT (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Striatal Spiny Projection Neuron (SPN) plasticity rule (Jedrzejewska-Szmek et al 2016)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189153",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Joanna Jedrzejewska-Szmek\r\nSriraman Damodaran\r\nDaniel B Dorman"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Spiny Projection Neuron"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "NMDA, GABAA"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Synaptic plasticity"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2016-10-10T11:56:26.333",
+ "ver_number": 7
+ },
+ "189154": {
+ "class_id": 19,
+ "created": "2016-04-25T09:54:03.423",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 189154,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 182905,
+ "object_name": "Dura-Bernal, Salvador [salvadordura at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195105,
+ "object_name": "Neymotin SA, Dura-Bernal S, Lakatos P, Sanger TD, Lytton WW (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Multitarget pharmacology for Dystonia in M1 (Neymotin et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 182505,
+ "object_name": "Neocortex layer 4 neuron"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ },
+ {
+ "object_id": 184132,
+ "object_name": "Neocortex layer 4 interneuron"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ },
+ {
+ "object_id": 184136,
+ "object_name": "Neocortex layer 6a interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We developed a multiscale model of primary motor cortex, ranging from molecular, up to cellular, and network levels, containing 1715 compartmental model neurons with multiple ion channels and intracellular molecular dynamics. We wired the model based on electrophysiological data obtained from mouse motor cortex circuit mapping experiments. We used the model to reproduce patterns of heightened activity seen in dystonia by applying independent random variations in parameters to identify pathological parameter sets. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189154",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Drug Discovery, Dystonia"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I_KDr"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T12:23:42.287",
+ "ver_number": 15
+ },
+ "189155": {
+ "class_id": 19,
+ "created": "2016-04-25T11:34:44.593",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189155,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 194894,
+ "object_name": "Wang, Jicheng [jiw23 at pitt.edu]"
+ },
+ {
+ "object_id": 194895,
+ "object_name": "Tai, Changfeng "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 190562,
+ "object_name": "Fribance S, Wang J, Roppolo JR, de Groat WC, Tai C (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Axonal HH-model for temperature stimulation (Fribance et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... To analyze the temperature effect, our study modified\r\nthe classical HH axonal model by incorporating a membrane\r\ncapacitance-temperature relationship. The modified model\r\nsuccessfully simulated the generation and propagation of action\r\npotentials induced by a rapid increase in local temperature\r\nwhen the Curie temperature of membrane capacitance is below\r\n40 \u00b0C, while the classical model failed to simulate the\r\naxonal excitation by temperature stimulation. The new model\r\npredicts that a rapid increase in local temperature produces a\r\nrapid increase in membrane capacitance, which causes an inward\r\nmembrane current across the membrane capacitor strong\r\nenough to depolarize the membrane and generate an action\r\npotential. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189155",
+ "ver_date": "2016-07-20T13:43:36.963",
+ "ver_number": 6
+ },
+ "189160": {
+ "class_id": 19,
+ "created": "2016-04-27T12:22:22.833",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189160,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189181,
+ "object_name": "Hass, Joachim [joachim.hass at zi-mannheim.de]"
+ },
+ {
+ "object_id": 189182,
+ "object_name": "Hert\u00e4g, Loreen [loreen.hertaeg at tu-berlin.de]"
+ },
+ {
+ "object_id": 82786,
+ "object_name": "Durstewitz, Daniel [daniel.durstewitz at plymouth.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 128811,
+ "object_name": "Laminar Connectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189183,
+ "object_name": "Hass J, Hert\u00e4g L, Durstewitz D (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A detailed data-driven network model of prefrontal cortex (Hass et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Data-based PFC-like circuit with layer 2/3 and 5, synaptic clustering, four types of interneurons and cell-type specific short-term synaptic plasticity; neuron parameters fitted to in vitro data, all other parameters constrained by experimental literature. Reproduces key features of in vivo resting state activity without specific tuning."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189160",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hass, Joachim \r\nHert\u00e4g, Loreen "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Prefrontal cortex pyramidal cell and interneuron"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2016-05-31T14:41:37.96",
+ "ver_number": 7
+ },
+ "189186": {
+ "class_id": 19,
+ "created": "2016-05-06T02:59:12.76",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189186,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189301,
+ "object_name": "Szoboszlay, M [szoboszlay.miklos at koki.mta.hu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189188,
+ "object_name": "Szoboszlay M, Lorincz A, Lanore F, Vervaeke K, Silver RA, Nusser Z (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 143823,
+ "object_name": "neuroConstruct"
+ }
+ ]
+ },
+ "name": "Functional properties of dendritic gap junctions in Cerebellar Golgi cells (Szoboszlay et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We investigated the properties of gap junctions\r\nin cerebellar interneurons by combining paired\r\nsomato-somatic and somato-dendritic recordings,\r\nanatomical reconstructions, immunohistochemistry,\r\nelectron microscopy, and modeling. By fitting\r\ndetailed compartmental models of Golgi cells to\r\ntheir somato-dendritic voltage responses, we determined\r\ntheir passive electrical properties and the\r\nmean gap junction conductance (0.9 nS). ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189186",
+ "ver_date": "2016-05-07T18:21:08.213",
+ "ver_number": 13
+ },
+ "189308": {
+ "class_id": 19,
+ "created": "2016-05-11T03:43:11.433",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189308,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234655,
+ "object_name": "Medan V, M\u00e4ki-Marttunen T, Sztarker J, Preuss T (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Goldfish Mauthner cell (Medan et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 189309,
+ "object_name": "Mauthner cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...In fish, evasion of a diving bird that breaks the water surface depends on integrating visual and auditory stimuli with very different characteristics. How do neurons process such differential sensory inputs at the dendritic level? For that we studied the Mauthner-cells (M-cells) in the goldfish startle circuit, which receive visual and auditory inputs via two separate dendrites, both accessible for in vivo recordings. We asked if electrophysiological membrane properties and dendrite morphology, studied in vivo, play a role in selective sensory processing in the M-cell. Our results show that anatomical and electrophysiological differences between the dendrites combine to produce stronger attenuation of visually evoked post synaptic potentials (PSPs) than to auditory evoked PSPs. Interestingly, our recordings showed also cross-modal dendritic interaction, as auditory evoked PSPs invade the ventral dendrite (VD) as well as the opposite, visual PSPs invade the lateral dendrite (LD). However, these interactions were asymmetrical with auditory PSPs being more prominent in the VD than visual PSPs in the LD. Modelling experiments imply that this asymmetry is caused by active conductances expressed in the proximal segments of the VD. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189308",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Mauthner cell"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 234657,
+ "object_name": "Goldfish"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249922,
+ "object_name": "Goldfish"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:17:21.75",
+ "ver_number": 14
+ },
+ "189344": {
+ "biosimulations": {
+ "value": "modeldb-189344"
+ },
+ "class_id": 19,
+ "created": "2016-05-17T11:56:53.667",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189344,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226599,
+ "object_name": "Handy, Gregory [handy at math.utah.edu]"
+ },
+ {
+ "object_id": 226600,
+ "object_name": "Taheri, Marsa "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226598,
+ "object_name": "Handy G, Taheri M, White JA, Borisyuk A (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "A mathematical model of evoked calcium dynamics in astrocytes (Handy et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Here we present a qualitative analysis of a recent mathematical model of astrocyte calcium responses. We show how the major response types are generated in the model as a result of the underlying bifurcation structure. By varying key channel parameters, mimicking blockers used by experimentalists, we manipulate this underlying bifurcation structure and predict how the distributions of responses can change. We find that store-operated calcium channels, plasma membrane bound channels with little activity during calcium transients, have a surprisingly strong effect, underscoring the importance of considering these channels in both experiments and mathematical settings. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189344",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I_SOC"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gregory Handy, Marsa Taheri"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "XPP"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Astrocytes"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2017-03-31T12:26:31.747",
+ "ver_number": 17
+ },
+ "189346": {
+ "class_id": 19,
+ "created": "2016-05-18T11:38:09.393",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189346,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 238463,
+ "object_name": "Kim, Christopher M [christopher.kim3 at nih.gov]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230688,
+ "object_name": "Kim CM, Nykamp DQ (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ }
+ ]
+ },
+ "name": "Modeling epileptic seizure induced by depolarization block (Kim & Dykamp 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The inhibitory restraint necessary to suppress\r\naberrant activity can fail when inhibitory neurons cease to\r\ngenerate action potentials as they enter depolarization block.\r\nWe investigate possible bifurcation structures that arise at\r\nthe onset of seizure-like activity resulting from depolarization\r\nblock in inhibitory neurons. Networks of conductance based\r\nexcitatory and inhibitory neurons are simulated to\r\ncharacterize different types of transitions to the seizure\r\nstate, and a mean field model is developed to verify the generality\r\nof the observed phenomena of excitatory-inhibitory\r\ndynamics. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189346",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "c.kim@bcf.uni-freiburg.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Christopher Kim"
+ },
+ "ver_date": "2018-02-14T18:14:32.97",
+ "ver_number": 7
+ },
+ "189347": {
+ "class_id": 19,
+ "created": "2016-05-20T14:58:48.11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189347,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124046,
+ "object_name": "Polsky, Alon [alonpol at tx.technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189348,
+ "object_name": "Poleg-Polsky A, Diamond JS (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Multiplication by NMDA receptors in Direction Selective Ganglion cells (Poleg-Polsky & Diamond 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model demonstrates how signal amplification with NMDARs depends on the synaptic environment. When direction selectivity (DS) detection is mediated by DS inhibition, NMDARs multiply other synaptic conductances. In the case of DS tuned excitation, NMDARs contribute additively."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189347",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:31:32.11",
+ "ver_number": 7
+ },
+ "189786": {
+ "class_id": 19,
+ "created": "2016-05-30T05:23:57.507",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 189786,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189919,
+ "object_name": "Capogrosso, Marco "
+ },
+ {
+ "object_id": 189920,
+ "object_name": "Formento, Emanuele "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189794,
+ "object_name": "Moraud EM, Capogrosso M, Formento E, Wenger N, DiGiovanna J, Courtine G, Micera S (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Muscle spindle feedback circuit (Moraud et al, 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 117813,
+ "object_name": "Spinal cord motor neuron slow twitch"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here, we developed a computational model of the muscle spindle feedback circuits of the rat ankle that predicts the interactions between Epidural Stimulation and spinal circuit dynamics during gait."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189786",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Epidural Stimulation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Marco Capogrosso; Emanuele Formento"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2017-01-13T12:21:55.887",
+ "ver_number": 9
+ },
+ "189922": {
+ "class_id": 19,
+ "created": "2016-05-31T18:58:57.753",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189922,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189924,
+ "object_name": "Ganguly, Mohit [mohit.ganguly at vanderbilt.edu]"
+ },
+ {
+ "object_id": 189925,
+ "object_name": "Clay, John R "
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189923,
+ "object_name": "Clay JR, Paydarfar D, Forger DB (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Model of Type 3 firing in neurons (Clay et al 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "An ionic model for Type 3 firing in neurons (Clay et al 2008)\r\n\r\nSome neurons fire only once in response to a sustained depolarizing current pulse, type 3 behavior. One example, surprisingly, is the squid giant axon. The Hodgkin-Huxley (HH) model of this preparation fires repetitively for these conditions \u2013 type 2, a result that is not observed experimentally as shown in the above paper. Changing one parameter of their model of IK is sufficient to mimic the result."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189922",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Mohit Ganguly\r\nJohn R Clay"
+ },
+ "ver_date": "2023-01-30T14:07:28.68",
+ "ver_number": 10
+ },
+ "189946": {
+ "class_id": 19,
+ "created": "2016-06-01T22:41:28.81",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 189946,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189948,
+ "object_name": "Fietkiewicz, Chris"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189947,
+ "object_name": "Fietkiewicz C, Loparo KA (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Macroscopic model of epilepsy (Fietkiewicz & Loparo 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulates epileptiform EEG. Original model used for Figure 2 in Fietkiewicz and Loparo 2016. The MATLAB program uses Euler integration to create the basic plot in Figure 2. The model is based on the original model specified in Wendling F, Bartolomei F, Bellanger JJ, Chauvel P. Epileptic fast activity can be explained by a model of impaired GABAergic dendritic inhibition. Eur J Neurosci, 2002;15(9):1499-1508."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/189946",
+ "ver_date": "2016-06-02T13:01:20.033",
+ "ver_number": 6
+ },
+ "190140": {
+ "class_id": 19,
+ "created": "2016-06-13T14:42:51.873",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 190140,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 190160,
+ "object_name": "Parasuram, Harilal [harilalp@am.amrita.edu]"
+ },
+ {
+ "object_id": 116853,
+ "object_name": "Diwakar, Shyam [shyam at amrita.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 190161,
+ "object_name": "Parasuram H, Nair B, D'Angelo E, Hines M, Naldi G, Diwakar S (2016)"
+ },
+ {
+ "object_id": 225418,
+ "object_name": "Diwakar S, Medini C, Nair M, Parasuram H, Vijayan A, Nair B (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Modeling single neuron LFPs and extracellular potentials with LFPsim (Parasuram et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "LFPsim - Simulation scripts to compute Local Field Potentials (LFP) from cable compartmental models of neurons and networks implemented in the NEURON simulation environment."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/190140",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Local Field Potentials"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Parasuram, Harilal [harilalp@am.amrita.edu]"
+ },
+ "ver_date": "2017-02-01T10:23:48.687",
+ "ver_number": 12
+ },
+ "190261": {
+ "biosimulations": {
+ "value": "modeldb-190261"
+ },
+ "class_id": 19,
+ "created": "2016-06-15T13:14:18.403",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 190261,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53570,
+ "object_name": "Prescott, Steven [steve.prescott at sickkids.ca]]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 190264,
+ "object_name": "Rho YA, Prescott SA (2012)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Dorsal root ganglion (primary somatosensory) neurons (Rho & Prescott 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper, we demonstrate how dorsal root ganglion (DRG) neuron excitability can become pathologically altered, as occurs in neuropathic pain. Specifically, we reproduce pathological changes in spiking pattern (from transient to repetitive spiking) and the development of membrane potential oscillations and bursting."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/190261",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Prescott, Steven [steve.prescott@sickkids.ca]"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "XPP"
+ },
+ "ver_date": "2016-06-16T11:31:14.96",
+ "ver_number": 5
+ },
+ "190304": {
+ "class_id": 19,
+ "created": "2016-06-15T16:26:12.483",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 190304,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ },
+ {
+ "object_id": 189720,
+ "object_name": "Jedrzejewska-Szmek, Joanna "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230560,
+ "object_name": "J?drzejewska-Szmek J, Luczak V, Abel T, Blackwell KT (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 139757,
+ "object_name": "NeuroRD"
+ }
+ ]
+ },
+ "name": "Signaling pathways underlying LTP in hippocampal CA1 pyramidal cells (Jedrzejewska-Szmek et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 229,
+ "object_name": "Ephinephrine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...We investigated whether the diverse experimental evidence can be unified by creating a spatial, mechanistic model of multiple signaling pathways in hippocampal CA1 neurons. Our results show that the combination of activity of several key kinases can predict the occurrence of long-lasting forms of LTP for multiple experimental protocols. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/190304",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jjedrzej@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Joanna Jedrzejewska-Szmek"
+ },
+ "ver_date": "2018-01-10T16:20:45.47",
+ "ver_number": 11
+ },
+ "190306": {
+ "class_id": 19,
+ "created": "2016-06-15T18:56:21.633",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 190306,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 195474,
+ "object_name": "Ho, E [ernest_ho at brown.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195475,
+ "object_name": "Ho ECY, Truccolo W (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Inhibition and glial-K+ interaction leads to diverse seizure transition modes (Ho & Truccolo 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"How focal seizures initiate and evolve in human neocortex remains a fundamental problem in neuroscience. Here, we use biophysical neuronal network models of neocortical patches to study how the interaction between inhibition and extracellular potassium ([K+]o) dynamics may contribute to different types of focal seizures. Three main types of propagated focal seizures observed in recent intracortical microelectrode recordings in humans were modelled ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/190306",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "K pump"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "E Ho"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Perl"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2016-08-10T17:53:07.04",
+ "ver_number": 10
+ },
+ "190311": {
+ "class_id": 19,
+ "created": "2016-06-17T10:44:28.15",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 190311,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 183422,
+ "object_name": "Sweeney, Yann [yann.sweeney at ed.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 183421,
+ "object_name": "Volume transmission"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 190312,
+ "object_name": "Sweeney Y, Clopath C (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Spatial structure from diffusive synaptic plasticity (Sweeney and Clopath, 2016)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 226,
+ "object_name": "NO"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper we propose a new form of Hebbian synaptic plasticity which is mediated by a diffusive neurotransmitter. The effects of this diffusive plasticity are implemented in networks of rate-based neurons, and lead to the emergence of spatial structure in the synaptic connectivity of the network."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/190311",
+ "ver_date": "2016-06-18T09:40:28.683",
+ "ver_number": 3
+ },
+ "190559": {
+ "class_id": 19,
+ "created": "2016-07-08T06:24:34.23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 190559,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 170033,
+ "object_name": "Migliore, Rosanna [rosanna.migliore at cnr.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 190545,
+ "object_name": "Migliore R, De Simone G, Leinekugel X, Migliore M (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Effects of electric fields on cognitive functions (Migliore et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper discusses the effects induced by an electric field at power lines frequency on neuronal activity during cognitive processes."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/190559",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T12:44:55.967",
+ "ver_number": 22
+ },
+ "190565": {
+ "class_id": 19,
+ "created": "2016-07-14T13:06:50.677",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 190565,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146501,
+ "object_name": "Nicola, Wilten [wnicola at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235126,
+ "object_name": "Nicola W, Clopath C (2016)"
+ },
+ {
+ "object_id": 235127,
+ "object_name": "Nicola W, Clopath C (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Supervised learning in spiking neural networks with FORCE training (Nicola & Clopath 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 146806,
+ "object_name": "Abstract theta neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The code contained in the zip file runs FORCE training for various examples from the paper:\r\n\r\nFigure 2 (Oscillators and Chaotic Attractor)\r\nFigure 3 (Ode to Joy) \r\nFigure 4 (Song Bird Example)\r\nFigure 5 (Movie Example) \r\n\r\nSupplementary Figures 10-12 (Classifier)\r\nSupplementary Ode to Joy Example \r\nSupplementary Figure 2 (Oscillator Panel) \r\nSupplementary Figure 17 (Long Ode to Joy) \r\n\r\nNote that due to file size limitations, the supervisors for Figures 4/5 are not included. \r\n\r\nSee \r\nNicola, W., & Clopath, C. (2016). Supervised Learning in Spiking Neural Networks with FORCE Training. arXiv preprint arXiv:1609.02545.\r\nfor further details. \r\n "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/190565",
+ "ver_date": "2017-12-20T22:17:54.22",
+ "ver_number": 22
+ },
+ "190610": {
+ "class_id": 19,
+ "created": "2016-07-18T16:37:45.48",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 190610,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 194886,
+ "object_name": "Ahmad, Subutai [sahmad at numenta.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 190491,
+ "object_name": "Hawkins J, Ahmad S (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Theory of sequence memory in neocortex (Hawkins & Ahmad 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... First we show that a neuron with several thousand synapses segregated on active dendrites can recognize hundreds of independent patterns of cellular activity even in the presence of large amounts of noise and pattern variation. We then propose a neuron model where patterns detected on proximal dendrites lead to action potentials, defining the classic receptive field of the neuron, and patterns detected on basal and apical dendrites act as predictions by slightly depolarizing the neuron without generating an action potential. By this mechanism, a neuron can predict its activation in hundreds of independent contexts. We then present a network model based on neurons with these properties that learns time-based sequences. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/190610",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2016-07-20T11:42:30.15",
+ "ver_number": 7
+ },
+ "194881": {
+ "class_id": 19,
+ "created": "2016-07-19T00:47:36.263",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 194881,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 194887,
+ "object_name": "Raudies, Florian [florian.raudies at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 194885,
+ "object_name": "Raudies F, Hasselmo ME (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Grid cell model with compression effects (Raudies & Hasselmo, 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We present a model for compression of grid cell firing in modules to changes in barrier location."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/194881",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Florian Raudies"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2016-11-06T08:22:53.06",
+ "ver_number": 8
+ },
+ "194882": {
+ "class_id": 19,
+ "created": "2016-07-19T01:03:40.327",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 194882,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 194887,
+ "object_name": "Raudies, Florian [florian.raudies at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 194891,
+ "object_name": "Raudies F, Hasselmo ME (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hippocampal spiking model for context dependent behavior (Raudies & Hasselmo 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Our model simulates the effect of context dependent behavior using discrete inputs to drive spiking activity representing place and item followed sequentially by a discrete representation of the motor actions involving a response to an item (digging for food) or the movement to a different item (movement to a different pot for food). This simple network was able to consistently learn the context-dependent responses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/194882",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Florian Raudies"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2016-07-20T11:27:51.84",
+ "ver_number": 7
+ },
+ "194883": {
+ "class_id": 19,
+ "created": "2016-07-19T01:08:16.023",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 194883,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 194887,
+ "object_name": "Raudies, Florian [florian.raudies at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 194893,
+ "object_name": "Raudies F, Zilli EA, Hasselmo ME (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Deep belief network learns context dependent behavior (Raudies, Zilli, Hasselmo 2014)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We tested a rule generalization capability with a Deep Belief Network (DBN), Multi-Layer Perceptron network, and the combination of a DBN with a linear perceptron (LP). Overall, the combination of the DBN and LP had the highest success rate for generalization."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/194883",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Florian Raudies"
+ },
+ "ver_date": "2016-07-22T11:50:51.45",
+ "ver_number": 6
+ },
+ "194897": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Dura-Bernal S, Neymotin SA, Kerr CC, Sivagnanam S, Majumdar A, Francis JT, Lyt-\r\nton WW. Evolutionary algorithm optimization of biological learning parameters in a biomimetic neuroprosthesis. IBM Journal of Research and Development (Computational Neuroscience special issue)"
+ },
+ "class_id": 19,
+ "created": "2016-07-22T15:20:26.62",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 194897,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182905,
+ "object_name": "Dura-Bernal, Salvador [salvadordura at gmail.com]"
+ },
+ {
+ "object_id": 146031,
+ "object_name": "Kerr, Cliff [cliffk at neurosim.downstate.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 194898,
+ "object_name": "Dura-Bernal S, Neymotin SA, Kerr CC, Sivagnanam S, Majumdar A, Francis JT, Lytton WW (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Motor system model with reinforcement learning drives virtual arm (Dura-Bernal et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We implemented a model of the motor system with the following components: dorsal premotor cortex (PMd), primary motor cortex (M1), spinal cord and musculoskeletal arm (Figure 1). PMd modulated M1 to select the target to reach, M1 excited the descending spinal cord neurons that drove the arm muscles, and received arm proprioceptive feedback (information about the arm position) via the ascending spinal cord neurons. \r\nThe large-scale model of M1 consisted of 6,208 spiking Izhikevich model neurons [37] of four types: regular-firing and bursting pyramidal neurons, and fast-spiking and low-threshold-spiking interneurons. These were distributed across cortical layers 2/3, 5A, 5B and 6, with cell properties, proportions, locations, connectivity, weights and delays drawn primarily from mammalian experimental data [38], [39], and described in detail in previous work [29]. The network included 486,491 connections, with synapses modeling properties of four different receptors ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/194897",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "salvadordura@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Salvador Dura-Bernal"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2022-07-23T12:38:58.35",
+ "ver_number": 15
+ },
+ "195206": {
+ "class_id": 19,
+ "created": "2016-08-03T09:23:05.243",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195206,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249322,
+ "object_name": "Hutt A, Mierau A, Lefebvre J (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Stochastic and periodic inputs tune ongoing oscillations (Hutt et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We here analyze a network of recurrently connected spiking neurons with time delay displaying stable synchronous dynamics. Using mean-field and stability analyses, we investigate the influence of dynamic inputs on the frequency of firing rate oscillations. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195206",
+ "ver_date": "2019-01-09T16:50:08.883",
+ "ver_number": 10
+ },
+ "195555": {
+ "class_id": 19,
+ "created": "2016-08-22T11:01:47.843",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195555,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246764,
+ "object_name": "McDougal RA, Dalal I, Morse TM, Shepherd GM (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Automated metadata suggester (McDougal et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This code provides an abstract processing method that predicts keywords for model entries in ModelDB."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195555",
+ "ver_date": "2018-11-09T14:08:06.313",
+ "ver_number": 12
+ },
+ "195569": {
+ "class_id": 19,
+ "created": "2016-08-29T04:05:50.373",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195569,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 195572,
+ "object_name": "Huang, Shiwei [shiweihuang at outlook.com]"
+ },
+ {
+ "object_id": 153454,
+ "object_name": "Hong, Sungho [shhong at oist.jp]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195578,
+ "object_name": "Huang S, Hong S, De Schutter E (2015)"
+ },
+ {
+ "object_id": 195570,
+ "object_name": "Huang S, Hong S, De Schutter E (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Concentration dependent nonlinear K+ and Cl- leak current (Huang et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In their seminal works on squid giant axons, Hodgkin, and Huxley\r\napproximated the membrane leak current as Ohmic, i.e., linear, since\r\nin their preparation, sub-threshold current rectification due to the\r\ninfluence of ionic concentration is negligible.\r\n\r\nMost studies on\r\nmammalian neurons have made the same, largely untested,\r\nassumption. \r\n\r\nHere we show that the membrane time constant and input\r\nresistance of mammalian neurons (when other major voltage-sensitive\r\nand ligand-gated ionic currents are discounted) varies non-linearly\r\nwith membrane voltage, following the prediction of a\r\nGoldman-Hodgkin-Katz-based passive membrane model.\r\n...\" (see paper for details and more).\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195569",
+ "ver_date": "2023-01-30T13:49:14.623",
+ "ver_number": 14
+ },
+ "195615": {
+ "class_id": 19,
+ "created": "2016-08-31T16:46:20.567",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 195615,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 195616,
+ "object_name": "Suter, Benjamin "
+ },
+ {
+ "object_id": 97869,
+ "object_name": "Neymotin, Sam [Samuel.Neymotin at nki.rfmh.org]"
+ },
+ {
+ "object_id": 182905,
+ "object_name": "Dura-Bernal, Salvador [salvadordura at gmail.com]"
+ },
+ {
+ "object_id": 217750,
+ "object_name": "Forzano, Ernie "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 217748,
+ "object_name": "Neymotin SA, Suter BA, Dura-Bernal S, Shepherd GM, Migliore M, Lytton WW (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Computer models of corticospinal neurons replicate in vitro dynamics (Neymotin et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227970,
+ "object_name": "Neocortex M1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 217749,
+ "object_name": "Neocortex primary motor area pyramidal layer 5 corticospinal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Corticospinal neurons (SPI), thick-tufted pyramidal neurons in motor\r\ncortex layer 5B that project caudally via the medullary pyramids,\r\ndisplay distinct class-specific electrophysiological properties in\r\nvitro: strong sag with hyperpolarization, lack of adaptation, and a\r\nnearly linear frequency-current (FI) relationship. We used our\r\nelectrophysiological data to produce a pair of large archives of SPI\r\nneuron computer models in two model classes: 1. Detailed models with\r\nfull reconstruction; 2. Simplified models with 6 compartments. We\r\nused a PRAXIS and an evolutionary multiobjective optimization (EMO) in\r\nsequence to determine ion channel conductances. \r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195615",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Benjamin Suter, Ernie Forzano"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Corticospinal neuron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-01-30T13:35:58.193",
+ "ver_number": 23
+ },
+ "195626": {
+ "class_id": 19,
+ "created": "2016-09-02T15:58:05.477",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195626,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195620,
+ "object_name": "Ferneyhough GB, Thibealut CM, Dascalu SM, Harris FC (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "ModFossa: a library for modeling ion channels using Python (Ferneyhough et al 2016)",
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195626",
+ "ver_date": "2016-09-02T16:25:43.373",
+ "ver_number": 5
+ },
+ "195658": {
+ "class_id": 19,
+ "created": "2016-09-08T16:11:21.303",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195658,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 186894,
+ "object_name": "Tikidji-Hamburyan, Ruben [ruben.tikidji.hamburyan at gmail.com] "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 218016,
+ "object_name": "Tikidji-Hamburyan RA, El-Ghazawi TA, Triplett JW (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 146899,
+ "object_name": "Cython"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Models of visual topographic map alignment in the Superior Colliculus (Tikidji-Hamburyan et al 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We develop two novel computational models of\r\nvisual map alignment in the SC that incorporate distinct activity-dependent\r\ncomponents. First, a Correlational Model assumes that V1 inputs achieve alignment\r\nwith established retinal inputs through simple correlative firing mechanisms. A second\r\nIntegrational Model assumes that V1 inputs contribute to the firing of SC neurons\r\nduring alignment. Both models accurately replicate in vivo findings in wild type,\r\ntransgenic and combination mutant mouse models, suggesting either activity-dependent\r\nmechanism is plausible."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195658",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ruben.tikidji.hamburyan@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ruben Tikidji-Hamburyan"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118308,
+ "object_name": "Superior colliculus"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:31:47.377",
+ "ver_number": 6
+ },
+ "195659": {
+ "class_id": 19,
+ "created": "2016-09-08T16:47:50.127",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195659,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 195660,
+ "object_name": "Detorakis, Georgios [gdetorak at uci.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 25654,
+ "object_name": "Wang XJ (1994)"
+ },
+ {
+ "object_id": 195655,
+ "object_name": "Detorakis G (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Multiple dynamical modes of thalamic relay neurons (Wang XJ 1994)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The (Wang 1994) papers model was replicated in python by (Detorakis 2016). \"The model is conductance-based and takes advantage of the\r\ninterplay between a T-type calcium current and a non-specific cation sag current and\r\nthus, it is able to generate spindle and delta rhythms.\" The model also generates intermittent phase locking, non periodic firing, bursts, and tonic spike patterns."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195659",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Detorakis, Georgios [gdetorak at uci.edu]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Thalamocoritcal relay neuron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-04-04T13:54:44.587",
+ "ver_number": 6
+ },
+ "195666": {
+ "class_id": 19,
+ "created": "2016-09-09T17:39:23.09",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195666,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 240367,
+ "object_name": "Dewell, Richard Burkett [dewell at bcm.edu]"
+ },
+ {
+ "object_id": 33804,
+ "object_name": "Gabbiani, F"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 240366,
+ "object_name": "Dewell RB, Gabbiani F (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "LGMD with 3D morphology and active dendrites (Dewell & Gabbiani 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116948,
+ "object_name": "Locust Lobula Giant Movement Detector (LGMD) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model of the locust LGMD looming sensitive neuron from Dewell & Gabbiani 2018. The morphology was constructed based on 2-photon imaging, and active conductances throughout the neuron were based on sharp electrode recordings in vivo."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195666",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dewell, Richard"
+ },
+ "ver_date": "2019-08-08T17:35:45.687",
+ "ver_number": 22
+ },
+ "195667": {
+ "class_id": 19,
+ "created": "2016-09-11T08:39:13.817",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 195667,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206286,
+ "object_name": "Eyal, Guy [guy.eyal at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206290,
+ "object_name": "Eyal G, Verhoog MB, Testa-Silva G, Deitcher Y, Lodder JC, Benavides-Piccione R, Morales J, DeFelipe J, de Kock CP, Mansvelder HD, Segev I (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Human L2/3 pyramidal cells with low Cm values (Eyal et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The advanced cognitive capabilities of the human brain are often attributed to our recently evolved neocortex. However, it is not known whether the basic building blocks of human neocortex, the pyramidal neurons, possess unique biophysical properties that might impact on cortical computations. Here we show that layer 2/3 pyramidal neurons from human temporal cortex (HL2/3 PCs) have a specific membrane capacitance (Cm) of ~0.5 \u00b5F/cm2, half of the commonly accepted \u201cuniversal\u201d value (~1 \u00b5F/cm2) for biological membranes. This finding was predicted by fitting in vitro voltage transients to theoretical transients then validated by direct measurement of Cm in nucleated patch experiments. Models of 3D reconstructed HL2/3 PCs demonstrated that such low Cm value significantly enhances both synaptic charge-transfer from dendrites to soma and spike propagation along the axon. This is the first demonstration that human cortical neurons have distinctive membrane properties, suggesting important implications for signal processing in human neocortex."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195667",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Membrane Properties"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Guy Eyal"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2016-10-11T10:42:13.19",
+ "ver_number": 7
+ },
+ "195731": {
+ "class_id": 19,
+ "created": "2016-09-13T17:12:54.347",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195731,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 195733,
+ "object_name": "Topalidou, Meropi "
+ },
+ {
+ "object_id": 195732,
+ "object_name": "Rougier, Nicolas P. [Nicolas.Rougier at inria.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195680,
+ "object_name": "Guthrie M, Leblois A, Garenne A, Boraud T (2013)"
+ },
+ {
+ "object_id": 195730,
+ "object_name": "Topalidou M, Rougier NP (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Cognitive and motor cortico-basal ganglia interactions during decision making (Guthrie et al 2013)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a re-implementation of Guthrie et al 2013 by Topalidou and Rougier 2015. The original study investigated how multiple level action selection\r\ncould be performed by the basal ganglia."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195731",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Meropi Topalidou and Nicolas P. Rougier [Nicolas.Rougier@inria.fr]"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2016-09-13T17:22:32.867",
+ "ver_number": 4
+ },
+ "195856": {
+ "class_id": 19,
+ "created": "2016-09-15T18:19:44.867",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195856,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 195857,
+ "object_name": "Viejo, Guillaume [guillaume.viejo at isir.upmc.fr]"
+ },
+ {
+ "object_id": 124115,
+ "object_name": "Girard, Benoit [girard at isir.upmc.fr]"
+ },
+ {
+ "object_id": 195859,
+ "object_name": "Khamassi, Mehdi "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195738,
+ "object_name": "Keramati M, Dezfouli A, Piray P (2011)"
+ },
+ {
+ "object_id": 195853,
+ "object_name": "Viejo G, Girard B, Khamassi M (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Speed/accuracy trade-off between the habitual and the goal-directed processes (Kermati et al. 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"This study is a reference implementation of Keramati, Dezfouli, and Piray 2011 that\r\nproposed an arbitration mechanism between a goal-directed strategy and a habitual\r\nstrategy, used to model the behavior of rats in instrumental conditionning tasks. The\r\nhabitual strategy is the Kalman Q-Learning from Geist, Pietquin, and Fricout 2009. We\r\nreplicate the results of the first task, i.e. the devaluation experiment with two states\r\nand two actions. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195856",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Guillaume Viejo [guillaume.viejo at isir.upmc.fr], Beno\u00eet Girard, and Mehdi Khamassi"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2016-09-15T18:30:13.67",
+ "ver_number": 4
+ },
+ "195886": {
+ "class_id": 19,
+ "created": "2016-09-16T19:23:01.843",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195886,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 195887,
+ "object_name": "Berdahl, Carl H [Carl.Berdahl at verizon.net]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 196196,
+ "object_name": "Borderline Personality Disorder (BPD)"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195889,
+ "object_name": "Berdahl CH (2010)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Borderline Personality Disorder (Berdahl, 2010)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This research developed a neural network simulation constrained by known neuroanatomy and neurophysiology to generate ideas about the etiology of Borderline Personality Disorder. The simulations suggest an important role for the amygdala-ventromedial prefrontal cortex-amygdala circuit."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195886",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "SHH"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Berdahl, Carl H"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Shunting neuron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 142628,
+ "object_name": "Amygdala"
+ },
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ },
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2016-09-20T16:20:24.763",
+ "ver_number": 9
+ },
+ "195890": {
+ "class_id": 19,
+ "created": "2016-09-19T07:14:02.33",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 195890,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225803,
+ "object_name": "Kato, Ayaka "
+ },
+ {
+ "object_id": 117206,
+ "object_name": "Morita, Kenji [morita at p.u-tokyo.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225630,
+ "object_name": "Kato A, Morita K (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Reinforcement Learning with Forgetting: Linking Sustained Dopamine to Motivation (Kato Morita 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"It has been suggested that dopamine (DA) represents\r\nreward-prediction-error (RPE) defined in reinforcement learning and\r\ntherefore DA responds to unpredicted but not predicted\r\nreward.\r\n\r\nHowever, recent studies have found DA response sustained\r\ntowards predictable reward in tasks involving self-paced behavior, and\r\nsuggested that this response represents a motivational signal.\r\n\r\nWe have previously shown that RPE can sustain if there is\r\ndecay/forgetting of learned-values, which can be implemented as decay\r\nof synaptic strengths storing learned-values. This account, however,\r\ndid not explain the suggested link between tonic/sustained DA and\r\nmotivation. In the present work, we explored the motivational effects\r\nof the value-decay in self-paced approach behavior, modeled as a\r\nseries of \u2018Go\u2019 or \u2018No-Go\u2019 selections towards a goal. Through\r\nsimulations, we found that the value-decay can enhance motivation,\r\nspecifically, facilitate fast goal-reaching, albeit\r\ncounterintuitively.\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/195890",
+ "ver_date": "2017-03-07T16:43:41.127",
+ "ver_number": 10
+ },
+ "196197": {
+ "class_id": 19,
+ "created": "2016-09-20T20:18:38.55",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 196197,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 196198,
+ "object_name": "DeWoskin, Daniel [dadewoskin at gmail.com] "
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246552,
+ "object_name": "Paul JR, DeWoskin D, McMeekin LJ, Cowell RM, Forger DB, Gamble KL (2016)"
+ },
+ {
+ "object_id": 246612,
+ "object_name": "DeWoskin D, Myung J, Belle MD, Piggins HD, Takumi T, Forger DB (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "HH model neuron of the Suprachiasmatic Nucleus including a persistent Na+ channel (Paul et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Hodgkin-Huxley style model for a neuron of the Suprachiasmatic Nucleus (SCN). Modified from DeWoskin et al, PNAS, 2015 to include a persistent sodium current. The model is used to study the role of the kinase GSK3 in regulating the electrical activity of SCN neurons through a persistent sodium current."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/196197",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "DeWoskin, Daniel [dadewoskin at gmail.com]"
+ },
+ "ver_date": "2018-11-08T18:04:00.77",
+ "ver_number": 5
+ },
+ "206227": {
+ "class_id": 19,
+ "created": "2016-09-21T16:48:07.757",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206227,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206228,
+ "object_name": "Yang, Guangyu Robert "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 196200,
+ "object_name": "Yang GR, Murray JD, Wang XJ (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "A dendritic disinhibitory circuit mechanism for pathway-specific gating (Yang et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"While reading a book in a noisy caf\u00e9, how does your brain \u2018gate in\u2019 visual information while filtering out auditory stimuli? Here we propose a mechanism for such flexible routing of information flow in a complex brain network (pathway-specific gating), tested using a network model of pyramidal neurons and three classes of interneurons with connection probabilities constrained by data. We find that if inputs from different pathways cluster on a pyramidal neuron dendrite, a pathway can be gated-on by a disinhibitory circuit motif. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206227",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:08:40.123",
+ "ver_number": 6
+ },
+ "206232": {
+ "class_id": 19,
+ "created": "2016-09-27T17:17:18.923",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206232,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206236,
+ "object_name": "Kumaravelu, Karthik [kk192 at duke.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206235,
+ "object_name": "Kumaravelu K, Brocker DT, Grill WM (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Cortex-Basal Ganglia-Thalamus network model (Kumaravelu et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We developed a biophysical network model comprising of the closed loop cortical-basal ganglia-thalamus circuit representing the healthy and parkinsonian rat brain. The network properties of the model were validated by comparing responses evoked in basal ganglia (BG) nuclei by cortical (CTX) stimulation to published experimental results. A key emergent property of the model was generation of low-frequency network oscillations. Consistent with their putative pathological role, low-frequency oscillations in model BG neurons were exaggerated in the parkinsonian state compared to the healthy condition. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206232",
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2016-12-12T15:02:23.417",
+ "ver_number": 8
+ },
+ "206238": {
+ "class_id": 19,
+ "created": "2016-09-28T15:15:33.843",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206238,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206242,
+ "object_name": "Anderson, WS "
+ },
+ {
+ "object_id": 206243,
+ "object_name": "Kudela, Pawel "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206240,
+ "object_name": "Basu I, Kudela P, Korzeniewska A, Franaszczuk PJ, Anderson WS (2015)"
+ },
+ {
+ "object_id": 206241,
+ "object_name": "Basu I, Kudela P, Anderson WS (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "A multilayer cortical model to study seizure propagation across microdomains (Basu et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 231,
+ "object_name": "Amino Acids"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A realistic neural network was used to simulate a region of neocortex to obtain extracellular LFPs from \u2018virtual micro-electrodes\u2019 and produce test data for comparison with multisite microelectrode recordings. A model was implemented in the GENESIS neurosimulator. A simulated region of cortex was represented by layers 2/3, 5/6 (interneurons and pyramidal cells) and layer 4 stelate cells, spaced at 25 \u00b5m in each horizontal direction. Pyramidal cells received AMPA and NMDA inputs from neighboring cells at the basal and apical dendrites.\r\nThe LFP data was generated by simulating 16-site electrode array with the help of \u2018efield\u2019 objects arranged at the predetermined positions with respect to the surface of the simulated network. The LFP for the model is derived from a weighted average of the current sources summed over all cellular compartments. Cell models were taken from from Traub et al. (2005) J Neurophysiol 93(4):2194-232."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206238",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Anderson WS, Kudela P"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-01-25T14:10:42.273",
+ "ver_number": 6
+ },
+ "206244": {
+ "class_id": 19,
+ "created": "2016-09-28T17:29:35.743",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206244,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206245,
+ "object_name": "Muellner, Fiona E [fiona.muellner at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 187642,
+ "object_name": "M\u00fcllner FE, Wierenga CJ, Bonhoeffer T (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: dendritic Ca2+ inhibition (Muellner et al. 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In our experimental study, we combined\r\npaired patch-clamp recordings and two-photon\r\nCa2+ imaging to quantify inhibition exerted by individual GABAergic contacts on hippocampal pyramidal cell dendrites. We observed that Ca2+ transients from back-propagating action potentials were significantly reduced during simultaneous activation of individual nearby GABAergic synapses. To simulate dendritic Ca2+ inhibition by individual GABAergic synapses, we employed a multi-compartmental CA1 pyramidal cell model with\r\ndetailed morphology, voltage-gated channel distributions, and calcium dynamics, based with modifications on the model of Poirazi et al.,\r\n2003, modelDB accession # 20212."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206244",
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-06-27T10:19:10.883",
+ "ver_number": 7
+ },
+ "206249": {
+ "class_id": 19,
+ "created": "2016-09-29T15:43:04.1",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206249,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206278,
+ "object_name": "Kastellakis, George [gkastel at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206391,
+ "object_name": "Kastellakis G, Silva AJ, Poirazi P (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Model of memory linking through memory allocation (Kastellakis et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 206251,
+ "object_name": "Abstract integrate-and-fire leaky neuron with dendritic subunits"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here, we present a simplified, biophysically inspired network model that incorporates multiple plasticity processes and explains linking of information at three different levels: (a) learning of a single associative memory (b) rescuing of a weak memory when paired with a strong one and (c) linking of multiple memories across time. By dissecting synaptic from intrinsic plasticity and neuron-wide from dendritically restricted protein capture, the model reveals a simple, unifying principle: Linked memories share synaptic clusters within the dendrites of overlapping populations of neurons"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206249",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kastellakis, George [gkastel@gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Integrate and fire neuron with dendritic subunits"
+ },
+ "ver_date": "2016-10-07T14:22:05.637",
+ "ver_number": 14
+ },
+ "206252": {
+ "class_id": 19,
+ "created": "2016-09-29T22:23:23.767",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206252,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206322,
+ "object_name": "Ceballos CC, Li S, Roque AC, Tzounopoulos T, Le\u00e3o RM (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "DCN fusiform cell (Ceballos et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 274,
+ "object_name": "Cochlear nucleus pyramidal/fusiform GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Dorsal cochlear nucleus principal neurons, fusiform neurons, display heterogeneous spontaneous action potential activity and thus represent an appropriate model to study the role of different conductances in establishing firing heterogeneity. Particularly, fusiform neurons are divided into quiet, with no spontaneous firing, or active neurons, presenting spontaneous, regular firing. These modes are determined by the expression levels of an intrinsic membrane conductance, an inwardly rectifying potassium current (IKir). We used a computational model to test whether other subthreshold conductances vary homeostatically to maintain membrane excitability constant across the two subtypes. We found that Ih expression covaries specifically with IKir in order to maintain membrane resistance constant. The impact of Ih on membrane resistance is dependent on the level of IKir expression, being much smaller in quiet neurons with bigger IKir, but Ih variations are not relevant for creating the quiet and active phenotypes. We conclude that in fusiform neurons the variations of their different subthreshold conductances are limited to specific conductances in order to create firing heterogeneity and maintain membrane homeostasis."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206252",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cesarcelis@usp.br"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Cesar Ceballos"
+ },
+ "ver_date": "2016-10-13T10:01:41.31",
+ "ver_number": 22
+ },
+ "206256": {
+ "class_id": 19,
+ "created": "2016-09-30T16:52:52.187",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206256,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206257,
+ "object_name": "Galati, Domenico F "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206255,
+ "object_name": "Galati DF, Hiester BG, Jones KR (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "BDNF morphological contributions to AP enhancement (Galati et al. 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 128077,
+ "object_name": "Neocortex dissociated cultured nerve cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We quantified BDNF\u2019s effect on\r\ncultured cortical neuron morphological parameters and found that BDNF stimulates\r\ndendrite growth and addition of dendrites while increasing both excitatory and inhibitory\r\npresynaptic inputs in a spatially restricted manner. To gain insight into how these\r\ncombined changes in neuron structure and synaptic input impact AP generation, we\r\nused the morphological parameters we gathered to generate computational models.\r\nSimulations suggest that BDNF-induced neuron morphologies generate more APs\r\nunder a wide variety of conditions. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206256",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "thomas.morse@snet.net"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "tom"
+ },
+ "ver_date": "2016-09-30T17:01:13.607",
+ "ver_number": 4
+ },
+ "206267": {
+ "class_id": 19,
+ "created": "2016-10-03T13:06:07.063",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206267,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116577,
+ "object_name": "Solinas, Sergio [solinas at unipv.it]"
+ },
+ {
+ "object_id": 206274,
+ "object_name": "Subramaniyam, Sathyaa [sakthisathyaa at gmail.com]"
+ },
+ {
+ "object_id": 46840,
+ "object_name": "D'Angelo, Egidio [dangelo at unipv.it]"
+ },
+ {
+ "object_id": 206273,
+ "object_name": "Goldfarb, Mitchell goldfarb at genectr.hunter.cuny.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206271,
+ "object_name": "Dover K, Marra C, Solinas S, Popovic M, Subramaniyam S, Zecevic D, D'Angelo E, Goldfarb M (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cerebellum granule cell FHF (Dover et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neurons in vertebrate central nervous systems initiate and conduct sodium action potentials in distinct subcellular compartments that differ architecturally and electrically. Here, we report several unanticipated passive and active properties of the cerebellar granule cell's unmyelinated axon. Whereas spike initiation at the axon initial segment relies on sodium channel (Nav)-associated fibroblast growth factor homologous factor (FHF) proteins to delay Nav inactivation, distal axonal Navs show little FHF association or FHF requirement for high-frequency transmission, velocity and waveforms of conducting action potentials. ...'"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206267",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Goldfarb, Mitchell\r\nSubramaniyam, Sathyaa"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2023-01-27T13:13:25.553",
+ "ver_number": 16
+ },
+ "206310": {
+ "class_id": 19,
+ "created": "2016-10-11T11:24:07.74",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206310,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206330,
+ "object_name": "Creamer, Matthew [Matthew.Creamer at yale.edu]"
+ },
+ {
+ "object_id": 206329,
+ "object_name": "Mano, Omer [Omer.Mano at yale.edu]"
+ },
+ {
+ "object_id": 206331,
+ "object_name": "Clark, Damon [Damon.Clark at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 168963,
+ "object_name": "Motion Detection"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206318,
+ "object_name": "Salazar-Gatzimas E, Chen J, Creamer MS, Mano O, Mandel HB, Matulis CA, Pottackal J, Clark DA (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Comparing correlation responses to motion estimation models (Salazar-Gatzimas et al. 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Code to generate responses of HRC-like and BL-like model elementary motion detectors to correlated noise stimuli, including two models with more realistic temporal filtering."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206310",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Omer Mano, Matthew Creamer, Damon Clark"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "damon.clark@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Damon Clark"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 120613,
+ "object_name": "Drosophila (fruit fly)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:14:47.563",
+ "ver_number": 14
+ },
+ "206328": {
+ "class_id": 19,
+ "created": "2016-10-15T09:17:53.023",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206328,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 207819,
+ "object_name": "Gupta, Rahul [gupta.sbt at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 207751,
+ "object_name": "Gupta R, Reneaux M, Karmeshu (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spatially-varying glutamate diffusion coefficient at CA1 synaptic cleft space (Gupta et al. 2016)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Due to the heterogeneous macromolecular crowding and geometrical irregularity at central excitatory synapses, the diffusion coefficient of glutamate may exhibit spatial variation across the cleft space. To take into account the effect of emergent cleft heterogeneity on the generation of excitatory postsynaptic currents (EPSCs), a gamma statistical distribution of the glutamate diffusion coefficient is considered and, using the principle of superstatistics, the glutamate transients are computed as well as the activation of AMPA receptors is performed. This model demonstrates the numerical simulation of the Brownian diffusion of glutamate under distributed diffusion coefficient, the subsequent stochastic activation of AMPA receptors using Milstein-Nicoll scheme and modified Gillespie algorithm with minimum time-step correction, and the eventual stochastic profile of EPSC generation. The study is based on the CA1 synapses located at the dendrites of CA1 pyramidal neurons in the mammalian hippocampal region."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206328",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gupta.sbt@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Rahul Gupta"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2016-12-06T15:31:10.563",
+ "ver_number": 8
+ },
+ "206337": {
+ "class_id": 19,
+ "created": "2016-10-22T17:03:51.443",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206337,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206342,
+ "object_name": "Ulloa, Antonio [antonio.ulloa at alum.bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 86332,
+ "object_name": "Tagamets MA, Horwitz B (1998)"
+ },
+ {
+ "object_id": 206344,
+ "object_name": "Ulloa A, Horwitz B (2016)"
+ },
+ {
+ "object_id": 206348,
+ "object_name": "Horwitz B, Warner B, Fitzer J, Tagamets MA, Husain FT, Long TW (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Large-scale neural model of visual short-term memory (Ulloa, Horwitz 2016; Horwitz, et al. 2005,...)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Large-scale neural model of visual short term memory embedded into a 998-node connectome. The model simulates electrical activity across neuronal populations of a number of brain regions and converts that activity into fMRI and MEG time-series. The model uses a neural simulator developed at the Brain Imaging and Modeling Section of the National Institutes of Health."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206337",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Antonio Ulloa"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "antonio.ulloa@alum.bu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Antonio Ulloa"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2016-10-24T23:20:02.343",
+ "ver_number": 6
+ },
+ "206356": {
+ "class_id": 19,
+ "created": "2016-10-25T17:09:58.997",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206356,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206357,
+ "object_name": "Wystrach, Antoine "
+ },
+ {
+ "object_id": 206358,
+ "object_name": "Lagogiannis, Konstantinos "
+ },
+ {
+ "object_id": 206359,
+ "object_name": "Webb, Barbara "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206354,
+ "object_name": "Wystrach A, Lagogiannis K, Webb B (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 206355,
+ "object_name": "Mathematica (web link to model)"
+ }
+ ]
+ },
+ "name": "Continuous lateral oscillations as a mechanism for taxis in Drosophila larvae (Wystrach et al 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Our analysis of larvae motion reveals a rhythmic, continuous lateral oscillation of the anterior body, encompassing all head-sweeps, small or large, without breaking the oscillatory rhythm. Further, we show that an agent-model that embeds this hypothesis reproduces a surprising number of taxis signatures observed in larvae. Also, by coupling the sensory input to a neural oscillator in continuous time, we show that the mechanism is robust and biologically plausible. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206356",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 120613,
+ "object_name": "Drosophila (fruit fly)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:15:08.893",
+ "ver_number": 7
+ },
+ "206364": {
+ "biosimulations": {
+ "value": "modeldb-206364"
+ },
+ "class_id": 19,
+ "created": "2016-10-27T21:21:38.797",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 206364,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33797,
+ "object_name": "Roth, Arnd "
+ },
+ {
+ "object_id": 206369,
+ "object_name": "Buchin, Anatoly [anat.buchin at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206368,
+ "object_name": "Buchin A, Rieubland S, H\u00e4usser M, Gutkin BS, Roth A (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Inverse stochastic resonance of cerebellar Purkinje cell (Buchin et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code shows the simulations of the adaptive exponential integrate-and-fire model (http://www.scholarpedia.org/article/Adaptive_exponential_integrate-and-fire_model) at different stimulus conditions. The parameters of the model were tuned to the Purkinje cell of cerebellum to reproduce the inhibiion of these cells by noisy current injections. Similar experimental protocols were also applied to the detailed biophysical model of Purkinje cells, de Shutter & Bower (1994) model. The repository also includes the XPPaut version of the model with the corresponding bifurcation analysis."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206364",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Anatoly Buchin\r\nArnd Roth"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Xppaut"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "anat.buchin@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Anatoly Buchin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2019-03-23T16:36:09.007",
+ "ver_number": 10
+ },
+ "206365": {
+ "biosimulations": {
+ "value": "modeldb-206365"
+ },
+ "class_id": 19,
+ "created": "2016-10-27T21:46:48.517",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 148257,
+ "object_name": "I_HCO3"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206365,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206369,
+ "object_name": "Buchin, Anatoly [anat.buchin at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 143004,
+ "object_name": "Chloride regulation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 222821,
+ "object_name": "Buchin A, Chizhov A, Huberfeld G, Miles R, Gutkin BS (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Subiculum network model with dynamic chloride/potassium homeostasis (Buchin et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 182866,
+ "object_name": "Hippocampus CA1 PV+ fast-firing interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is the code implementing the single neuron and spiking neural network dynamics. The network has the dynamic ion concentrations of extracellular potassium and intracellular chloride. The code contains multiple parameter variations to study various mechanisms of the neural excitability in the context of chloride homeostasis."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206365",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Anatoly Buchin"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Xppaut"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "anat.buchin@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Anatoly Buchin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2019-03-22T16:02:44.157",
+ "ver_number": 6
+ },
+ "206372": {
+ "class_id": 19,
+ "created": "2016-11-03T09:25:02.787",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206372,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206377,
+ "object_name": "Chavlis, Spyridon [schavlis at imbb.forth.gr]"
+ },
+ {
+ "object_id": 206376,
+ "object_name": "Petrantonakis, Panagiotis C. "
+ },
+ {
+ "object_id": 33746,
+ "object_name": "Poirazi, Panayiota [poirazi at imbb.forth.gr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 185463,
+ "object_name": "Pattern Separation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206375,
+ "object_name": "Chavlis S, Petrantonakis PC, Poirazi P (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Dentate Gyrus model including Granule cells with dendritic compartments (Chavlis et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 207692,
+ "object_name": "Dentate gyrus HIPP cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we investigate the role of dentate granule cell dendrites in pattern separation. The model consists of point neurons (Integrate and fire) and in principal neurons, the granule cells, we have incorporated various number of dendrites."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206372",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Spyridon Chavlis, Panagiotis C. Petrantonakis, Panayiota Poirazi"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Dentate gyrus HIPP cell"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "schavlis@imbb.forth.gr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Spyridon Chavlis"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T13:51:21.363",
+ "ver_number": 15
+ },
+ "206378": {
+ "class_id": 19,
+ "created": "2016-11-04T22:10:09.92",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206378,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 119280,
+ "object_name": "Ferrante, Michele [mferr133 at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206399,
+ "object_name": "Ferrante M, Ascoli GA (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Feedforward inhibition in pyramidal cells (Ferrante & Ascoli 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 151329,
+ "object_name": "Hippocampus CA1 bistratified cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Feedforward inhibition (FFI) enables pyramidal cells in area CA1 of the hippocampus\r\n(CA1PCs) to remain easily excitable while faithfully representing a broad range of\r\nexcitatory inputs without quickly saturating. Despite the cortical ubiquity of FFI,\r\nits specific function is not completely understood. FFI in CA1PCs is mediated by\r\ntwo physiologically and morphologically distinct GABAergic interneurons: fast-spiking,\r\nperisomatic-targeting basket cells and regular-spiking, dendritic-targeting bistratified\r\ncells. These two FFI pathways might create layer-specific computational sub-domains\r\nwithin the same CA1PC, but teasing apart their specific contributions remains\r\nexperimentally challenging. We implemented a biophysically realistic model of CA1PCs\r\nusing 40 digitally reconstructed morphologies and constraining synaptic numbers,\r\nlocations, amplitude, and kinetics with available experimental data. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206378",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.ferrante@nih.gov"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Ferrante"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-01-19T18:06:47.523",
+ "ver_number": 15
+ },
+ "206380": {
+ "biosimulations": {
+ "value": "modeldb-206380"
+ },
+ "class_id": 19,
+ "created": "2016-11-05T23:20:21.657",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206380,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206387,
+ "object_name": "Morozova, Ekaterina O [emorozov at indiana.edu]"
+ },
+ {
+ "object_id": 206388,
+ "object_name": "Kuznetsov, Alexey "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 242018,
+ "object_name": "Synaptic Convergence"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206382,
+ "object_name": "Morozova EO, Myroshnychenko M, Zakharov D, di Volo M, Gutkin B, Lapish CC, Kuznetsov A (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Excitability of DA neurons and their regulation by synaptic input (Morozova et al. 2016a, 2016b)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ },
+ {
+ "object_id": 189152,
+ "object_name": "Ventral tegmental area dopamine neuron"
+ },
+ {
+ "object_id": 206389,
+ "object_name": "Ventral tegmental area GABA neuron "
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code contains conductance-based models of Dopaminergic (DA) and GABAergic neurons, used in Morozova et al 2016 PLOS Computational Biology paper in order to study the type of excitability of the DA neurons and how it is influenced by the intrinsic and synaptic currents. We identified the type of excitability by calculating bifurcation diagrams and F-I curves using XPP file. This model was also used in Morozova et al 2016 J. Neurophysiology paper in order to study the effect of synchronization in GABAergic inputs on the firing dynamics of the DA neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206380",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ekaterina O Morozova,\r\nAlexey Kuznetsov"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Dopamine neuron, GABA neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "emorozov@indiana.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ekaterina O Morozova"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2018-06-06T17:26:07.06",
+ "ver_number": 17
+ },
+ "206397": {
+ "class_id": 19,
+ "created": "2016-11-16T03:37:19.693",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206397,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206377,
+ "object_name": "Chavlis, Spyridon [schavlis at imbb.forth.gr]"
+ },
+ {
+ "object_id": 206376,
+ "object_name": "Petrantonakis, Panagiotis C. "
+ },
+ {
+ "object_id": 33746,
+ "object_name": "Poirazi, Panayiota [poirazi at imbb.forth.gr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 185463,
+ "object_name": "Pattern Separation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225078,
+ "object_name": "Danielson NB, Turi GF, Ladow M, Chavlis S, Petrantonakis PC, Poirazi P, Losonczy A (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "In vivo imaging of dentate gyrus mossy cells in behaving mice (Danielson et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 88216,
+ "object_name": "Dentate gyrus hilar cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Mossy cells in the hilus of the dentate gyrus constitute a major excitatory principal cell type in the mammalian hippocampus, however, it remains unknown how these cells behave in vivo. Here, we have used two-photon Ca2+ imaging to monitor the activity of mossy cells in awake, behaving mice. We find that mossy cells are significantly more active than dentate granule cells in vivo, exhibit significant spatial tuning during head-fixed spatial navigation, and undergo robust remapping of their spatial representations in response to contextual manipulation. Our results provide the first characterization of mossy cells in the behaving animal and demonstrate their active participation in spatial coding and contextual representation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206397",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Panagiotis Petrantonakis\r\nPanayiota Poirazi"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Point Neuronal Network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "schavlis@imbb.forth.gr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Spyridon Chavlis"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T13:53:32.9",
+ "ver_number": 19
+ },
+ "206398": {
+ "class_id": 19,
+ "created": "2016-11-16T12:10:34.35",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206398,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206403,
+ "object_name": "Michalikova, Martina [tinka.michalikova at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243949,
+ "object_name": "Michalikova M, Remme MW, Kempter R (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Spikelet generation and AP initiation in a L5 neocortical pyr neuron (Michalikova et al. 2017) Fig 1",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The article by Michalikova et al. (2017) explores the generation of spikelets in cortical pyramidal neurons. The model cell, adapted from Hu et al. (2009), is a layer V pyramidal neuron. The cell is stimulated by fluctuating synaptic inputs and generates somatic APs and spikelets in response. The spikelets are initiated as APs at the AIS that do not activate the soma."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206398",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spikelet"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tinka.michalikova@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Martina Michalikova"
+ },
+ "ver_date": "2023-01-27T13:18:29.07",
+ "ver_number": 10
+ },
+ "206400": {
+ "class_id": 19,
+ "created": "2016-11-18T13:12:13.26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206400,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206403,
+ "object_name": "Michalikova, Martina [tinka.michalikova at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243949,
+ "object_name": "Michalikova M, Remme MW, Kempter R (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Spikelet generation and AP initiation in a simplified pyr neuron (Michalikova et al. 2017) Fig 3",
+ "notes": {
+ "attr_id": 24,
+ "value": "The article by Michalikova et al. (2017) explores the generation of spikelets in cortical pyramidal neurons.\r\nThis package contains code for simulating the model with simplified morphology shown in Figs 3 and S2."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206400",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michalikova, Martina"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "NEURON with Python"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tinka.michalikova@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Martina Michalikova"
+ },
+ "ver_date": "2023-01-30T13:52:29.947",
+ "ver_number": 10
+ },
+ "206405": {
+ "class_id": 19,
+ "created": "2016-11-19T13:17:56.537",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 206405,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 102284,
+ "object_name": "Crisp, Kevin [crisp at stolaf.edu]"
+ },
+ {
+ "object_id": 206409,
+ "object_name": "Heller, Charles [hellerc at ohsu.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206406,
+ "object_name": "Heller C, Crisp K (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Earthworm medial giant fiber conduction velocity across electrical synapses (Heller, Crisp 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 206408,
+ "object_name": "Earthworm medial giant fiber"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The earthworm medial giant fiber (MGF) is composed of many neurons electrically coupled by high fidelity gap junctions. In addition, the MGF exhibits a distinct taper in diameter from anterior to posterior. The role of these gap junctions and their interaction with axonal taper in predicting conduction velocity has not been studied closely in the annelid. A model of an electrical synapse in the MGF was created to investigate the influence of, and interaction between, these two parameters."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/206405",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Charles Heller"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Earthworm medial giant fiber"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hellerc@ohsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Charles Heller"
+ },
+ "ver_date": "2018-11-09T14:41:49.873",
+ "ver_number": 7
+ },
+ "207695": {
+ "class_id": 19,
+ "created": "2016-11-30T07:26:58.203",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 207695,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 185339,
+ "object_name": "Zylbertal, Asaph [asaph.zylbertal at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 185343,
+ "object_name": "Persistent activity"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 224892,
+ "object_name": "Zylbertal A, Yarom Y, Wagner S (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A network of AOB mitral cells that produces infra-slow bursting (Zylbertal et al. 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 185340,
+ "object_name": "Olfactory bulb (accessory) mitral cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Infra-slow rhythmic neuronal activity with very long (> 10 s) period duration was described in many brain areas but little is known about the role of this activity and the mechanisms that produce it. Here we combine experimental and computational methods to show that synchronous infra-slow bursting activity in mitral cells of the mouse accessory olfactory bulb (AOB) emerges from interplay between intracellular dynamics and network connectivity. In this novel mechanism, slow intracellular Na+ dynamics endow AOB mitral cells with a weak tendency to burst, which is further enhanced and stabilized by chemical and electrical synapses between them. Combined with the unique topology of the AOB network, infra-slow bursting enables integration and binding of multiple chemosensory stimuli over prolonged time scale.\r\nThe example protocol simulates a two-glomeruli network with a single shared cell. Although each glomerulus is stimulated at a different time point, the activity of the entire population becomes synchronous (see paper Fig. 8)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/207695",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "asaph.zylbertal@mail.huji.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Asaph Zylbertal"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:19:34.05",
+ "ver_number": 11
+ },
+ "217783": {
+ "class_id": 19,
+ "created": "2016-12-12T07:44:44.433",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 217783,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 217881,
+ "object_name": "O'Connor, Simon [simon.oconnor at btinternet.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 217790,
+ "object_name": "Gorin M, Tsitoura C, Kahan A, Watznauer K, Drose DR, Arts M, Mathar R, O'Connor S, Hanganu-Opatz IL, Ben-Shaul Y, Spehr M (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Infraslow intrinsic rhythmogenesis in a subset of AOB projection neurons (Gorin et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 185340,
+ "object_name": "Olfactory bulb (accessory) mitral cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We investigated patterns of spontaneous neuronal activity in mouse accessory olfactory bulb mitral cells, the direct neural link between vomeronasal sensory input and limbic output. Both in vitro and in vivo, we identify a subpopulation of mitral cells that exhibit slow stereotypical rhythmic discharge. In intrinsically rhythmogenic neurons, these periodic activity patterns are maintained in absence of fast synaptic drive. The physiological mechanism underlying mitral cell autorhythmicity involves cyclic activation of three interdependent ionic conductances: subthreshold persistent Na(+) current, R-type Ca(2+) current, and Ca(2+)-activated big conductance K(+) current. Together, the interplay of these distinct conductances triggers infraslow intrinsic oscillations with remarkable periodicity, a default output state likely to affect sensory processing in limbic circuits. The model reproduces the intrinsic firing in a reconstructed single AOB mitral cell with ion channels kinetics fitted to experimental measurements of their steady state and time course."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/217783",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Potassium = Kdr + KA, K,Ca = BK Calcium = R type"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "O'Connor, Simon"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "simon.oconnor@btinternet.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Simon O'Connor"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:19:52.197",
+ "ver_number": 11
+ },
+ "217882": {
+ "class_id": 19,
+ "created": "2016-12-13T11:08:38.347",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 217882,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 217889,
+ "object_name": "Lombardo, Joseph [josslomb at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 196124,
+ "object_name": "Lombardo J, Harrington MA (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Regulation of motoneuron excitability by KCNQ/Kv7 modulators (Lombardo & Harrington 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Computer simulations confirmed that pharmacological enhancement\r\nof KCNQ/Kv7 channel (M current) activity decreases excitability and\r\nalso suggested that the effects of inhibition of KCNQ/Kv7 channels on\r\nthe excitability of spinal MNs do not depend on a direct effect in\r\nthese neurons but likely on spinal cord synaptic partners. These\r\nresults indicate that KCNQ/Kv7 channels have a fundamental role in the\r\nmodulation of the excitability of spinal MNs acting both in these\r\nneurons and in their local presynaptic partners. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/217882",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "josslomb@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Joseph Lombardo"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T13:07:20.423",
+ "ver_number": 14
+ },
+ "217958": {
+ "class_id": 19,
+ "created": "2016-12-15T11:50:44.347",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 217958,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 217959,
+ "object_name": "Lindsay, Grace "
+ },
+ {
+ "object_id": 217960,
+ "object_name": "Miller, Kenneth "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 217888,
+ "object_name": "Kuchibhotla KV, Gill JV, Lindsay GW, Papadoyannis ES, Field RE, Sten TA, Miller KD, Froemke RC (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Parallel cortical inhibition processing enables context-dependent behavior (Kuchibhotla et al. 2016)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Physical features of sensory stimuli are fixed, but sensory perception is context dependent. The precise mechanisms that\r\ngovern contextual modulation remain unknown. Here, we trained mice to switch between two contexts: passively listening to pure tones and performing a recognition task for the same stimuli. Two-photon imaging showed that many excitatory neurons in auditory cortex were suppressed during behavior, while some cells became more active. Whole-cell recordings showed that excitatory inputs were affected only modestly by context, but inhibition was more sensitive, with PV+, SOM+, and VIP+ interneurons balancing inhibition and disinhibition within the network. Cholinergic modulation was involved in context switching, with cholinergic axons increasing activity during behavior and directly depolarizing inhibitory cells. Network modeling captured these findings, but only when modulation coincidently drove all three interneuron subtypes, ruling out either inhibition or disinhibition alone as sole mechanism for active engagement. Parallel processing of cholinergic modulation by cortical interneurons therefore enables context-dependent behavior."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/217958",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Rob Fromeke"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:11:54.17",
+ "ver_number": 4
+ },
+ "218015": {
+ "class_id": 19,
+ "created": "2016-12-19T15:42:39.113",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 218015,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 218014,
+ "object_name": "Chen, Chun-Chung [cjj at u.washington.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 217964,
+ "object_name": "Huang CH, Huang YT, Chen CC, Chan CK (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Reverberatory bursts propagation and synchronization in developing cultured NNs (Huang et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Developing networks of neural systems can exhibit spontaneous,\r\nsynchronous activities called neural bursts, which can be important in\r\nthe organization of functional neural circuits.\r\n\r\n...\r\n\r\nUsing a propagation model we infer the spreading\r\nspeed of the spiking activity, which increases as the culture ages.\r\n\r\nWe\r\nperform computer simulations of the system using a physiological model\r\nof spiking networks in two spatial dimensions and find the parameters\r\nthat reproduce the observed resynchronization of spiking in the\r\nbursts.\r\n\r\nAn analysis of the simulated dynamics suggests that the\r\ndepletion of synaptic resources causes the resynchronization.\r\n\r\nThe spatial propagation dynamics of the simulations match well with\r\nobservations over the course of a burst and point to an interplay of\r\nthe synaptic efficacy and the noisy neural self-activation in\r\nproducing the morphology of the bursts.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/218015",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2016-12-19T15:49:21.553",
+ "ver_number": 4
+ },
+ "218084": {
+ "class_id": 19,
+ "created": "2016-12-20T15:35:12.217",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 218084,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223030,
+ "object_name": "Whittington, James C.R. [jcrwhittington at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 222958,
+ "object_name": "Whittington JCR, Bogacz R (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 223029,
+ "object_name": "Predictive Coding Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Supervised learning with predictive coding (Whittington & Bogacz 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"To effciently learn from feedback, cortical networks need to update synaptic weights\r\non multiple levels of cortical hierarchy. An effective and well-known algorithm for\r\ncomputing such changes in synaptic weights is the error back-propagation algorithm. However, in the back-propagation algorithm, the change in synaptic weights\r\nis a complex function of weights and activities of neurons not directly connected\r\nwith the synapse being modified, whereas the changes in biological synapses are\r\ndetermined only by the activity of pre-synaptic and post-synaptic neurons. Several\r\nmodels have been proposed that approximate the back-propagation algorithm with\r\nlocal synaptic plasticity, but these models require complex external control over the\r\nnetwork or relatively complex plasticity rules. Here we show that a network developed in the predictive coding framework can efficiently perform supervised learning\r\nfully autonomously, employing only simple local Hebbian plasticity. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/218084",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jcrwhittington@googlemail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "James Whittington"
+ },
+ "ver_date": "2017-01-16T14:37:57.877",
+ "ver_number": 9
+ },
+ "218085": {
+ "class_id": 19,
+ "created": "2016-12-21T06:38:07.267",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 218085,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 183714,
+ "object_name": "Bush, Daniel [drdanielbush @ gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 194944,
+ "object_name": "Bush D, Burgess N (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hybrid oscillatory interference / continuous attractor NN of grid cell firing (Bush & Burgess 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 155861,
+ "object_name": "Abstract integrate-and-fire fractional leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Matlab code to simulate a hybrid oscillatory interference - continuous attractor network model of grid cell firing in pyramidal and stellate cells of rodent medial entorhinal cortex"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/218085",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "drdanielbush@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniel Bush"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2016-12-22T09:46:16.69",
+ "ver_number": 7
+ },
+ "222321": {
+ "class_id": 19,
+ "created": "2016-12-29T11:23:32.54",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 222321,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 222320,
+ "object_name": "Gentiletti, Damiano [gentiletti.damiano at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 218087,
+ "object_name": "Gentiletti D, Suffczynski P, Gnatkovsky V, de Curtis M (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Changes of ionic concentrations during seizure transitions (Gentiletti et al. 2016)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In order to\r\ninvestigate the respective roles of synaptic interactions and\r\nnonsynaptic mechanisms in seizure transitions, we developed a\r\ncomputational model of hippocampal cells, involving the extracellular\r\nspace, realistic dynamics of Na+, K+, Ca2+ and Cl - ions, glial uptake\r\nand extracellular diffusion mechanisms. We show that the network\r\nbehavior with fixed ionic concentrations may be quite different from\r\nthe neurons\u2019 behavior when more detailed modeling of ionic dynamics is\r\nincluded. In particular, we show that in the extended model strong\r\ndischarge of inhibitory interneurons may result in long lasting\r\naccumulation of extracellular K+, which sustains the depolarization of\r\nthe principal cells and causes their pathological discharges.\r\n...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/222321",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2016-12-29T13:48:52.81",
+ "ver_number": 3
+ },
+ "222359": {
+ "class_id": 19,
+ "created": "2017-01-03T10:21:24.75",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 222359,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 222436,
+ "object_name": "Justus, Daniel [daniel.justus at dzne.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 222365,
+ "object_name": "Justus D, Dal\u00fcgge D, Bothe S, Fuhrmann F, Hannes C, Kaneko H, Friedrichs D, Sosulina L, Schwarz I, Elliott DA, Schoch S, Bradke F, Schwarz MK, Remy S (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Synaptic integration by MEC neurons (Justus et al. 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 222437,
+ "object_name": "Entorhinal cortex pyramidal cell"
+ },
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ },
+ {
+ "object_id": 222438,
+ "object_name": "Entorhinal cortex fast-spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Pyramidal cells, stellate cells and fast-spiking interneurons receive running speed dependent glutamatergic input from septo-entorhinal projections. These models simulate the integration of this input by the different MEC celltypes."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/222359",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Justus, Daniel [daniel.justus@dzne.de]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Entorhinal cortex cells"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "daniel.justus@dzne.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniel Justus"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2017-01-11T09:27:35.41",
+ "ver_number": 8
+ },
+ "222715": {
+ "class_id": 19,
+ "created": "2017-01-04T15:08:22.097",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 222715,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149163,
+ "object_name": "Zhang, Yili [Yili.Zhang at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 222488,
+ "object_name": "Zhang Y, Smolen P, Alberini CM, Baxter DA, Byrne JH (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Model of a BDNF feedback loop (Zhang et al 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Inhibitory avoidance (IA) training in rodents initiates a molecular\r\ncascade within hippocampal neurons. This cascade contributes to the\r\ntransition of short- to long-term memory (i.e., consolidation). Here,\r\na differential equation-based model was developed to describe a\r\npositive feedback loop within this molecular cascade. The feedback\r\nloop begins with an IA-induced release of brain-derived neurotrophic\r\nfactor (BDNF), which in turn leads to rapid phosphorylation of the\r\ncAMP response element-binding protein (pCREB), and a subsequent\r\nincrease in the level of the beta isoform of the CCAAT/enhancer binding\r\nprotein (C/EBPbeta). \r\n ... \" See paper for more."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/222715",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Yili.zhang@uth.tmc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yili Zhang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-01-05T15:55:50.39",
+ "ver_number": 11
+ },
+ "222716": {
+ "class_id": 19,
+ "created": "2017-01-04T17:49:18.63",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 222716,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 222718,
+ "object_name": "Menon, Vilas [vilasmenon2008 at u dot northwestern dot edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124155,
+ "object_name": "Menon V, Spruston N, Kath WL (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Hippocampus CA1 pyramidal model with Na channel exhibiting slow inactivation (Menon et al. 2009)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These NEURON simulations show the effect of prolonged inactivation of sodium channels on attenuation of trains of backpropagating action potentials (bAPs). The new sodium channel model is a Markov model derived using a state-mutating genetic algorithm, as described in the paper.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/222716",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Na, slow inactivation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Menon, Vilas [vilasmenon2008 at u dot northwestern dot edu]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vilasmenon2008@u.northwestern.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Vilas Menon"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-02-26T11:50:06.003",
+ "ver_number": 13
+ },
+ "222725": {
+ "class_id": 19,
+ "created": "2017-01-05T17:31:50.187",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 222725,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 186894,
+ "object_name": "Tikidji-Hamburyan, Ruben [ruben.tikidji.hamburyan at gmail.com] "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230892,
+ "object_name": "Tikidji-Hamburyan RA, Narayana V, Bozkus Z, El-Ghazawi TA (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Brain networks simulators - a comparative study (Tikidji-Hamburyan et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this article, we select the three most popular simulators, as determined by the number of models in the ModelDB database, such as NEURON, GENESIS, and BRIAN, and perform an independent evaluation of these simulators. In addition, we study NEST, one of the lead simulators of the Human Brain Project. First, we study them based on one of the most important characteristics, the range of supported models. Our investigation reveals that brain network simulators may be biased toward supporting a specific set of models. ... we carry out an evaluation using two case studies: a large network with simplified neural and synaptic models and a small network with detailed models. These two case studies allow us to avoid any bias toward a particular software package ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/222725",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ruben.tikidji.hamburyan@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ruben Tikidji-Hamburyan"
+ },
+ "ver_date": "2018-02-07T13:43:43.657",
+ "ver_number": 21
+ },
+ "222726": {
+ "class_id": 19,
+ "created": "2017-01-06T14:37:54.537",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 222726,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 222718,
+ "object_name": "Menon, Vilas [vilasmenon2008 at u dot northwestern dot edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 222728,
+ "object_name": "Menon V, Musial TF, Liu A, Katz Y, Kath WL, Spruston N, Nicholson DA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Distance-dependent synaptic strength in CA1 pyramidal neurons (Menon et al. 2013)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Menon et al. (2013) describes the experimentally-observed variation in synaptic AMPA and NMDA conductance as a function of distance from the soma. This model explores the effect of this variation on somatic EPSPs and dendritic spike initiation, as compared to the case of uniform AMPA and NMDA conductance."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/222726",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Na, slow inactivating"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vilasmenon2008@u.northwestern.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Vilas Menon"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-01-06T17:00:00.93",
+ "ver_number": 5
+ },
+ "222732": {
+ "class_id": 19,
+ "created": "2017-01-10T02:00:08.143",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 222732,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150637,
+ "object_name": "Hepburn, Iain [ihepburn at oist.jp]"
+ },
+ {
+ "object_id": 222733,
+ "object_name": "Jain, Anant [anantdavinci at gmail.com]"
+ },
+ {
+ "object_id": 153090,
+ "object_name": "Gangal, Himanshu [himanshugangal at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 222735,
+ "object_name": "Hepburn I, Jain A, Gangal H, Yamamoto Y, Tanaka-Yamamoto K, De Schutter E (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 144556,
+ "object_name": "STEPS"
+ }
+ ]
+ },
+ "name": "A model of cerebellar LTD including RKIP inactivation of Raf and MEK (Hepburn et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An updated stochastic model of cerebellar Long Term Depression (LTD) with improved realism. Dissociation of Raf kinase inhibitor protein (RKIP) from Mitogen-activated protein kinase kinase (MEK) and Raf kinase are added to an earlier published model. Calcium dynamics is updated as a constant-rate influx to more closely match experiment. AMPA receptor interactions are improved by adding phosphorylation and dephosphorylation of AMPA receptors when bound to glutamate receptor interacting protein (GRIP). The model is tuned to reproduce experimental calcium peak vs LTD amplitude curves accurately at 4 different calcium pulse durations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/222732",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ihepburn@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Iain Hepburn"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-01-26T22:32:30.717",
+ "ver_number": 10
+ },
+ "222932": {
+ "class_id": 19,
+ "created": "2017-01-13T10:48:25.333",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 222932,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 222955,
+ "object_name": "Pedrosa, Victor [v.pedrosa15 at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 222933,
+ "object_name": "Pedrosa V, Clopath C (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A simple model of neuromodulatory state-dependent synaptic plasticity (Pedrosa and Clopath, 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 155861,
+ "object_name": "Abstract integrate-and-fire fractional leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model is used to illustrate the role of neuromodulators in cortical plasticity. The model consists of a feedforward network with 1 postsynaptic neuron with plastic synaptic weights. These weights are updated through a spike-timing-dependent plasticity rule. \r\n\"First, we explore the ability of neuromodulators to gate plasticity by reshaping the learning window for spike-timing-dependent plasticity. Using a simple computational model, we implement four different learning rules and demonstrate their effects on receptive field plasticity. We then compare the neuromodulatory effects of upregulating learning rate versus the effects of upregulating neuronal activity. \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/222932",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Neuromodulation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Pedrosa, Victor [v.pedrosa15@imperial.ac.uk]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "victorpedrosabc@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Victor Pedrosa"
+ },
+ "ver_date": "2017-01-13T13:18:26.613",
+ "ver_number": 4
+ },
+ "223031": {
+ "class_id": 19,
+ "created": "2017-01-16T16:26:53.493",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122817,
+ "object_name": "Kv3.1 KCNC1"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "icg_channel_details": {
+ "attr_id": 640,
+ "value": [
+ {
+ "object_id": 223034,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223046,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223047,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223049,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223055,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223035,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223038,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223039,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223042,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223045,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223050,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223051,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223056,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223037,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223053,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223040,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223057,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223043,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223036,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223052,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223033,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223044,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223054,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223041,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223032,
+ "object_name": "ICG Detail_223031"
+ },
+ {
+ "object_id": 223048,
+ "object_name": "ICG Detail_223031"
+ }
+ ]
+ },
+ "id": 223031,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223060,
+ "object_name": "Guet-McCreight, Alexandre [alexandre.guet.mccreight at mail.utoronto.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223059,
+ "object_name": "Guet-McCreight A, Camir\u00e9 O, Topolnik L, Skinner FK (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Interneuron Specific 3 Interneuron Model (Guet-McCreight et al, 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper we develop morphologically detailed multi-compartment models of Hippocampal CA1 interneuron specific 3 interneurons using cell current-clamp recordings and dendritic calcium imaging data. In doing so, we developed several variant models, as outlined in the associated README.html file."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223031",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Kdrs, I Kdrf"
+ },
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Kv3.2 KCNC2"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampus CA1 Interneuron Specific 3 Interneuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "alexandre.guet.mccreight@mail.utoronto.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alexandre Guet-McCreight"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T12:28:50.047",
+ "ver_number": 21
+ },
+ "223144": {
+ "class_id": 19,
+ "created": "2017-01-18T16:40:42.4",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223144,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223270,
+ "object_name": "Manninen, Tiina [tiina.h.manninen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 112550,
+ "object_name": "Lavrentovich M, Hemkin S (2008)"
+ },
+ {
+ "object_id": 223271,
+ "object_name": "Lavrentovich M, Hemkin S (2009)"
+ },
+ {
+ "object_id": 223272,
+ "object_name": "Manninen T, Havela R, Linne ML (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Ca2+ oscillations in single astrocytes (Lavrentovich and Hemkin 2008) (python) (Manninen et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We tested the reproducibility and comparability of four astrocyte models (Manninen, Havela, Linne, 2017). Model by Lavrentovich and Hemkin (2008) was one of them. We implemented and ran the model by Lavrentovich and Hemkin (2008) using Jupyter Notebook. Model code produces results of Figure 1 in Manninen, Havela, Linne (2017)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223144",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Manninen, Tiina [tiina.h.manninen at gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiina.h.manninen@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tiina Manninen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2017-01-25T11:28:47.927",
+ "ver_number": 13
+ },
+ "223269": {
+ "class_id": 19,
+ "created": "2017-01-18T18:30:14.947",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223269,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223270,
+ "object_name": "Manninen, Tiina [tiina.h.manninen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223096,
+ "object_name": "De Pitt\u00e0 M, Goldberg M, Volman V, Berry H, Ben-Jacob E (2009)"
+ },
+ {
+ "object_id": 223272,
+ "object_name": "Manninen T, Havela R, Linne ML (2017)"
+ },
+ {
+ "object_id": 223400,
+ "object_name": "De Pitt\u00e0 M, Goldberg M, Volman V, Berry H, Ben-Jacob E (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Glutamate-evoked Ca2+ oscillations in single astrocytes (De Pitta et al. 2009) (Manninen et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We tested the reproducibility and comparability of four astrocyte models (Manninen, Havela, Linne, 2017). Model by De Pitta et al. (2009) was one of them. We implemented and ran the model by De Pitta et al. (2009) using Jupyter Notebook. Model code produces results of Figure 1 and Figures 3-5 in Manninen, Havela, Linne (2017)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223269",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Manninen, Tiina [tiina.h.manninen at gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiina.h.manninen@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tiina Manninen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2017-01-25T11:26:45.393",
+ "ver_number": 10
+ },
+ "223273": {
+ "class_id": 19,
+ "created": "2017-01-19T12:01:31.83",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223273,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223270,
+ "object_name": "Manninen, Tiina [tiina.h.manninen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223272,
+ "object_name": "Manninen T, Havela R, Linne ML (2017)"
+ },
+ {
+ "object_id": 223401,
+ "object_name": "Riera J, Hatanaka R, Ozaki T, Kawashima R (2011)"
+ },
+ {
+ "object_id": 223402,
+ "object_name": "Riera J, Hatanaka R, Uchida T, Ozaki T, Kawashima R (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Spontaneous calcium oscillations in single astrocytes (Riera et al. 2011) (Manninen et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We tested the reproducibility and comparability of four astrocyte models (Manninen, Havela, Linne, 2017). Model by Riera et al. (2011) was one of them. We implemented and ran the model by Riera et al. (2011) using Jupyter Notebook. Model codes produce results of Figures 1 and 2 in Manninen, Havela, Linne (2017)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223273",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiina.h.manninen@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tiina Manninen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-01-25T11:16:24.747",
+ "ver_number": 9
+ },
+ "223274": {
+ "class_id": 19,
+ "created": "2017-01-19T12:44:24.31",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223274,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223270,
+ "object_name": "Manninen, Tiina [tiina.h.manninen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223272,
+ "object_name": "Manninen T, Havela R, Linne ML (2017)"
+ },
+ {
+ "object_id": 223485,
+ "object_name": "Dupont G, Lokenye EF, Challiss RA (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Glutamate-evoked Ca2+ oscillations in single astrocytes (Modified from Dupont et al. 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We tested the reproducibility and comparability of four astrocyte models (Manninen, Havela, Linne, 2017). Model by Dupont et al. (2011) was one of them, but we had to modify the model to get more similar results as in the original publication. We implemented and ran the modified model using Jupyter Notebook. Model code produces results of Figure 1 and Figures 3-5 in Manninen, Havela, Linne (2017)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223274",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiina.h.manninen@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tiina Manninen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ },
+ {
+ "object_id": 188,
+ "object_name": "mGluR5"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2017-01-25T11:45:06.227",
+ "ver_number": 11
+ },
+ "223648": {
+ "class_id": 19,
+ "created": "2017-01-20T18:16:01.533",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223648,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223270,
+ "object_name": "Manninen, Tiina [tiina.h.manninen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223272,
+ "object_name": "Manninen T, Havela R, Linne ML (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Reproducibility and comparability of models for astrocyte Ca2+ excitability (Manninen et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We tested the reproducibility and comparability of four astrocyte models (Manninen, Havela, Linne, 2017). We implemented and ran the python models using Jupyter Notebook. Model code produces results of Figure 1 and Figures 3-5 and partly Figure 2 in Manninen, Havela, Linne (2017)."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223648",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiina.h.manninen@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tiina Manninen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 188,
+ "object_name": "mGluR5"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2017-01-25T13:41:30.88",
+ "ver_number": 10
+ },
+ "223649": {
+ "class_id": 19,
+ "created": "2017-01-24T12:13:31.987",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223649,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223247,
+ "object_name": "Alturki A, Feng F, Nair A, Guntu V, Nair SS (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Distinct current modules shape cellular dynamics in model neurons (Alturki et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We hypothesized that currents are grouped into distinct\r\nmodules that shape specific neuronal characteristics or signatures,\r\nsuch as resting potential, sub-threshold oscillations,\r\nand spiking waveforms, for several classes of\r\nneurons. For such a grouping to occur, the currents within\r\none module should have minimal functional interference\r\nwith currents belonging to other modules. This condition\r\nis satisfied if the gating functions of currents in the same\r\nmodule are grouped together on the voltage axis; in contrast,\r\nsuch functions are segregated along the voltage axis\r\nfor currents belonging to different modules. We tested this\r\nhypothesis using four published example case models and\r\nfound it to be valid for these classes of neurons. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223649",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 142628,
+ "object_name": "Amygdala"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:20:09.34",
+ "ver_number": 9
+ },
+ "223890": {
+ "class_id": 19,
+ "created": "2017-01-26T18:27:23.15",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223890,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223826,
+ "object_name": "Ding H, Smith RG, Poleg-Polsky A, Diamond JS, Briggman KL (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 223952,
+ "object_name": "NeuronC (web link to model)"
+ }
+ ]
+ },
+ "name": "Species-specific wiring for direction selectivity in the mammalian retina (Ding et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 223953,
+ "object_name": "Retina amacrine cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we present a detailed connectomic reconstruction\r\nof SAC circuitry in mouse retina and describe two previously unknown features of synapse distributions along SAC\r\ndendrites: input and output synapses are segregated, with inputs restricted to proximal dendrites; and the distribution\r\nof inhibitory inputs is fundamentally different from that observed in rabbit retina. An anatomically constrained SAC\r\nnetwork model suggests that SAC\u2013SAC wiring differences between mouse and rabbit retina underlie distinct contributions\r\nof synaptic inhibition to velocity and contrast tuning and receptive field structure. In particular, the model indicates\r\nthat mouse connectivity enables SACs to encode lower linear velocities that account for smaller eye diameter, thereby\r\nconserving angular velocity tuning. These predictions are confirmed with calcium imaging of mouse SAC dendrites\r\nresponding to directional stimuli. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223890",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "starburst amacrine"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2017-02-09T14:05:57.243",
+ "ver_number": 4
+ },
+ "223891": {
+ "class_id": 19,
+ "created": "2017-01-26T21:57:48.733",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223891,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223950,
+ "object_name": "Connelly, William [connelly.bill at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223892,
+ "object_name": "Connelly WM, Crunelli V, Errington AC (2016)"
+ },
+ {
+ "object_id": 223898,
+ "object_name": "Connelly WM, Crunelli V, Errington AC (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Rat LGN Thalamocortical Neuron (Connelly et al 2015, 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, combining data from\r\nfluorescence-targeted dendritic recordings and Ca2+ imaging from\r\nlow-threshold spiking cells in rat brain slices with computational\r\nmodeling, the cellular mechanism responsible for LTS (Low Threshold Spike) generation is\r\nestablished. ...\" \" ... Using dendritic recording, 2-photon glutamate uncaging, and\r\ncomputational modeling, we investigated how rat dorsal lateral\r\ngeniculate nucleus thalamocortical neurons integrate excitatory\r\ncorticothalamic feedback. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223891",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Connelly, William"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Thalamocortical Neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "connelly.bill@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "William Connelly"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2020-10-07T12:44:46.583",
+ "ver_number": 8
+ },
+ "223955": {
+ "class_id": 19,
+ "created": "2017-01-28T18:51:15.71",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92083,
+ "object_name": "Nav1.2 SCN2A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223955,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 224842,
+ "object_name": "Ben-Shalom, Roy [rbenshalom at ucdavis.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 239754,
+ "object_name": "Autism spectrum disorder"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 223956,
+ "object_name": "Ben-Shalom R, Keeshen CM, Berrios KN, An JY, Sanders SJ, Bender KJ (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Pyramidal neurons with mutated SCN2A gene (Nav1.2) (Ben-Shalom et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of pyramidal neurons that either hyper or hypo excitable due to SCN2A mutations. Mutations are taken from patients with ASD or Epilepsy "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223955",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "bens.roy@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roy Ben-Shalom"
+ },
+ "ver_date": "2018-04-19T15:22:52.72",
+ "ver_number": 11
+ },
+ "223962": {
+ "class_id": 19,
+ "created": "2017-01-29T15:57:56.42",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 223962,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 224503,
+ "object_name": "Spera E, Migliore M, Unsworth N, Tegolo D (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Model of CA1 activity during working memory task (Spera et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The cellular processes underlying individual differences in the Woring Memory Capacity (WMC) of humans are essentially unknown. Psychological experiments suggest that subjects with lower working memory capacity (LWMC), with respect to subjects with higher capacity (HWMC), take more time to recall items from a list because they search through a larger set of items and are much more susceptible to interference during retrieval. ... In this paper, we investigate the possible underlying mechanisms at the single neuron level by using a computational model of hippocampal CA1 pyramidal neurons, which have been suggested to be deeply involved in the recognition of specific items. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/223962",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "spera@dmi.unict.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Emiliano Spera"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-02-06T09:22:12.1",
+ "ver_number": 6
+ },
+ "224843": {
+ "class_id": 19,
+ "created": "2017-02-03T17:12:51.83",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 224843,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 224844,
+ "object_name": "Yuan, Yi [yuanyi513 at ysu.edu.cn]"
+ },
+ {
+ "object_id": 224845,
+ "object_name": "Pang, Na"
+ },
+ {
+ "object_id": 224846,
+ "object_name": "Chen, Yudong "
+ },
+ {
+ "object_id": 224847,
+ "object_name": "Wang, Yi "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 127084,
+ "object_name": "Locking, mixed mode"
+ },
+ {
+ "object_id": 138323,
+ "object_name": "Magnetic stimulation"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 224839,
+ "object_name": "Yuan Y, Pang N, Chen Y, Wang Y, Li X (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Phase-locking analysis with transcranial magneto-acoustical stimulation (Yuan et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Transcranial magneto-acoustical stimulation (TMAS) uses ultrasonic waves and a static magnetic field to generate electric current in nerve tissues for the purpose of modulating neuronal activities. It has the advantage of high spatial resolution and penetration depth. Neuronal firing rhythms carry and transmit nerve information in neural systems. In this study, we investigated the phase-locking characteristics of neuronal firing rhythms with TMAS based on the Hodgkin-Huxley neuron model. The simulation results indicate that the modulation frequency of ultrasound can affect the phase-locking behaviors. The results of this study may help us to explain the potential firing mechanism of TMAS.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/224843",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "YW carried out numerical implementation of the TMAS, YY, NP, YC and YW done the simulation"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "tom morse"
+ },
+ "ver_date": "2017-02-03T17:23:23.637",
+ "ver_number": 3
+ },
+ "224923": {
+ "class_id": 19,
+ "created": "2017-02-10T17:23:19.307",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 224923,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 224924,
+ "object_name": "Miceli S, Ness TV, Einevoll GT, Schubert D (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Impedance spectrum in cortical tissue: implications for LFP signal propagation (Miceli et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, we performed a detailed investigation of the frequency dependence of the conductivity within cortical tissue at microscopic distances using small current amplitudes within the typical (neuro)physiological micrometer and sub-nanoampere range. We investigated the propagation of LFPs, induced by extracellular electrical current injections via patch-pipettes, in acute rat brain slice preparations containing the somatosensory cortex in vitro using multielectrode arrays. Based on our data, we determined the cortical tissue conductivity over a 100-fold increase in signal frequency (5-500\r\nHz). Our results imply at most very weak\r\n frequency-dependent effects within the frequency range of physiological LFPs. Using biophysical modeling, we estimated the impact of different putative impedance spectra. Our results indicate that frequency dependencies of the order measured here and in most other studies have negligible impact on the typical analysis and modeling of LFP signals from extracellular brain recordings.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/224923",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2017-02-11T08:37:16.65",
+ "ver_number": 5
+ },
+ "224998": {
+ "class_id": 19,
+ "created": "2017-02-15T11:23:16.46",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 224998,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 224997,
+ "object_name": "Otopalik AG, Goeritz ML, Sutton AC, Brookings T, Guerini C, Marder E (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Sloppy morphological tuning in identified neurons of the crustacean STG (Otopalik et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114303,
+ "object_name": "Stomatogastric Ganglion (STG) Lateral Gastric (LG) cell"
+ },
+ {
+ "object_id": 116963,
+ "object_name": "Stomatogastric Ganglion (STG) Lateral Pyloric (LP) cell"
+ },
+ {
+ "object_id": 144405,
+ "object_name": "Stomatogastric ganglion (STG) pyloric dilator (PD) neuron"
+ },
+ {
+ "object_id": 224999,
+ "object_name": "Stomatogastric Ganglion (STG) Gastric Mill (GM) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Theoretical studies suggest that morphology is tightly tuned to minimize wiring and conduction delay of synaptic events. We utilize high-resolution confocal microscopy and custom computational tools to characterize the morphologies of four neuron types in the stomatogastric ganglion (STG) of the crab Cancer borealis. Macroscopic branching patterns and fine cable properties are variable within and across neuron types. We compare these neuronal structures to synthetic minimal spanning neurite trees constrained by a wiring cost equation and find that STG neurons do not adhere to prevailing hypotheses regarding wiring optimization principles. In this highly-modulated and oscillating circuit, neuronal structures appear to be governed by a space-filling mechanism that outweighs the cost of inefficient wiring.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/224998",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "pyloric dilator (PD, gastric mill GM neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "tom.morse@yale.edu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "ver_date": "2017-02-15T11:38:56.057",
+ "ver_number": 3
+ },
+ "225075": {
+ "class_id": 19,
+ "created": "2017-02-16T06:12:13.56",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225075,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237554,
+ "object_name": "Hiratani,Naoki [N.Hiratani at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243975,
+ "object_name": "Hiratani N, Fukai T (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A model of optimal learning with redundant synaptic connections (Hiratani & Fukai 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a detailed neuron model of non-parametric near-optimal latent model acquisition using multisynaptic connections between pre- and postsynaptic neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225075",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "N.Hiratani@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Naoki Hiratani"
+ },
+ "ver_date": "2018-07-30T11:24:23.283",
+ "ver_number": 15
+ },
+ "225080": {
+ "class_id": 19,
+ "created": "2017-02-17T17:59:57.513",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 225080,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225082,
+ "object_name": "Milstein, Aaron D. [aaronmil at stanford.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 225083,
+ "object_name": "Feature selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225081,
+ "object_name": "Grienberger C, Milstein AD, Bittner KC, Romani S, Magee JC (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CA1 pyr cell: Inhibitory modulation of spatial selectivity+phase precession (Grienberger et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Spatially uniform synaptic inhibition enhances spatial selectivity and temporal coding in CA1 place cells by suppressing broad out-of-field excitation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225080",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Feature selectivity"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Aaron Milstein"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "aaronmil@stanford.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Aaron Milstein"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T12:30:48.943",
+ "ver_number": 9
+ },
+ "225086": {
+ "class_id": 19,
+ "created": "2017-02-20T06:35:08.977",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 225086,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225817,
+ "object_name": "Aghvami, S. Sara [ssa.aghvami at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225804,
+ "object_name": "Ona-Jodar T, Gerkau NJ, Sara Aghvami S, Rose CR, Egger V (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Na+ Signals in olfactory bulb neurons (granule cell model) (Ona-Jodar et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulations of Na+ during action potentials in granule cells replicated the behaviors observed in experiments."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225086",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ssa.aghvami@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "S. Sara Aghvami"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T16:20:39.773",
+ "ver_number": 9
+ },
+ "225089": {
+ "class_id": 19,
+ "created": "2017-02-20T11:16:06.843",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225089,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153725,
+ "object_name": "Chen, Weiliang [w.chen at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225088,
+ "object_name": "Chen W, De Schutter E (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 144556,
+ "object_name": "STEPS"
+ }
+ ]
+ },
+ "name": "Parallel STEPS: Large scale stochastic spatial reaction-diffusion simulat. (Chen & De Schutter 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this paper, we describe an MPI-based,\r\nparallel operator-splitting implementation for stochastic spatial reaction-diffusion\r\nsimulations with irregular tetrahedral meshes. The performance of our implementation\r\nis first examined and analyzed with simulations of a simple model. We then demonstrate\r\nits application to real-world research by simulating the reaction-diffusion components\r\nof a published calcium burst model in both Purkinje neuron sub-branch and full dendrite\r\nmorphologies...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225089",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "tom morse"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-02-20T11:39:33.24",
+ "ver_number": 4
+ },
+ "225095": {
+ "class_id": 19,
+ "created": "2017-02-20T14:45:45.153",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225095,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225168,
+ "object_name": "Mart\u00ednez-Ca\u00f1ada, Pablo [pablomc at ugr.es]"
+ },
+ {
+ "object_id": 225169,
+ "object_name": "Carrillo, Richard R. [rcarrillo at atc.ugr.es]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225099,
+ "object_name": "Mart\u00ednez-Ca\u00f1ada P, Morillas C, Pino B, Ros E, Pelayo F (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "COREM: configurable retina simulator (Mart\u00ednez-Ca\u00f1ada et al., 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7020,
+ "object_name": "Retina bipolar GLU cell"
+ },
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ },
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ },
+ {
+ "object_id": 223953,
+ "object_name": "Retina amacrine cell"
+ },
+ {
+ "object_id": 225100,
+ "object_name": "Retina horizontal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "COREM is a configurable simulator for retina modeling that has been implemented within the framework of the Human Brain Project (HBP). The software platform can be interfaced with neural simulators (e.g., NEST) to connect with models of higher visual areas and with the Neurorobotics Platform of the HBP. The code is implemented in C++ and computations of spatiotemporal equations are optimized by means of recursive filtering techniques and multithreading.\r\n\r\nMost retina simulators are more focused on fitting specific retina functions. By contrast, the versatility of COREM allows the configuration of different retina models using a set of basic retina computational primitives. We implemented a series of retina models by combining these primitives to characterize some of the best-known phenomena observed in the retina: adaptation to the mean light intensity and temporal contrast, and differential motion sensitivity.\r\n\r\nThe code has been extensively tested in Linux. The software can be also adapted to Mac OS. Installation instructions as well as the user manual can be found in the Github repository: https://github.com/pablomc88/COREM"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225095",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "retina horizontal cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pablomc@ugr.es"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pablo Mart\u00ednez-Ca\u00f1ada"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:33:22.41",
+ "ver_number": 11
+ },
+ "225301": {
+ "class_id": 19,
+ "created": "2017-02-23T22:31:41.467",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225301,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182782,
+ "object_name": "Sadeh, Sadra [s.sadeh at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ },
+ {
+ "object_id": 225083,
+ "object_name": "Feature selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225303,
+ "object_name": "Sadeh S, Clopath C, Rotter S (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "A spiking NN for amplification of feature-selectivity with specific connectivity (Sadeh et al 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model simulates large-scale inhibition-dominated spiking networks with different degrees of recurrent specific connectivity. It shows how feature-specific connectivity leads to a linear amplification of feedforward tuning, as reported in recent electrophysiological single-neuron recordings in rodent neocortex. Moreover, feature-specific connectivity leads to the emergence of feature-selective reverberating activity, and entails pattern completion in network responses."
+ },
+ "opensourcebrain": {
+ "value": "specnet-sade-et-al-2015"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225301",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.sadeh@ucl.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sadra Sadeh"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-04-03T11:31:15.75",
+ "ver_number": 9
+ },
+ "225311": {
+ "class_id": 19,
+ "created": "2017-02-24T11:05:36.273",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225311,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140251,
+ "object_name": "Halnes, Geir [geir.halnes at nmbu.no]"
+ },
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 224939,
+ "object_name": "Halnes G, M\u00e4ki-Marttunen T, Keller D, Pettersen KH, Andreassen OA, Einevoll GT (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Effect of ionic diffusion on extracellular potentials (Halnes et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Recorded potentials in the extracellular space (ECS) of the brain is a\r\nstandard measure of population activity in neural\r\ntissue. Computational models that simulate the relationship between\r\nthe ECS potential and its underlying neurophysiological processes are\r\ncommonly used in the interpretation of such measurements. Standard\r\nmethods, such as volume-conductor theory and current-source density\r\ntheory, assume that diffusion has a negligible effect on the ECS\r\npotential, at least in the range of frequencies picked up by most\r\nrecording systems. This assumption remains to be verified. We here\r\npresent a hybrid simulation framework that accounts for diffusive\r\neffects on the ECS potential. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225311",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "geih@nmbu.no"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Geir Halnes"
+ },
+ "ver_date": "2017-07-03T22:39:12.25",
+ "ver_number": 8
+ },
+ "225428": {
+ "class_id": 19,
+ "created": "2017-03-01T16:52:00.793",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225428,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225426,
+ "object_name": "Cochran, Amy L. [cochraam at umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 225427,
+ "object_name": "Bipolar Disorder (BP)"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225422,
+ "object_name": "Cochran AL, Schultz A, McInnis MG, Forger DB (2017)"
+ },
+ {
+ "object_id": 225532,
+ "object_name": "Lopez A (2008)"
+ },
+ {
+ "object_id": 225491,
+ "object_name": "Daugherty D,Roque-Urrea T,Urrea-Roque J,Troyer J,Wirkus S,Porter MA (2009)"
+ },
+ {
+ "object_id": 225452,
+ "object_name": "Goldbeter A (2011)"
+ },
+ {
+ "object_id": 225504,
+ "object_name": "Bonsall MB, Wallace-Hadrill SM, Geddes JR, Goodwin GM, Holmes EA (2012)"
+ },
+ {
+ "object_id": 225459,
+ "object_name": "Steinacher A, Wright KA (2013)"
+ },
+ {
+ "object_id": 225451,
+ "object_name": "Bonsall MB, Geddes JR, Goodwin GM, Holmes EA (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A comparison of mathematical models of mood in bipolar disorder (Cochran et al. 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... we evaluated existing models of mood in BP (Bipolar Disorder) (...) and two new models we proposed here (...). Each model makes different assumptions about mood dynamics. Our objective was to differentiate between models using only\r\ntime courses of mood. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225428",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom"
+ },
+ "ver_date": "2017-03-01T17:57:45.087",
+ "ver_number": 6
+ },
+ "225552": {
+ "class_id": 19,
+ "created": "2017-03-03T16:14:23.947",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225552,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225553,
+ "object_name": "Singh, Nishant [ns1144 at live.mdx.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225550,
+ "object_name": "Singh N, Huyck C, Gandhi V, Jones A (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 225554,
+ "object_name": "NEST (web link to model)"
+ }
+ ]
+ },
+ "name": "Neuron-based control mechanisms for a robotic arm and hand (Singh et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A robotic arm and hand controlled by simulated neurons is\r\npresented. The robot makes use of a biological neuron simulator using\r\na point neural model. ... The robot performs a simple pick-and-place\r\ntask.\r\n...\r\nAs another benefit, it is hoped that further work\r\nwill also lead to a better understanding of human and other animal\r\nneural processing, particularly for physical motion. This is a\r\nmultidisciplinary approach combining cognitive neuroscience, robotics,\r\nand psychology.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225552",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2017-03-03T16:49:59.903",
+ "ver_number": 3
+ },
+ "225583": {
+ "class_id": 19,
+ "created": "2017-03-06T16:58:38.69",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225583,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225584,
+ "object_name": "Glabska, Helena [glabska@gmail.com [glabska at gmail.com]"
+ },
+ {
+ "object_id": 225585,
+ "object_name": "Chintaluri, Chaitanya [c.chintaluri at nencki.gov.pl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225582,
+ "object_name": "Glabska H, Chintaluri C, W\u00f3jcik DK (2017)"
+ },
+ {
+ "object_id": 58972,
+ "object_name": "Traub RD, Contreras D, Cunningham MO, Murray H, LeBeau FE, Roopun A, Bibbig A, Wilent WB, Higley MJ, Whittington MA (2005)"
+ },
+ {
+ "object_id": 66265,
+ "object_name": "Traub RD, Contreras D, Whittington MA (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Collection of simulated data from a thalamocortical network model (Glabska, Chintaluri, Wojcik 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 227971,
+ "object_name": "Neocortex V1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A major challenge in experimental data analysis\r\nis the validation of analytical methods in a fully controlled\r\nscenario where the justification of the interpretation can\r\nbe made directly and not just by plausibility.\r\n\r\n...\r\nOne solution is to use simulations of realistic\r\nmodels to generate ground truth data.\r\n\r\nIn neuroscience, creating such data requires plausible models of\r\nneural activity, access to high performance computers, expertise and\r\ntime to prepare and run the simulations, and to process the output.\r\n\r\nTo facilitate such validation tests of analytical methods we provide\r\nrich data sets including intracellular voltage traces, transmembrane\r\ncurrents, morphologies, and spike times.\r\n\r\n...\r\nThe data were generated using the\r\nlargest publicly available multicompartmental model of thalamocortical\r\nnetwork (Traub et al. 2005), with activity evoked by different thalamic stimuli.\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225583",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Epilepsy, Sleep spindles"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "deep cortical interneuron"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-03T22:26:13.503",
+ "ver_number": 16
+ },
+ "225818": {
+ "class_id": 19,
+ "created": "2017-03-08T02:36:33.04",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225818,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 231371,
+ "object_name": "Kobayashi T, Shimada Y, Fujiwara K, Ikeguchi T (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Reproducing infra-slow oscillations with dopaminergic modulation (Kobayashi et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this paper, to reproduce ISO (Infra-Slow Oscillations) in neural networks, we show that dopaminergic modulation of STDP is essential. More specifically, we discovered a close relationship between two dopaminergic effects: modulation of the STDP function and generation of ISO. We therefore, numerically investigated the relationship in detail and proposed a possible mechanism by which ISO is generated.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225818",
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "D5"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tkobayashi@hisenkei.net"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Toshihiro Kobayashi"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 225820,
+ "object_name": "D5"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "ver_date": "2017-08-04T16:24:20.08",
+ "ver_number": 11
+ },
+ "225904": {
+ "class_id": 19,
+ "created": "2017-03-09T11:37:26.163",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225904,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 169290,
+ "object_name": "Rudnicki, Marek [marek.rudnicki at tum.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 225858,
+ "object_name": "Rudnicki M, Hemmert W (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 137990,
+ "object_name": "Brian (web link to method)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "High entrainment constrains synaptic depression in a globular bushy cell (Rudnicki & Hemmert 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 273,
+ "object_name": "Cochlear nucleus bushy GLU cell"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we show how different levels of synaptic depression shape firing\r\nproperties of GBCs in in vivo-like conditions using computer simulations.\r\nWe analyzed how an interplay of synaptic depression (0 % to 70 %) and the\r\nnumber of auditory nerve fiber inputs (10 to 70) contributes to the\r\nvariability of the experimental data from previous studies. ... Overall, this study helps to understand how synaptic\r\nproperties shape temporal processing in the auditory system. It also integrates,\r\ncompares, and reconciles results of various experimental studies.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225904",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:12:13.84",
+ "ver_number": 3
+ },
+ "225906": {
+ "class_id": 19,
+ "created": "2017-03-09T23:33:38.413",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 225906,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 181044,
+ "object_name": "Cox, Conor [cdcox1 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154709,
+ "object_name": "Taxidis J, Coombes S, Mason R, Owen MR (2012)"
+ },
+ {
+ "object_id": 227392,
+ "object_name": "Gunn BG, Cox CD, Chen Y, Frotscher M, Gall CM, Baram TZ, Lynch G (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CRH modulates excitatory transmission and network physiology in hippocampus (Gunn et al. 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ },
+ {
+ "object_id": 189094,
+ "object_name": "Pinsky-Rinzel CA1/3 pyramidal cell "
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model simulates the effects of CRH on sharp waves in a rat CA1/CA3 model. It uses the frequency of the sharp waves as an output of the network."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/225906",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cdcox1@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Conor D Cox"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-28T13:50:56.62",
+ "ver_number": 6
+ },
+ "226010": {
+ "class_id": 19,
+ "created": "2017-03-14T15:51:30.167",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226010,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226011,
+ "object_name": "Dougalis, Antonios [antoniosdougalis at hotmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 227129,
+ "object_name": "Dougalis AG, Matthews GAC, Liss B, Ungless MA (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dopamine neuron of the vent. periaqu. gray and dors. raphe nucleus (vlPAG/DRN) (Dougalis et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 227130,
+ "object_name": "Dopamine neuron of vlPAG/DRN"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The following computer model describes the electrophysiological properties of dopamine (DA) neurons of the ventrolateral periaquaductal gray and dorsal raphe nucleus (vlPAG/DRN). \r\nthe model and how to replicate Figures 7-10 of the manuscript (Dougalis et al., 2017 J Comput Neurosci).\r\n\r\nSUMMARY:\r\nWe have conducted a voltage-clamp study to provide\r\na kinetic description of major sodium, potassium and\r\ncalcium ionic currents operant on adult DA vlPAG/DRN neurons in brain slices obtained from pitx3-GFP mice. Based on experimentally derived voltage-clamp data, we then constructed a simplified, conductance-based,\r\nHodgkin and Huxley-type, computer model and validated its behaviour against in vitro neurophysiological data. Using simulations in the computational DA model, we explored the contribution of individual ionic currents in vlPAG/DRN DA neuron\u2019s spontaneous firing, pacemaker frequency and threshold for spike frequency adaptation in silico.\r\nThe data presented here extend our previous physiological characterization (Dougalis et al. 2012) and argue that DA neurons of the vlPAG/DRN express autorhythmicity in the absence of synaptic transmission via the interplay of potassium and sodium currents without the absolute need of calcium currents. The properties of the ionic currents recorded here (IH current, IA current), the lack of small oscillating potentials in the presence of sodium channel blockers taken together with the mechanisms for autorhythmicity (reliance more on sodium rather than calcium currents) also support further the idea that vlPAG/DRN DA neurons are operationally similar to VTA, rather than SNc, DA neurons. In particular, the properties of a slowly inactivating IA current in conjunction with the small and slowly activating IH current described herein pinpoint that vlPAG/DRN DA neurons are most similar to prefrontal cortex or medial shell of nucleus accumbens projecting DA neurons (see Lammel et al. 2008, 2011)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226010",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "pacemaking mechanism"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dr. Antonios Dougalis (antoniosdougalis@hotmail.com)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Dopamine neuron of vlPAG/DRN"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "antoniosdougalis@hotmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Antonios Dougalis"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2017-04-18T17:26:41.65",
+ "ver_number": 64
+ },
+ "226074": {
+ "class_id": 19,
+ "created": "2017-03-21T11:07:38.053",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226074,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155567,
+ "object_name": "Wang, Yujiang [yujiang.wang at newcastle.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226132,
+ "object_name": "Wang Y, Trevelyan AJ, Valentin A, Alarcon G, Taylor PN, Kaiser M (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Mechanisms underlying different onset patterns of focal seizures (Wang Y et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Focal seizures are episodes of pathological brain activity that appear to arise from a \r\nlocalised area of the brain. The onset patterns of focal seizure activity have been studied \r\nintensively, and they have largely been distinguished into two types { low amplitude \r\nfast oscillations (LAF), or high amplitude spikes (HAS). Here we explore whether these \r\ntwo patterns arise from fundamentally different mechanisms. Here, we use a previously \r\nestablished computational model of neocortical tissue, and validate it as an adequate \r\nmodel using clinical recordings of focal seizures. We then reproduce the two onset \r\npatterns in their most defining properties and investigate the possible mechanisms \r\nunderlying the different focal seizure onset patterns in the model. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226074",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yujiang.wang@ncl.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yujiang Wang"
+ },
+ "ver_date": "2017-05-04T17:23:56.323",
+ "ver_number": 10
+ },
+ "226254": {
+ "class_id": 19,
+ "created": "2017-03-22T16:08:10.92",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226254,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145924,
+ "object_name": "Evans, Rebekah [Rebekah.Evans at nih.gov]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226256,
+ "object_name": "Tarfa RA, Evans RC, Khaliq ZM (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "VTA dopamine neuron (Tarfa, Evans, and Khaliq 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 189152,
+ "object_name": "Ventral tegmental area dopamine neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In our model of a midbrain VTA dopamine neuron, we show that the decay kinetics of the A-type potassium current can control the timing of rebound action potentials."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226254",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Ka, Kdr, BK, SK,"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Rebekah.Evans@nih.gov"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Rebekah Evans"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2017-03-23T20:39:10.26",
+ "ver_number": 4
+ },
+ "226364": {
+ "class_id": 19,
+ "created": "2017-03-26T11:27:13.853",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226364,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 145885,
+ "object_name": "Kim, Jae Kyoung [kimjack0 at kaist.ac.kr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226013,
+ "object_name": "Kim JK, Fiorillo CD (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Optimal balance predicts/explains amplitude and decay time of iPSGs (Kim & Fiorillo 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Synaptic inhibition counterbalances excitation, but it is not known what constitutes optimal\r\ninhibition. We previously proposed that perfect balance is achieved when the peak of an\r\nexcitatory postsynaptic potential (EPSP) is exactly at spike threshold, so that the slightest\r\nvariation in excitation determines whether a spike is generated. Using simulations, we show\r\nthat the optimal inhibitory postsynaptic conductance (IPSG) increases in amplitude and\r\ndecay rate as synaptic excitation increases from 1 to 800 Hz. As further proposed by theory,\r\nwe show that optimal IPSG parameters can be learned through anti-Hebbian rules. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226364",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2017-03-26T12:56:32.917",
+ "ver_number": 4
+ },
+ "226401": {
+ "class_id": 19,
+ "created": "2017-03-28T17:51:58.307",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 226401,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33772,
+ "object_name": "Morse, Tom [Tom.Morse at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 167352,
+ "object_name": "Gidon A, Segev I (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Principles governing the operation of synaptic inhibition in dendrites (Gidon & Segev 2012)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A simple result of Gidon & Segev 2012 was provided where distal (off-path) inhibition is demonstrated to be more effective than proximal (on-path) inhibition in a ball and stick neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226401",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2017-03-28T17:53:02.967",
+ "ver_number": 3
+ },
+ "226422": {
+ "class_id": 19,
+ "created": "2017-03-30T11:05:14.393",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226422,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226424,
+ "object_name": "Appukuttan, Shailesh [shailesh.appukuttan at unic.cnrs-gif.fr;\r\nappukuttan.shailesh at gmail.com;]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143152,
+ "object_name": "Kobayashi R, Tsubo Y, Shinomoto S (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Multi-timescale adaptive threshold model (Kobayashi et al 2009) (NEURON)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 226423,
+ "object_name": "Multi-timescale adaptive threshold non-resetting leaky integrate and fire"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this study,\r\nwe devised a simple, fast computational model that can be tailored to\r\nany cortical neuron not only for reproducing but also for predicting a\r\nvariety of spike responses to greatly fluctuating currents. The key\r\nfeatures of this model are a multi-timescale adaptive threshold\r\npredictor and a nonresetting leaky integrator. This model is capable\r\nof reproducing a rich variety of neuronal spike responses, including\r\nregular spiking, intrinsic bursting, fast spiking, and chattering, by\r\nadjusting only three adaptive threshold parameters.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226422",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2023-01-30T13:28:19.563",
+ "ver_number": 7
+ },
+ "226425": {
+ "class_id": 19,
+ "created": "2017-03-30T11:26:17.427",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226425,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226470,
+ "object_name": "Komarov, Maxim [mkomarov at ucsd.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 206231,
+ "object_name": "Komarov M, Bazhenov M (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Linking dynamics of the inhibitory network to the input structure (Komarov & Bazhenov 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Code to model 10 all-to-all coupled inhibitory neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226425",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mkomarov@ucsd.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Maxim Komarov"
+ },
+ "ver_date": "2017-03-30T18:42:55.06",
+ "ver_number": 8
+ },
+ "226432": {
+ "class_id": 19,
+ "created": "2017-03-30T11:52:50.927",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226432,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 143152,
+ "object_name": "Kobayashi R, Tsubo Y, Shinomoto S (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Multi-timescale adaptive threshold model (Kobayashi et al 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 226423,
+ "object_name": "Multi-timescale adaptive threshold non-resetting leaky integrate and fire"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In this study,\r\nwe devised a simple, fast computational model that can be tailored to\r\nany cortical neuron not only for reproducing but also for predicting a\r\nvariety of spike responses to greatly fluctuating currents. The key\r\nfeatures of this model are a multi-timescale adaptive threshold\r\npredictor and a nonresetting leaky integrator. This model is capable\r\nof reproducing a rich variety of neuronal spike responses, including\r\nregular spiking, intrinsic bursting, fast spiking, and chattering, by\r\nadjusting only three adaptive threshold parameters.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226432",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2017-03-30T12:32:08.373",
+ "ver_number": 5
+ },
+ "226471": {
+ "class_id": 19,
+ "created": "2017-03-30T23:32:21.537",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226471,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226613,
+ "object_name": "Chen, Jen-Yung [chen.jenyung at gmail.com]"
+ },
+ {
+ "object_id": 226614,
+ "object_name": "Assisi, Collins "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226477,
+ "object_name": "Chen JY, Marachlian E, Assisi C, Huerta R, Smith BH, Locatelli F, Bazhenov M (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A model of antennal lobe of bee (Chen JY et al. 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we use calcium imaging to reveal how responses across antennal lobe projection neurons change after association of an input odor with appetitive reinforcement. After appetitive conditioning to 1-hexanol, the representation of an odor mixture containing 1-hexanol becomes more similar to this odor and less similar to the background odor acetophenone. We then apply computational modeling to investigate how changes in synaptic connectivity can account for the observed plasticity. Our study suggests that experience-dependent modulation of inhibitory interactions in the antennal lobe aids perception of salient odor components mixed with behaviorally irrelevant background odors.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226471",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "chenjenyung@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jen-Yung Chen"
+ },
+ "ver_date": "2018-10-17T16:20:55.857",
+ "ver_number": 8
+ },
+ "226472": {
+ "class_id": 19,
+ "created": "2017-03-31T03:48:46.677",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226472,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226606,
+ "object_name": "Schellenberger Costa, Michael [mschellenbergercosta at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226605,
+ "object_name": "Weigenand A, Schellenberger Costa M, Ngo HV, Claussen JC, Martinetz T (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Neural mass model of the sleeping cortex (Weigenand et al 2014)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Generates typical EEG data of sleeping Humans for sleep stages N2/N3 as well as wakefulness"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226472",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michael Schellenberger Costa"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mschellenbergercosta@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michael Schellenberger Costa"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-11-21T15:17:39.657",
+ "ver_number": 6
+ },
+ "226473": {
+ "class_id": 19,
+ "created": "2017-03-31T03:54:36.767",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226473,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226606,
+ "object_name": "Schellenberger Costa, Michael [mschellenbergercosta at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226605,
+ "object_name": "Weigenand A, Schellenberger Costa M, Ngo HV, Claussen JC, Martinetz T (2014)"
+ },
+ {
+ "object_id": 226608,
+ "object_name": "Schellenberger Costa M, Weigenand A, Ngo HV, Marshall L, Born J, Martinetz T, Claussen JC (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 112634,
+ "object_name": "Network"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Neural mass model of spindle generation in the isolated thalamus (Schellenberger Costa et al. 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model generates different oscillatory patterns in the thalamus, including delta and spindle band oscillations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226473",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michael Schellenberger Costa"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mschellenbergercosta@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michael Schellenberger Costa"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2019-11-21T15:24:38.603",
+ "ver_number": 7
+ },
+ "226474": {
+ "class_id": 19,
+ "created": "2017-03-31T03:58:50.623",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226474,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226606,
+ "object_name": "Schellenberger Costa, Michael [mschellenbergercosta at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226605,
+ "object_name": "Weigenand A, Schellenberger Costa M, Ngo HV, Claussen JC, Martinetz T (2014)"
+ },
+ {
+ "object_id": 226608,
+ "object_name": "Schellenberger Costa M, Weigenand A, Ngo HV, Marshall L, Born J, Martinetz T, Claussen JC (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 112634,
+ "object_name": "Network"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Neural mass model of the sleeping thalamocortical system (Schellenberger Costa et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This paper generates typical human EEG data of sleep stages N2/N3 as well as wakefulness and REM sleep."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226474",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spindles"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michael Schellenberger Costa"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mschellenbergercosta@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michael Schellenberger Costa"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-11-21T15:27:25.627",
+ "ver_number": 8
+ },
+ "226475": {
+ "class_id": 19,
+ "created": "2017-03-31T04:09:32.183",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226475,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226606,
+ "object_name": "Schellenberger Costa, Michael [mschellenbergercosta at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 225300,
+ "object_name": "Electrical-chemical"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226605,
+ "object_name": "Weigenand A, Schellenberger Costa M, Ngo HV, Claussen JC, Martinetz T (2014)"
+ },
+ {
+ "object_id": 226611,
+ "object_name": "Costa MS, Born J, Claussen JC, Martinetz T (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 112634,
+ "object_name": "Network"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Neural mass model of the neocortex under sleep regulation (Costa et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model generates typical human EEG patterns of sleep stages N2/N3 as well as wakefulness and REM. It further contains a sleep regulatory component, that lets the model transition between those stages independently"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226475",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michael Schellenberger Costa"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mschellenbergercosta@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michael Schellenberger Costa"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-11-21T15:29:43.407",
+ "ver_number": 7
+ },
+ "226812": {
+ "class_id": 19,
+ "created": "2017-04-05T05:44:17.64",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 226812,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 50400,
+ "object_name": "Maex, Reinoud [reinoud at bbf.uia.ac.be]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226817,
+ "object_name": "Van Dijck G, Seidl K, Paul O, Ruther P, Van Hulle MM, Maex R (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "5-neuron-model of neocortex for producing realistic extracellular AP shapes (Van Dijck et al. 2012)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a 5-neuron model of neocortex, containing one tufted layer-5 pyramidal cell, two non-tufted pyramidal cells, and two inhibitory interneurons. It was used to reproduce extracellular spike shapes in a study comparing algorithms for spike sorting and electrode selection. The neuron models are adapted from Dyhrfjeld-Johnsen et al. (2005)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/226812",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "reinoud.maex@uantwerpen.be"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Reinoud MAEX"
+ },
+ "ver_date": "2017-07-03T22:44:23.627",
+ "ver_number": 8
+ },
+ "227005": {
+ "class_id": 19,
+ "created": "2017-04-06T16:38:28.227",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227005,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 227078,
+ "object_name": "Oz, Pinar [poz.neuro AT gmail.com]"
+ },
+ {
+ "object_id": 227079,
+ "object_name": "Kreissl, Michael [mig80 AT gmx.net]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 227025,
+ "object_name": "\u00d6z P, Huang M, Wolf F (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "MCCAIS model (multicompartmental cooperative AIS) (\u00d6z et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Action potential initiation in a multi-compartmental model with cooperatively gating Na channels in the axon initial segment.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227005",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "poz.neuro@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pinar \u00d6z"
+ },
+ "ver_date": "2017-04-07T15:39:45.603",
+ "ver_number": 13
+ },
+ "227087": {
+ "class_id": 19,
+ "created": "2017-04-11T07:25:41.977",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227087,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206278,
+ "object_name": "Kastellakis, George [gkastel at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246384,
+ "object_name": "Frank AC, Huang S, Zhou M, Gdalyahu A, Kastellakis G, Silva TK, Lu E, Wen X, Poirazi P, Trachtenberg JT, Silva AJ (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hotspots of dendritic spine turnover facilitates new spines and NN sparsity (Frank et al 2018) ",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 206251,
+ "object_name": "Abstract integrate-and-fire leaky neuron with dendritic subunits"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model for the following publication: \r\n\r\nAdam C. Frank, Shan Huang, Miou Zhou, Amos Gdalyahu, George Kastellakis, Panayiota Poirazi, Tawnie K. Silva, Ximiao Wen, Joshua T. Trachtenberg, and Alcino J. Silva\r\n\r\nHotspots of Dendritic Spine Turnover Facilitate Learning-related Clustered Spine Addition and Network Sparsity\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227087",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gkastel@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "George Kastellakis"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2018-10-25T09:44:20.053",
+ "ver_number": 11
+ },
+ "227114": {
+ "class_id": 19,
+ "created": "2017-04-12T15:45:44.157",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227114,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 227116,
+ "object_name": "Dragly, Svenn-Arne "
+ },
+ {
+ "object_id": 227117,
+ "object_name": "Mobarhan, Milad Hobbi"
+ },
+ {
+ "object_id": 227118,
+ "object_name": "Solbra, Andreas Vavang "
+ },
+ {
+ "object_id": 227119,
+ "object_name": "Tennoe, Simen "
+ },
+ {
+ "object_id": 227121,
+ "object_name": "Hafreager, Anders "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 227097,
+ "object_name": "Dragly SA, Hobbi Mobarhan M, V\u00e5vang Solbr\u00e5 A, Tenn\u00f8e S, Hafreager A, Malthe-S\u00f8renssen A, Fyhn M, Hafting T, Einevoll GT (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 227115,
+ "object_name": "Neuronify (web link to model)"
+ }
+ ]
+ },
+ "name": "Neuronify: An Educational Simulator for Neural Circuits (Dragly et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neuronify, a new educational software application (app) providing an interactive way of learning about\r\nneural networks, is described. Neuronify allows students with no programming experience to easily build\r\nand explore networks in a plug-and-play manner picking network elements (neurons, stimulators, recording\r\ndevices) from a menu. The app is based on the commonly used integrate-and-fire type model neuron and\r\nhas adjustable neuronal and synaptic parameters. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227114",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2017-04-13T15:09:23.993",
+ "ver_number": 5
+ },
+ "227318": {
+ "class_id": 19,
+ "created": "2017-04-21T19:11:14.987",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227318,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33795,
+ "object_name": "Bhalla, Upinder S [bhalla at ncbs.res.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 227249,
+ "object_name": "Bhalla US (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 186718,
+ "object_name": "MOOSE/PyMOOSE"
+ }
+ ]
+ },
+ "name": "Discrimination on behavioral time-scales mediated by reaction-diffusion in dendrites (Bhalla 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Sequences of events are ubiquitous in sensory, motor, and cognitive function. Key computational\r\n operations, including pattern recognition, event prediction, and plasticity, involve neural\r\n discrimination of spatio-temporal sequences. Here we show that synaptically-driven reaction\r\ndiffusion pathways on dendrites can perform sequence discrimination on behaviorally relevant\r\n time-scales. We used abstract signaling models to show that selectivity arises when inputs at\r\n successive locations are aligned with, and amplified by, propagating chemical waves triggered by\r\n previous inputs. We incorporated biological detail using sequential synaptic input onto spines in\r\n morphologically, electrically, and chemically detailed pyramidal neuronal models based on rat data."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227318",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2019-02-19T17:18:15.98",
+ "ver_number": 13
+ },
+ "227363": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Maex R, De Schutter E (1998) Synchronization of Golgi and granule cell firing in a detailed network model of the cerebellar granule cell layer. J. Neurophysiol. 80, 2521-2537. https://www.ncbi.nlm.nih.gov/pubmed/9819260"
+ },
+ "class_id": 19,
+ "created": "2017-04-28T04:02:52.11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227363,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 50400,
+ "object_name": "Maex, Reinoud [reinoud at bbf.uia.ac.be]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 12079,
+ "object_name": "Maex R, De Schutter E (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Cerebellar granular layer (Maex and De Schutter 1998)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Circuit model of the granular layer representing a one-dimensional array of single-compartmental granule cells (grcs) and Golgi cells (Gocs). This paper examines the effects of feedback inhibition (grc -> Goc -> grc) versus feedforward inhibition (mossy fibre -> Goc -> grc) on synchronization and oscillatory behaviour."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227363",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cerebellum granule cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "reinoud.maex@uantwerpen.be"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Reinoud MAEX"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-05-01T11:29:25.327",
+ "ver_number": 4
+ },
+ "227577": {
+ "biosimulations": {
+ "value": "modeldb-227577"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 27194335, PMCID: PMC4871989, DOI: 10.1523/JNEUROSCI.0339-16.2016"
+ },
+ "class_id": 19,
+ "created": "2017-05-05T20:23:20.96",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227577,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125612,
+ "object_name": "Rubin, Jonathan E [jonrubin at pitt.edu]"
+ },
+ {
+ "object_id": 227583,
+ "object_name": "Whalen, Timothy C [timcwhalen at gmail.com]"
+ },
+ {
+ "object_id": 227584,
+ "object_name": "Corbit, Victoria L [vic22 at pitt.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 227582,
+ "object_name": "Corbit VL, Whalen TC, Zitelli KT, Crilly SY, Rubin JE, Gittis AH (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Pallidostriatal projections promote beta oscillations (Corbit, Whalen, et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model consists of an inhibitory loop combining the projections from GPe neurons back to the striatum (shown experimentally to predominantly affect fast spiking interneurons, FSIs), together with the coupling from FSIs to medium spiny neurons (MSNs) in the striatum, along with the projections from MSNs to GPe. All models are in the Hodgkin-Huxley formalism, adapted from previously published models for each cell type. The connected circuit produces irregular activity under control conditions, but increasing FSI-to-MSN connectivity as observed experimentally under dopamine depletion yields exaggerated beta oscillations and synchrony. Additional mechanistic aspects are also explored."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227577",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Whalen, Timothy C (timcwhalen@gmail.com)\r\nCorbit, Victoria L (vic22@pitt.edu)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Striatal FSIs, striatal MSNs"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Neuronal circuit"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jonrubin@pitt.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jonathan Rubin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2017-05-12T18:07:08.87",
+ "ver_number": 7
+ },
+ "227677": {
+ "class_id": 19,
+ "created": "2017-05-10T11:59:41.82",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227677,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 227974,
+ "object_name": "Chehelcheraghi, Mojtaba "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 227520,
+ "object_name": "Chehelcheraghi M, van Leeuwen C, Steur E, Nakatani C (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A neural mass model of cross frequency coupling (Chehelcheraghi et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Electrophysiological signals of cortical activity show a range of possible frequency and\r\namplitude modulations, both within and across regions, collectively known as cross-frequency\r\ncoupling. To investigate whether these modulations could be considered as manifestations\r\nof the same underlying mechanism, we developed a neural mass model. The\r\nmodel provides five out of the theoretically proposed six different coupling types. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227677",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chehelcheraghi, Mojtaba"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2017-05-19T13:50:48.72",
+ "ver_number": 7
+ },
+ "227678": {
+ "class_id": 19,
+ "created": "2017-05-10T16:19:58.033",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227678,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33801,
+ "object_name": "Canavier, CC"
+ },
+ {
+ "object_id": 234091,
+ "object_name": "Knowlton, Christopher [cknow1 at lsuhsc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234095,
+ "object_name": "Knowlton C, Kutterer S, Roeper J, Canavier CC (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Model for K-ATP mediated bursting in mSNc DA neurons (Knowlton et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Burst firing in medial substantia nigra dopamine (mSN DA) neurons has been selectively linked to novelty-induced exploration behavior in mice. Burst firing in mSN DA neurons, in contrast to lateral SN DA neurons, requires functional ATP-sensitive potassium channels (K-ATP) both in vitro and in vivo. However, the precise role of K-ATP channels in promoting burst firing is un-known. We show experimentally that L-type calcium channel activity in mSN DA neurons en-hances open probability of K-ATP channels. We then generated a mathematical model to study the role of Ca2+ dynamics driving K-ATP channel function in mSN DA neurons during bursting. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227678",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Christopher Knowlton\r\nCarmen Canavier"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cknow1@lsuhsc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Christopher Knowlton"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2018-01-02T17:43:15.327",
+ "ver_number": 19
+ },
+ "227972": {
+ "class_id": 19,
+ "created": "2017-05-12T14:09:45.24",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227972,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 227973,
+ "object_name": "Jercog, Daniel [daniel dot jercog at inserm dot fr] "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249214,
+ "object_name": "Jercog D, Roxin A, Barth\u00f3 P, Luczak A, Compte A, de la Rocha J (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Models for cortical UP-DOWN states in a bistable inhibitory-stabilized network (Jercog et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In the idling brain, neuronal circuits transition between periods of sustained firing (UP state) and quiescence (DOWN state), a pattern the mechanisms of which remain unclear. We analyzed spontaneous cortical population activity from anesthetized rats and found that UP and DOWN durations were highly variable and that population rates showed no significant decay during UP periods. \r\nWe built a network rate model with excitatory (E) and inhibitory (I) populations exhibiting a novel bistable regime between a quiescent and an inhibition-stabilized state of arbitrarily low rate, where fluctuations triggered state transitions. In addition, we implemented these mechanisms in a more biophysically realistic spiking network, where DOWN-to-UP transitions are caused by synchronous high-amplitude events impinging onto the network.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227972",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Jercog, Daniel [daniel dot jercog at inserm dot fr] "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "daniel.jercog@inserm.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniel Jercog"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-08-01T11:20:45.653",
+ "ver_number": 24
+ },
+ "227978": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 26818524"
+ },
+ "class_id": 19,
+ "created": "2017-05-15T14:10:31.283",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 227978,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 228308,
+ "object_name": "Kruse, Martin [mkruse at uw.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 227981,
+ "object_name": "Kruse M, Vivas O, Traynor-Kaplan A, Hille B (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 55276,
+ "object_name": "Virtual Cell (web link to model)"
+ }
+ ]
+ },
+ "name": "Phosphoinositide-Dependent Signaling in Sympathetic Neurons (SCG) (Kruse et al. 2016)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Phosphatidylinositol 4,5-bisphosphate [PI(4,5)P2] is a minor phospholipid in the cytoplasmic leaflet of the plasma membrane. Depletion of PI(4,5)P2 via phospholipase C-mediated hydrolysis leads to a decrease in exocytosis and alters electrical excitability in neurons. Restoration of PI(4,5)P2 is essential for a return to basal neuronal activity. However, the dynamics of phosphoinositide metabolism have not been analyzed in neurons. We studied the dynamics of phosphoinositide metabolism in sympathetic neu- rons upon muscarinic stimulation and used the kinetic information to develop a quantitative description of neuronal phospho- inositide metabolism. The measurements and analysis show a several-fold faster synthesis of PI(4,5)P2 in sympathetic neurons than in an electrically nonexcitable cell line, and provide a framework for future studies of PI(4,5)P2-dependent processes in neurons."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/227978",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mkruse@uw.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Martin Kruse"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 179,
+ "object_name": "M1"
+ }
+ ]
+ },
+ "ver_date": "2017-05-19T17:38:34.823",
+ "ver_number": 6
+ },
+ "228337": {
+ "biosimulations": {
+ "value": "modeldb-228337"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Maex R, Grinevich VP, Grinevich V, Budygin E, Bencherif M, Gutkin B (2014) Understanding the role a7 nicotinic receptors play in dopamine efflux in nucleus accumbens. ACS Chem. Neurosci. 5, 1032-1340. doi: 10.1021/cn500126t. pubmed/25147933"
+ },
+ "class_id": 19,
+ "created": "2017-05-20T08:45:52.54",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 228337,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 50400,
+ "object_name": "Maex, Reinoud [reinoud at bbf.uia.ac.be]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ },
+ {
+ "object_id": 112854,
+ "object_name": "Addiction"
+ },
+ {
+ "object_id": 183421,
+ "object_name": "Volume transmission"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 228376,
+ "object_name": "Maex R, Grinevich VP, Grinevich V, Budygin E, Bencherif M, Gutkin B (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Nicotinic control of dopamine release in nucleus accumbens (Maex et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 189152,
+ "object_name": "Ventral tegmental area dopamine neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Minimal model of the VTA (ventral segmental area) representing two (GABA versus dopamine) neuron populations and two subtypes of nicotinic receptors (alpha4beta2 versus alpha7). The model is used to tell apart circuit from receptor mechanisms in the nicotinic control of dopamine release and its pharmacological manipulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/228337",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "reinoud.maex@uantwerpen.be"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Reinoud Maex"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 178,
+ "object_name": "Nicotinic"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2017-05-22T09:15:14.027",
+ "ver_number": 3
+ },
+ "228373": {
+ "class_id": 19,
+ "created": "2017-05-21T09:34:59.59",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 228373,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 228371,
+ "object_name": "Martinet, L-E "
+ },
+ {
+ "object_id": 228372,
+ "object_name": "Kramer, M.A [mak at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 227675,
+ "object_name": "Martinet LE, Fiddyment G, Madsen JR, Eskandar EN, Truccolo W, Eden UT, Cash SS, Kramer MA (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Human seizures couple across spatial scales through travelling wave dynamics (Martinet et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We show that during seizure large-scale neural populations spanning centimetres of cortex coordinate with small neural groups spanning cortical columns, and provide evidence that rapidly propagating waves of activity underlie this increased inter-scale coupling. We develop a corresponding computational model to propose specific mechanisms\u2014namely, the effects of an increased extracellular potassium concentration diffusing in space\u2014that support the observed spatiotemporal dynamics. Understanding the multi-scale, spatiotemporal dynamics of human seizures\u2014and connecting these dynamics to specific biological mechanisms\u2014promises new insights to treat this devastating disease."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/228373",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2017-05-21T09:38:22.613",
+ "ver_number": 4
+ },
+ "228596": {
+ "class_id": 19,
+ "created": "2017-05-22T11:02:08.947",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 228596,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57906,
+ "object_name": "Golomb, David [golomb at bgu.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ },
+ {
+ "object_id": 245799,
+ "object_name": "Whisking"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 229283,
+ "object_name": "Gutnisky DA, Yu J, Hires SA, To MS, Bale M, Svoboda K, Golomb D (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "L4 cortical barrel NN model receiving thalamic input during whisking or touch (Gutnisky et al. 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 182505,
+ "object_name": "Neocortex layer 4 neuron"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Excitatory neurons in layer 4 (L4) in the barrel cortex respond relatively strongly to touch but not to whisker movement (Yu et al., Nat. Neurosci. 2016). The model explains the mechanism underlying this effect. The network is settled to filter out most stationary inputs. Brief touch input passes through because it takes time until feed-forward inhibition silences excitatory neurons receiving brief and strong thalamic excitation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/228596",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "golomb@bgu.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "David Golomb"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228597,
+ "object_name": "Barrel cortex"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249926,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:24:08.613",
+ "ver_number": 10
+ },
+ "228599": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://doi.org/10.1101/084152"
+ },
+ "class_id": 19,
+ "created": "2017-05-25T12:23:54.267",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 228599,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 260965,
+ "object_name": "Honnuraiah, Suraj [hs at ini.phys.ethz.ch]"
+ },
+ {
+ "object_id": 260963,
+ "object_name": "Gutierrez, Adrian [agutie at ini.uzh.ch]"
+ },
+ {
+ "object_id": 260964,
+ "object_name": "Soldado-Magraner, Saray [ssaray at ini.uzh.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261228,
+ "object_name": "Soldado-Magraner S, Brandalise F, Honnuraiah S, Pfeiffer M, Moulinier M, Gerber U, Douglas R (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Firing patterns of CA3 hippocampal neurons (Soldado-Magraner et al. 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we demonstrate that the intrinsic firing patterns of CA3 neurons of the rat hippocampus in vitro undergo rapid long-term plasticity in response to a few minutes of only subthreshold synaptic conditioning. This plasticity on the spike-timing could also be induced by intrasomatic injection of subthreshold depolarizing pulses and was blocked by kinase inhibitors, indicating that discharge dynamics are modulated locally. Cluster analysis of firing patterns before and after conditioning revealed systematic transitions towards adapting and intrinsic burst behaviours, irrespective of the patterns initially exhibited by the cells. We used a conductance-based model to decide appropriate pharmacological blockade, and found that the observed transitions are likely due to recruitment of low-voltage calcium and Kv7 potassium conductances. We conclude that CA3 neurons adapt their conductance profile to the subthreshold activity of their input, so that their intrinsic firing pattern is not a static signature, but rather a reflection of their history of subthreshold activity. In this way, recurrent output from CA3 neurons may collectively shape the temporal dynamics of their embedding circuits.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/228599",
+ "other_type": {
+ "attr_id": 305,
+ "value": "Single Compartment"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ssaray@ini.uzh.ch"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Saray Soldado-Magraner"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2019-11-22T17:37:00.167",
+ "ver_number": 26
+ },
+ "228604": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Droste F, Lindner B, Exact analytical results for integrate-and-fire neurons driven\r\nby excitatory shot noise, J. Comp. Neurosci, 2017 (accepted)"
+ },
+ "class_id": 19,
+ "created": "2017-05-30T14:08:48.09",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 228604,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 228605,
+ "object_name": "Droste, Felix [fedro at posteo.de]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 228606,
+ "object_name": "Droste F, Lindner B (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Theory and simulation of integrate-and-fire neurons driven by shot noise (Droste & Lindner 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 146806,
+ "object_name": "Abstract theta neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This archive contains source code for the paper \"Exact analytical results for integrate-and-fire neurons driven by excitatory shot noise\" by Droste and Lindner, 2017. Specifically, it contains a Python implementation of the analytical formulas derived in that paper (allowing to calculate firing rate, CV and stationary voltage distribution of general integrate-and-fire neurons driven by excitatory shot noise, as well as power spectrum and rate-response of leaky integrate-and-fire neurons with such input) and C++ code implementing a Monte-Carlo simulation to estimate these quantities. A sample Jupyter notebook to play around with the analytics is included, as are scripts to reproduce the figures from the paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/228604",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Droste, Felix "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Abstract general integrate-and-fire neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "felix.droste@posteo.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Felix Droste"
+ },
+ "ver_date": "2017-06-06T16:23:46.893",
+ "ver_number": 5
+ },
+ "229276": {
+ "class_id": 19,
+ "created": "2017-06-05T11:42:19.083",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 229276,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156119,
+ "object_name": "Simoes-de-Souza, Fabio [fabio.souza at ufabc.edu.br]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 238763,
+ "object_name": "Antunes G, Faria da Silva SF, Simoes de Souza FM (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Mirror Neuron (Antunes et al 2017)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Modeling Mirror Neurons Through Spike-Timing Dependent Plasticity. This script reproduces Figure 3B."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/229276",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Mirror Neuron"
+ },
+ "other_gene": {
+ "attr_id": 477,
+ "value": "SHANK3, Kv7.3"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Simoes-de-Souza, Fabio"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fabio.souza@ufabc.edu.br"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fabio Simoes de Souza"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-07-08T11:00:40.857",
+ "ver_number": 9
+ },
+ "229278": {
+ "class_id": 19,
+ "created": "2017-06-06T16:31:20.307",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 229278,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230895,
+ "object_name": "Powers, Al [albert.powers at yale.edu]"
+ },
+ {
+ "object_id": 230896,
+ "object_name": "Mathys, Chris H "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 231425,
+ "object_name": "Hallucinations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230859,
+ "object_name": "Powers AR, Mathys C, Corlett PR (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hierarchical Gaussian Filter (HGF) model of conditioned hallucinations task (Powers et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an instantiation of the Hierarchical Gaussian Filter (HGF) model for use with the Conditioned Hallucinations Task."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/229278",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Al Powers and Chris "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "albert.powers@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Albert Powers"
+ },
+ "ver_date": "2018-12-18T16:38:27.73",
+ "ver_number": 14
+ },
+ "229279": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Samira Abbasi, Amber E. Hudson, Selva K. Maran, Ying Cao, Ataollah Abbasi,\r\nDetlef H. Heck, Dieter Jaeger \r\nRobust Transmission of Rate Coding in the Inhibitory Purkinje Cell to Cerebellar\r\nNuclei Pathway in Awake Mice"
+ },
+ "class_id": 19,
+ "created": "2017-06-06T17:15:43.64",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 229279,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 136251,
+ "object_name": "Jaeger, Dieter [djaeger at emory.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 229280,
+ "object_name": "Abbasi S, Hudson AE, Maran SK, Cao Y, Abbasi A, Heck DH, Jaeger D (2017)"
+ },
+ {
+ "object_id": 136181,
+ "object_name": "Steuber V, Schultheiss NW, Silver RA, De Schutter E, Jaeger D (2011)"
+ },
+ {
+ "object_id": 150020,
+ "object_name": "Steuber V, Jaeger D (2013)"
+ },
+ {
+ "object_id": 84865,
+ "object_name": "Steuber V, De Schutter E, Jaeger D (2004)"
+ },
+ {
+ "object_id": 144522,
+ "object_name": "Luthman J, Hoebeek FE, Maex R, Davey N, Adams R, De Zeeuw CI, Steuber V (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Robust transmission in the inhibitory Purkinje Cell to Cerebellar Nuclei pathway (Abbasi et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/229279",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Samira Abbasi, Selva Maran"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Purkinje cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "djaeger@emory.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Dieter Jaeger"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-06-06T19:22:26.46",
+ "ver_number": 4
+ },
+ "229580": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Harris KD, Dashevskiy T, Mendoza J, Garcia AJ, Ramirez JM, Shea-Brown E (2017) Different roles for inhibition in the rhythm-generating respiratory network. J Neurophysiol :jn.00174.2017"
+ },
+ "class_id": 19,
+ "created": "2017-06-19T14:56:20.397",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 229580,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 229583,
+ "object_name": "Harris, Kameron Decker "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 229485,
+ "object_name": "Harris KD, Dashevskiy T, Mendoza J, Garcia AJ, Ramirez JM, Shea-Brown E (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Different roles for inhibition in the rhythm-generating respiratory network (Harris et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Unraveling the interplay of excitation and inhibition within rhythm-generating networks remains a fundamental issue in neuroscience. We use a biophysical model to investigate the different roles of local and long-range inhibition in the respiratory network, a key component of which is the pre-B\u00f6tzinger complex inspiratory microcircuit. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/229580",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Harris, Kameron Decker"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2017-06-19T15:06:28.363",
+ "ver_number": 3
+ },
+ "229585": {
+ "citation": {
+ "attr_id": 391,
+ "value": "25759640"
+ },
+ "class_id": 19,
+ "created": "2017-06-20T05:11:07.01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122819,
+ "object_name": "Cav2.1 CACNA1A"
+ },
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ },
+ {
+ "object_id": 122811,
+ "object_name": "Cav3.3 CACNA1I"
+ },
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ },
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122806,
+ "object_name": "Kv1.5 KCNA5"
+ },
+ {
+ "object_id": 122808,
+ "object_name": "Kv3.3 KCNC3"
+ },
+ {
+ "object_id": 123580,
+ "object_name": "Kv3.4 KCNC4"
+ },
+ {
+ "object_id": 122803,
+ "object_name": "Kv4.3 KCND3"
+ },
+ {
+ "object_id": 229638,
+ "object_name": "KCa1.1 KCNMA1"
+ },
+ {
+ "object_id": 122821,
+ "object_name": "KCa2.2 KCNN2"
+ },
+ {
+ "object_id": 229639,
+ "object_name": "KCa3.1 KCNN4"
+ },
+ {
+ "object_id": 185462,
+ "object_name": "Kir2.1 KCNJ2"
+ },
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 229585,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 229586,
+ "object_name": "Masoli, Stefano [stefano.masoli at unipv.it]"
+ },
+ {
+ "object_id": 116577,
+ "object_name": "Solinas, Sergio [solinas at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 185836,
+ "object_name": "Masoli S, Solinas S, D'Angelo E (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A detailed Purkinje cell model (Masoli et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Purkinje cell is one of the most complex type of neuron in the central nervous system and is well known for its massive dendritic tree. The initiation of the action potential was theorized to be due to the high calcium channels presence in the dendritic tree but, in the last years, this idea was revised. In fact, the Axon Initial Segment, the first section of the axon was seen to be critical for the spontaneous generation of action potentials. The model reproduces the behaviours linked to the presence of this fundamental sections and the interplay with the other parts of the neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/229585",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stefano.masoli@unipv.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Stefano Masoli"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-09-19T09:38:51.627",
+ "ver_number": 19
+ },
+ "229640": {
+ "biosimulations": {
+ "value": "modeldb-229640"
+ },
+ "class_id": 19,
+ "created": "2017-06-20T15:27:26.343",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 229640,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 232101,
+ "object_name": "Diekman, Casey O. [casey.o.diekman at njit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 227131,
+ "object_name": "Pacemaking mechanism"
+ },
+ {
+ "object_id": 232102,
+ "object_name": "Respiratory control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 232100,
+ "object_name": "Diekman CO, Thomas PJ, Wilson CG (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Respiratory control model with brainstem CPG and sensory feedback (Diekman, Thomas, and Wilson 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 125611,
+ "object_name": "Respiratory column neuron"
+ },
+ {
+ "object_id": 232103,
+ "object_name": "PreBotzinger complex neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a closed-loop respiratory control model incorporating a central pattern generator (CPG), the Butera-Rinzel-Smith (BRS) model, together with lung mechanics, oxygen handling, and chemosensory components. The closed-loop system exhibits bistability of bursting and tonic spiking. Bursting corresponds to coexistence of eupnea-like breathing, with normal minute ventilation and blood oxygen level. Tonic spiking corresponds to a tachypnea-like state, with pathologically reduced minute ventilation and critically low blood oxygen. In our paper, we use the closed-loop system to demonstrate robustness to changes in metabolic demand, spontaneous autoresuscitation in response to hypoxia, and the distinct mechanisms that underlie rhythmogenesis in the intact control circuit vs. the isolated, open-loop CPG."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/229640",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "respiratory control"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "preBotzinger Complex neuron"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "closed-loop circuit"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "casey.o.diekman@njit.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Casey O. Diekman"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2017-09-13T17:09:24.5",
+ "ver_number": 25
+ },
+ "229750": {
+ "class_id": 19,
+ "created": "2017-06-25T13:34:43.047",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 229750,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 233368,
+ "object_name": "Str\u00fcber, Michael [michael_strueber at hotmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 233366,
+ "object_name": "Str\u00fcber M, Sauer JF, Jonas P, Bartos M (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Distance-dependent inhibition in the hippocampus (Str\u00fcber et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Network model of a hippocampal circuit including interneurons and principal cells. Amplitude and decay time course of inhibitory synapses can be systematically changed for different distances between connected cells. Various forms of excitatory drives can be administered to the network including spatially structured input."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/229750",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michael Str\u00fcber"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael_strueber@hotmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michael Str\u00fcber"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2017-10-03T16:49:14.33",
+ "ver_number": 16
+ },
+ "230046": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Melozzi et al. 2017"
+ },
+ "class_id": 19,
+ "created": "2017-06-28T10:39:30.507",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230046,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230048,
+ "object_name": "Melozzi, Francesca "
+ },
+ {
+ "object_id": 230049,
+ "object_name": "Jirsa, Viktor K "
+ },
+ {
+ "object_id": 230050,
+ "object_name": "Bernard, Christophe "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230044,
+ "object_name": "Melozzi F, Woodman MM, Jirsa VK, Bernard C (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 230047,
+ "object_name": "The Virtual Mouse Brain (TVMB) (web link to model)"
+ }
+ ]
+ },
+ "name": "The Virtual Mouse Brain (TVMB) (Melozzi et al. 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Connectome-based modeling of large-scale brain network dynamics enables causal in silico interrogation of the brain\u2019s\r\nstructure-function relationship, necessitating the close integration of diverse neuroinformatics fields.\r\nHere we extend the open-source simulation software The Virtual Brain to whole mouse brain network modeling\r\nbased on individual diffusion Magnetic Resonance Imaging (dMRI)-based or tracer-based detailed mouse connectomes.\r\nWe provide practical examples on how to use The Virtual Mouse Brain to simulate brain activity, such as seizure\r\npropagation and the switching behavior of the resting state dynamics in health and disease.\r\nThe Virtual Mouse Brain enables theoretically driven experimental planning and ways to test predictions in the\r\nnumerous strains of mice available to study brain function in normal and pathological conditions.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230046",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "resting state dynamics"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "TVMB"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249926,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:24:24.467",
+ "ver_number": 5
+ },
+ "230137": {
+ "class_id": 19,
+ "created": "2017-06-29T10:56:36.06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 92083,
+ "object_name": "Nav1.2 SCN2A"
+ },
+ {
+ "object_id": 92084,
+ "object_name": "Nav1.3 SCN3A"
+ },
+ {
+ "object_id": 92085,
+ "object_name": "Nav1.4 SCN4A"
+ },
+ {
+ "object_id": 92086,
+ "object_name": "Nav1.5 SCN5A"
+ },
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ },
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ },
+ {
+ "object_id": 92089,
+ "object_name": "Nav1.8 SCN10A"
+ },
+ {
+ "object_id": 92091,
+ "object_name": "Nav1.9 SCN11A SCN12A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230137,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 151444,
+ "object_name": "Balbi, Pietro [piero.balbi at fsm.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 231820,
+ "object_name": "Balbi P, Massobrio P, Hellgren Kotaleski J (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A single kinetic model for all human voltage-gated sodium channels (Balbi et al, 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Code for simulating macroscopic currents of sodium channels (Nav1.1. to Nav1.9), by means of a single kinetic model. Intensity-voltage curves, normalized conductance-voltage relationship, steady-state availability and recovery from inactivation are simulated."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230137",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Markov-type channel model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "piero.balbi@fsm.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pietro Balbi"
+ },
+ "ver_date": "2023-03-06T11:26:02.817",
+ "ver_number": 24
+ },
+ "230138": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Masquelier T (2017) STDP allows close-to-optimal spatiotemporal spike pattern detection by single coincidence detector neurons. Neuroscience.\r\nhttps://doi.org/10.1016/j.neuroscience.2017.06.032"
+ },
+ "class_id": 19,
+ "created": "2017-06-30T05:35:55.203",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230138,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123929,
+ "object_name": "Masquelier, Tim [timothee.masquelier at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230144,
+ "object_name": "Masquelier T (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Optimal spatiotemporal spike pattern detection by STDP (Masquelier 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We simulate a LIF neuron equipped with STDP. A pattern repeats in its inputs. The LIF progressively becomes selective to the repeating pattern, in an optimal manner."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230138",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timothee.masquelier@alum.mit.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tim Masquelier"
+ },
+ "ver_date": "2017-06-30T16:56:26.81",
+ "ver_number": 5
+ },
+ "230324": {
+ "class_id": 19,
+ "created": "2017-07-07T07:02:57.453",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230324,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230325,
+ "object_name": "Pernelle, Guillaume [g.pernelle14 at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239749,
+ "object_name": "Pernelle G, Nicola W, Clopath C (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Gap junction plasticity as a mechanism to regulate network-wide oscillations (Pernelle et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Oscillations of neural activity emerge when many neurons repeatedly activate together and are observed in many brain regions, particularly during sleep and attention. Their functional role is still debated, but could be associated with normal cognitive processes such as memory formation or with pathologies such as schizophrenia and autism. Powerful oscillations are also a hallmark of epileptic seizures. Therefore, we wondered what mechanism could regulate oscillations. A type of neuronal coupling, called gap junctions, has been shown to promote synchronization between inhibitory neurons. Computational models show that when gap junctions are strong, neurons synchronize together. Moreover recent investigations show that the gap junction coupling strength is not static but plastic and dependent on the firing properties of the neurons. Thus, we developed a model of gap junction plasticity in a network of inhibitory and excitatory neurons. We show that gap junction plasticity can maintain the right amount of oscillations to prevent pathologies from emerging. Finally, we show that gap junction plasticity serves an additional functional role and allows for efficient and robust information transfer.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230324",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Gap junction plasticity"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Guillaume Pernelle [g.pernelle14 at imperial.ac.uk]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "g.pernelle14@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Guillaume Pernelle"
+ },
+ "ver_date": "2020-05-27T11:07:35.817",
+ "ver_number": 22
+ },
+ "230326": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hay, E., Hill, S., Sch\u00fcrmann, F., Markram, H., and Segev, I. (2011). Models of Neocortical Layer 5b Pyramidal Cells Capturing a Wide Range of Dendritic and Perisomatic Active Properties. PLoS Comput. Biol. 7, e1002107. doi:10.1371/journal.pcbi.1002107."
+ },
+ "class_id": 19,
+ "created": "2017-07-07T08:56:13.373",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230326,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 185339,
+ "object_name": "Zylbertal, Asaph [asaph.zylbertal at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 145814,
+ "object_name": "Hay E, Hill S, Sch\u00fcrmann F, Markram H, Segev I (2011)"
+ },
+ {
+ "object_id": 231916,
+ "object_name": "Zylbertal A, Yarom Y, Wagner S (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cortical Layer 5b pyr. cell with [Na+]i mechanisms, from Hay et al 2011 (Zylbertal et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Based on a large body of experimental recordings from both the soma and dendrites of L5b pyramidal cells in adult rats, we characterized key features of the somatic and dendritic firing and quantified their statistics. We used these features to constrain the density of a set of ion channels over the soma and dendritic surface via multi-objective optimization with an evolutionary algorithm, thus generating a set of detailed conductance-based models that faithfully replicate the back-propagating action potential activated Ca(2+) spike firing and the perisomatic firing response to current steps, as well as the experimental variability of the properties. Furthermore, we show a useful way to analyze model parameters with our sets of models, which enabled us to identify some of the mechanisms responsible for the dynamic properties of L5b pyramidal cells as well as mechanisms that are sensitive to morphological changes. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230326",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Intracellular Sodium"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Layer 5b pyramidal cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "asaph.zylbertal@mail.huji.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Asaph Zylbertal"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-10-11T16:19:32.66",
+ "ver_number": 10
+ },
+ "230329": {
+ "class_id": 19,
+ "created": "2017-07-08T22:15:29.267",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230329,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 260018,
+ "object_name": "Yi, Guosheng "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 231864,
+ "object_name": "Yi G, Wang J, Wei X, Deng B (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Dendritic properties control energy efficiency of APs in cortical pyramidal cells (Yi et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Neural computation is performed by transforming input signals into sequences of action potentials (APs), which is metabolically expensive and limited by the energy available to the brain. The energy efficiency of single AP has important consequences for the computational power of the cell, which is determined by its biophysical properties and morphologies. Here we adopt biophysically-based two-compartment models to investigate how dendrites affect energy efficiency of APs in cortical pyramidal neurons. We measure the Na+ entry during the spike and examine how it is efficiently used for generating AP depolarization. We show that increasing the proportion of dendritic area or coupling conductance between two chambers decreases Na+ entry efficiency of somatic AP. Activating inward Ca2+ current in dendrites results in dendritic spike, which increases AP efficiency. Activating Ca2+-activated outward K+ current in dendrites, however, decreases Na+ entry efficiency. We demonstrate that the active and passive dendrites take effects by altering the overlap between Na+ influx and internal current flowing from soma to dendrite. We explain a fundamental link between dendritic properties and AP efficiency, which is essential to interpret how neural computation consumes metabolic energy and how the biophysics and morphology contributes to such consumption."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230329",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yi, Guosheng "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "guoshengyi@tju.edu.cn"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Guosheng Yi,Jiang Wang, Xile Wei, Bin Deng"
+ },
+ "ver_date": "2019-10-14T17:29:52.947",
+ "ver_number": 10
+ },
+ "230400": {
+ "citation": {
+ "attr_id": 391,
+ "value": "von Reyn CR, Nern A, Williamson WR, Breads P, Wu M, Namiki S, Card GM.\r\nFeature Integration Drives Probabilistic Behavior in the Drosophila Escape Response.\r\nNeuron. 2017 Jun 21;94(6):1190-1204.e6. doi: 10.1016/j.neuron.2017.05.036.\r\nPMID: 28641115"
+ },
+ "class_id": 19,
+ "created": "2017-07-10T14:26:38.353",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230400,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230423,
+ "object_name": "von Reyn, Catherine [crv33 at drexel.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230422,
+ "object_name": "von Reyn CR, Nern A, Williamson WR, Breads P, Wu M, Namiki S, Card GM (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Feature integration drives probabilistic behavior in Fly escape response (von Reyn et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... A Linear Model for Visual Feature Integration in the GF (Drosophila Giant Fiber)\r\nCircuit.\r\nTo test our hypothesis that the GFs linearly integrate the separately\r\nencoded features of looming stimulus size and angular\r\nvelocity, we developed a model to predict GF membrane potential\r\nacross visual stimuli (Figure 8A). In this four-component\r\nmodel, the GFs linearly sum two excitatory components\u2014\r\nnon-LC4(Type 4 lobula columnar neurons)-mediated angular size excitation and LC4-mediated\r\nangular velocity excitation\u2014and two inhibitory components\u2014\r\nnon-LC4- and LC4-mediated angular size inhibition.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230400",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "crv33@drexel.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Catherine R von Reyn"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 120613,
+ "object_name": "Drosophila (fruit fly)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:15:23.237",
+ "ver_number": 7
+ },
+ "230562": {
+ "citation": {
+ "attr_id": 391,
+ "value": "M. Daneshzand, M. Faezipour and B. D. Barkana,\"Hyperbolic Modeling of Subthalamic Nucleus cells to investigate the effect of Dopamine Depletion \", Computational intelligence and Neuroscience. accepted July 2017."
+ },
+ "class_id": 19,
+ "created": "2017-07-12T13:07:02.31",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230562,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230897,
+ "object_name": "Daneshzand, Mohammad [mdaneshz at my.bridgeport.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 238733,
+ "object_name": "Daneshzand M, Faezipour M, Barkana BD (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hyperbolic model (Daneshzand et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A modified Izhikevich neuron model to address the switching patterns of neuronal firing seen in Parkinson's Disease."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230562",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mdaneshz@my.bridgeport.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mohammad Daneshzand"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2017-07-25T13:59:46.073",
+ "ver_number": 6
+ },
+ "230578": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Caze et al 2017"
+ },
+ "class_id": 19,
+ "created": "2017-07-12T17:19:51.737",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230578,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 230581,
+ "object_name": "Stimulus selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 229481,
+ "object_name": "Caz\u00e9 RD, Jarvis S, Foust AJ, Schultz SR (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Dendrites enable a robust mechanism for neuronal stimulus selectivity (Caze et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Using a multi-subunit nonlinear model, we\r\ndemonstrate that stimulus selectivity can arise from the spatial\r\ndistribution of synapses. We propose this as a general mechanism for\r\ninformation processing by neurons possessing dendritic\r\ntrees. Moreover, we show that this implementation of stimulus\r\nselectivity increases the neuron's robustness to synaptic and\r\ndendritic failure. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230578",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Thomas Morse"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2017-07-12T17:45:08.157",
+ "ver_number": 3
+ },
+ "230811": {
+ "class_id": 19,
+ "created": "2017-07-19T06:20:39.137",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230811,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155061,
+ "object_name": "Papoutsi, Athanasia [athpapoutsi at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230812,
+ "object_name": "Papoutsi A, Kastellakis G, Poirazi P (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "L5 PFC pyramidal neurons (Papoutsi et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, we use a\r\nmodeling approach to investigate whether and how the morphology of the\r\nbasal tree mediates the functional output of neurons. We implemented\r\n57 basal tree morphologies of layer 5 prefrontal pyramidal neurons of\r\nthe rat and identified morphological types which were characterized by\r\ndifferent response features, forming distinct functional types. These\r\ntypes were robust to a wide range of manipulations (distribution of\r\nactive ionic mechanisms, NMDA conductance, somatic and apical tree\r\nmorphology or the number of activated synapses) and supported\r\ndifferent temporal coding schemes at both the single neuron and the\r\nmicrocircuit level.\r\nWe predict that the basal tree morphological\r\ndiversity among neurons of the same class mediates their segregation\r\ninto distinct functional pathways.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230811",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Prefrotnal layer 5 pyramidal"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "athpapoutsi@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Athanasia Papoutsi"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2019-10-10T17:37:38.853",
+ "ver_number": 9
+ },
+ "230861": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Canakci S, Inci AF, Toy MF, Liu X, and Kuzum D. \"Computational Analysis of Network Activity and Spatial Reach of Sharp Wave-Ripples\". PLOS ONE 2017"
+ },
+ "class_id": 19,
+ "created": "2017-07-20T14:26:16.697",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 230861,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 230877,
+ "object_name": "Canakci, Sadullah [scanakci at bu.edu]"
+ },
+ {
+ "object_id": 230878,
+ "object_name": "Inci, Ahmet F [afinci at sabanciuniv,edu]"
+ },
+ {
+ "object_id": 230879,
+ "object_name": "Toy, Faruk [faruk.toy at metu.edu.tr]"
+ },
+ {
+ "object_id": 230880,
+ "object_name": "Liu, Xin [xil432 at end.ucsd.edu]"
+ },
+ {
+ "object_id": 230881,
+ "object_name": "Kuzum, Duygu [dkuzum at eng.ucsd.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230882,
+ "object_name": "Canakci S, Toy MF, Inci AF, Liu X, Kuzum D (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Computational analysis of NN activity and spatial reach of sharp wave-ripples (Canakci et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Network oscillations of different frequencies, durations and amplitudes are hypothesized to coordinate information processing and transfer across brain areas. Among these oscillations, hippocampal sharp wave-ripple complexes (SPW-Rs) are one of the most prominent. SPW-Rs occurring in the hippocampus are suggested to play essential roles in memory consolidation as well as information transfer to the neocortex. To-date, most of the knowledge about SPW-Rs comes from experimental studies averaging responses from neuronal populations monitored by conventional microelectrodes. In this work, we investigate spatiotemporal characteristics of SPW-Rs and how microelectrode size and distance influence SPW-R recordings using a biophysical model of hippocampus. We also explore contributions from neuronal spikes and synaptic potentials to SPW-Rs based on two different types of network activity. Our study suggests that neuronal spikes from pyramidal cells contribute significantly to ripples while high amplitude sharp waves mainly arise from synaptic activity. Our simulations on spatial reach of SPW-Rs show that the amplitudes of sharp waves and ripples exhibit a steep decrease with distance from the network and this effect is more prominent for smaller area electrodes. Furthermore, the amplitude of the signal decreases strongly with increasing electrode surface area as a result of averaging. The relative decrease is more pronounced when the recording electrode is closer to the source of the activity. Through simulations of field potentials across a high-density microelectrode array, we demonstrate the importance of finding the ideal spatial resolution for capturing SPW-Rs with great sensitivity. Our work provides insights on contributions from spikes and synaptic potentials to SPW-Rs and describes the effect of measurement configuration on LFPs to guide experimental studies towards improved SPW-R recordings."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230861",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Canakci, Sadullah [scanakci at bu.edu];\r\nInci, Ahmet F [afinci at sabanciuniv,edu];\r\nToy, Faruk [faruk.toy at metu.edu.tr];\r\nLiu, Xin [xil432 at end.ucsd.edu];\r\nKuzum, Duygu [dkuzum at eng.ucsd.edu];"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "scanakci@bu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sadullah Canakci"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-08-30T10:43:10.03",
+ "ver_number": 15
+ },
+ "230888": {
+ "citation": {
+ "attr_id": 391,
+ "value": "chandler hodgkin 1965"
+ },
+ "class_id": 19,
+ "created": "2017-07-21T19:02:00.497",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230888,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230862,
+ "object_name": "Chandler WK, Hodgkin AL (1965)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "The cannula artifact (Chandler & Hodgkin 1965)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Chandler and Hodgkin 1965 describes how using a high impedance electrode can lead to squid axon recordings that appear to overshoot the sodium reversal potential, thus resolving controversial recordings at the time."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230888",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2017-07-21T19:17:22.613",
+ "ver_number": 5
+ },
+ "230929": {
+ "class_id": 19,
+ "created": "2017-07-25T17:20:37.91",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 230929,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 154777,
+ "object_name": "Cohen, Michael X [mikexcohen at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 230928,
+ "object_name": "Cohen MX (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "MATLAB for brain and cognitive scientists (Cohen 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... MATLAB for Brain and Cognitive Scientists takes readers from beginning to intermediate and advanced levels of MATLAB programming, helping them gain real expertise in applications that they will use in their work.\r\n\r\nThe book offers a mix of instructive text and rigorous explanations of MATLAB code along with programming tips and tricks. The goal is to teach the reader how to program data analyses in neuroscience and psychology. Readers will learn not only how to but also how not to program, with examples of bad code that they are invited to correct or improve. Chapters end with exercises that test and develop the skills taught in each chapter. Interviews with neuroscientists and cognitive scientists who have made significant contributions to their field using MATLAB appear throughout the book. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/230929",
+ "ver_date": "2017-07-26T10:57:54.027",
+ "ver_number": 8
+ },
+ "231105": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Tommer Argaman and David Golomb,\r\nDoes Layer 4 in the barrel cortex function as a balanced circuit when\r\nresponding to whisker movements?\r\nNeuroscience, in press."
+ },
+ "class_id": 19,
+ "created": "2017-07-30T10:29:56.95",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231105,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 231164,
+ "object_name": "Argaman, Tommer "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245799,
+ "object_name": "Whisking"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 231162,
+ "object_name": "Argaman T, Golomb D (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Conductance-based model of Layer-4 in the barrel cortex (Argaman et Golomb 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ },
+ {
+ "object_id": 182505,
+ "object_name": "Neocortex layer 4 neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Layer 4 in the mouse barrel cortex includes hundreds of inhibitory PV neurons and thousands of excitatory neurons. Despite this fact, its dynamical state is similar to a balanced state of large neuronal circuits."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231105",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tommer Argaman"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex layer 4 neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "golomb@bgu.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "David Golomb"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228597,
+ "object_name": "Barrel cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:36:47.877",
+ "ver_number": 12
+ },
+ "231185": {
+ "class_id": 19,
+ "created": "2017-08-02T07:56:49.613",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231185,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155061,
+ "object_name": "Papoutsi, Athanasia [athpapoutsi at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261389,
+ "object_name": "Park J, Papoutsi A, Ash RT, Marin MA, Poirazi P, Smirnakis SM (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Orientation preference in L23 V1 pyramidal neurons (Park et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Pyramidal neurons integrate synaptic inputs from basal and apical dendrites to generate stimulus-specific responses. It has been proposed that feed-forward inputs to basal dendrites drive a neuron\u2019s stimulus preference, while feedback inputs to apical dendrites sharpen selectivity. However, how a neuron\u2019s dendritic domains relate to its functional selectivity has not been demonstrated experimentally. We performed 2-photon dendritic micro-dissection on layer-2/3 pyramidal neurons in mouse primary visual cortex. We found that removing the apical dendritic tuft did not alter orientation-tuning. Furthermore, orientation-tuning curves were remarkably robust to the removal of basal dendrites: ablation of 2 basal dendrites was needed to cause a small shift in orientation preference, without significantly altering tuning width. Computational modeling corroborated our results and put limits on how orientation preferences among basal dendrites differ in order to reproduce the post-ablation data. In conclusion, neuronal orientation-tuning appears remarkably robust to loss of dendritic input.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231185",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex V1 L23 pyramidal neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "athpapoutsi@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Athanasia Papoutsi"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-12-02T14:19:11.94",
+ "ver_number": 9
+ },
+ "231238": {
+ "citation": {
+ "attr_id": 391,
+ "value": "1 . Rothman JS, Manis PB (2003c) The roles potassium currents play in regulating the electrical activity of ventral cochlear nucleus neurons. J Neurophysiol 89:3097-113 [PubMed]"
+ },
+ "class_id": 19,
+ "created": "2017-08-03T17:01:50.597",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231238,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 231239,
+ "object_name": "McCall, Thomas [thomas.mccall at case.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 37966,
+ "object_name": "Rothman JS, Manis PB (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "CN bushy, stellate neurons (Rothman, Manis 2003) (Brian 2)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 273,
+ "object_name": "Cochlear nucleus bushy GLU cell"
+ },
+ {
+ "object_id": 88113,
+ "object_name": "CN stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is an updated version of Romain Brette's adaptation of Rothman & Manis (2003). The model now uses Brian 2 instead of Brian 1 and can be configured to use n cells instead of a single cell. The included figure shows that Brian 2 is more efficient than Brian 1 once the number of cells exceeds 1,000."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231238",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Thomas McCall"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Brian 2"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "thomas.mccall@case.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Thomas McCall"
+ },
+ "ver_date": "2017-08-04T11:04:37.023",
+ "ver_number": 11
+ },
+ "231392": {
+ "citation": {
+ "attr_id": 391,
+ "value": "\"Self-organization of modular activity of grid cells\"; Eugenio Urdapilleta, Bailu Si, Alessandro Treves; Hippocampus 2017. DOI: 10.1002/hipo.22765"
+ },
+ "class_id": 19,
+ "created": "2017-08-07T10:48:05.78",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231392,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 231422,
+ "object_name": "Urdapilleta, Eugenio [urdapile at gmail.com]"
+ },
+ {
+ "object_id": 231423,
+ "object_name": "Si, Bailu "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 231393,
+ "object_name": "Urdapilleta E, Si B, Treves A (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Development of modular activity of grid cells (Urdapilleta et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This study explores the self-organization of modular activity of grid cells"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231392",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Eugenio Urdapilleta & Bailu Si"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "urdapile@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Eugenio Urdapilleta"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2017-08-09T11:21:09.163",
+ "ver_number": 5
+ },
+ "231416": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Cell-type\u2013specific inhibition of the dendritic plateau potential in striatal spiny projection neurons\r\nKai Du , Yu-Wei Wu , Robert Lindroos , Yu Liu , Bal\u00e1zs R\u00f3zsa , Gergely Katona , Jun B. Ding ,\r\nand Jeanette Hellgren Kotaleski , PNAS, in press"
+ },
+ "class_id": 19,
+ "created": "2017-08-09T04:57:34.677",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 112844,
+ "object_name": "I Q"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231416,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 231421,
+ "object_name": "Du, Kai [kai.du at ki.se]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235125,
+ "object_name": "Du K, Wu YW, Lindroos R, Liu Y, R\u00f3zsa B, Katona G, Ding JB, Kotaleski JH (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Specific inhibition of dendritic plateau potential in striatal projection neurons (Du et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We explored dendritic plateau potentials in a biophysically detailed SPN model. We coupled the dendritic plateaus to different types of inhibitions (dendritic fast and slow inhibitions, perisomatic inhibition from FS interneurons , etc.) We found the inhibition provides precise control over the plateau potential, and thus the spiking output of SPNs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231416",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "CaT(CaV3.3, CaV3.2),CaR,KDR, I L low thereshold"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kai Du, Karolinska Institute, kai.du@ki.se"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "slow GABAA"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kai.du@ki.se"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kai DU"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2017-08-11T07:25:34.2",
+ "ver_number": 8
+ },
+ "231427": {
+ "class_id": 19,
+ "created": "2017-08-16T12:39:04.987",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231427,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 231429,
+ "object_name": "Doron, Michael [michael.doron at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243580,
+ "object_name": "Doron M, Chindemi G, Muller E, Markram H, Segev I (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Shaping NMDA spikes by timed synaptic inhibition on L5PC (Doron et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This work (published in \"Timed synaptic inhibition shapes NMDA spikes,\r\ninfluencing local dendritic processing\r\nand global I/O properties of cortical neurons\", Doron et al, Cell Reports, 2017), examines the effect of timed inhibition over dendritic NMDA spikes on L5PC (Based on Hay et al., 2011) and CA1 cell (Based on Grunditz et al. 2008 and Golding et al. 2001)."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231427",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michael Doron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.doron@mail.huji.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michael Doron"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T12:33:14.94",
+ "ver_number": 12
+ },
+ "231814": {
+ "class_id": 19,
+ "created": "2017-08-21T13:15:02.153",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231814,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 231817,
+ "object_name": "Koulakov, Alexei [akula at cshl.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 233501,
+ "object_name": "Wilson CD, Serrano GO, Koulakov AA, Rinberg D (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Model for concentration invariant odor coding based on primacy hypothesis (Wilson et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here we\r\npropose that, in olfaction, a small and relatively stable set\r\ncomprised of the earliest activated receptors forms a code for\r\nconcentration-invariant odor identity. One prediction of this \u201cprimacy\r\ncoding\u201d scheme is that decisions based on odor identity can be made\r\nsolely using early odor-evoked neural activity. Using an optogenetic\r\nmasking paradigm, we define the sensory integration time necessary for\r\nodor identification and demonstrate that animals can use information\r\noccurring <100ms after inhalation onset to identify odors.\r\n... We\r\npropose a computational model demonstrating how such a code can be\r\nread by neural circuits of the olfactory system.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231814",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "concentration invariant o"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Koulakov, Alexei (akula@cshl.edu)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "piriform cortex neuron"
+ },
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "AMPA"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "akula@cshl.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alexei Koulakov"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 2372,
+ "object_name": "Gaseous Receptors"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249926,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:24:37.18",
+ "ver_number": 10
+ },
+ "231815": {
+ "class_id": 19,
+ "created": "2017-08-22T05:55:09.31",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231815,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262438,
+ "object_name": "Dan, Ohad [Ohad.Dan at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262436,
+ "object_name": "Dan O, Hopp E, Borst A, Segev I (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Vertical system (VS) fly cells with biophysics (Dan et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116967,
+ "object_name": "Fly lobular plate vertical system cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The fly visual system offers a unique opportunity to explore computations performed by single neurons. Two previous studies characterized, in vivo, the receptive field (RF) of the vertical system (VS) cells of the blowfly (calliphora vicina), both intracellularly in the axon, and, independently using Ca2+ imaging, in hundreds of distal dendritic branchlets. We integrated this information into detailed passive cable and compartmental models of 3D reconstructed VS cells. Within a given VS cell type, the transfer resistance (TR) from different branchlets to the axon differs substantially, suggesting that they contribute unequally to the shaping of the axonal RF. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231815",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Ohad.Dan@mail.huji.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ohad Dan"
+ },
+ "ver_date": "2020-03-08T11:17:02.027",
+ "ver_number": 8
+ },
+ "231818": {
+ "class_id": 19,
+ "created": "2017-08-22T13:01:05.837",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 185501,
+ "object_name": "Kir2 leak"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122820,
+ "object_name": "Cav2.2 CACNA1B"
+ },
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ },
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 92083,
+ "object_name": "Nav1.2 SCN2A"
+ },
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ },
+ {
+ "object_id": 185462,
+ "object_name": "Kir2.1 KCNJ2"
+ },
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122804,
+ "object_name": "Kv1.4 KCNA4"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ },
+ {
+ "object_id": 122808,
+ "object_name": "Kv3.3 KCNC3"
+ },
+ {
+ "object_id": 123580,
+ "object_name": "Kv3.4 KCNC4"
+ },
+ {
+ "object_id": 112842,
+ "object_name": "Kv4.2 KCND2"
+ },
+ {
+ "object_id": 229638,
+ "object_name": "KCa1.1 KCNMA1"
+ },
+ {
+ "object_id": 122821,
+ "object_name": "KCa2.2 KCNN2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231818,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234825,
+ "object_name": "Beining, Marcel [beining at fias.uni-frankfurt.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 155599,
+ "object_name": "Neurogenesis"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234812,
+ "object_name": "Beining M, Mongiat LA, Schwarzacher SW, Cuntz H, Jedlicka P (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "GC model (Beining et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A companion modeldb entry (NEURON only) to modeldb accession number 231862."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231818",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Beining, Marcel [marcel.beining at gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "marcel.beining@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Marcel Beining"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2018-07-11T16:57:02.553",
+ "ver_number": 6
+ },
+ "231849": {
+ "citation": {
+ "attr_id": 391,
+ "value": "G. Massobrio, S. Martinoia, P. Massobrio.\r\nEquivalent circuit of the neuro-electronic junction for signal recordings from planar and engulfed micro- nano-electrodes.\r\nunder review on IEEE Transactions on Biomedical Circuits and Systems"
+ },
+ "class_id": 19,
+ "created": "2017-08-28T08:57:08.58",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231849,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 256934,
+ "object_name": "Massobrio G, Martinoia S, Massobrio P (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231850,
+ "object_name": "HSPICE"
+ },
+ {
+ "object_id": 257024,
+ "object_name": "ngspice"
+ }
+ ]
+ },
+ "name": "The neuro-electronic junction (planar and engulfed electrodes) (Massobrio et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Models of the neuron, planar (GP\u00b5E) and mushroom-shaped (GM\u00b5E) microelectrodes, neuro-electronic junction (microelectrode-electrolyte interface, cleft effect, and protein-glycocalyx electric double layer) are presented. Then, neuronal electrical activity is simulated by HSPICE software, and analyzed as a function of the most sensitive biophysical models parameters such as the neuron-microelectrode cleft width, spreading and seal resistances, ion-channel densities, double-layer properties, and microelectrode geometries."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231849",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "HSPICE"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "paolo.massobrio@unige.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Paolo Massobrio"
+ },
+ "ver_date": "2019-05-24T18:51:03.207",
+ "ver_number": 11
+ },
+ "231859": {
+ "citation": {
+ "attr_id": 391,
+ "value": "None yet"
+ },
+ "class_id": 19,
+ "created": "2017-08-31T14:38:42.073",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231859,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 233321,
+ "object_name": "de Wiljes, O. O. [otdewiljes at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 233365,
+ "object_name": "Early evolution"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 233363,
+ "object_name": "de Wiljes OO, van Elburg RAJ, Keijzer FA (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Modelling the effects of short and random proto-neural elongations (de Wiljes et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"To understand how neurons and nervous systems first evolved, we need\r\nan account of the origins of neural elongations: why did neural\r\nelongations (axons and dendrites) first originate, such that they\r\ncould become the central component of both neurons and nervous\r\nsystems? Two contrasting conceptual accounts provide different answers\r\nto this question. Braitenberg's vehicles provide the iconic\r\nillustration of the dominant input-output (IO) view. Here, the basic\r\nrole of neural elongations is to connect sensors to effectors, both\r\nsituated at different positions within the body. For this function,\r\nneural elongations are thought of as comparatively long and specific\r\nconnections, which require an articulated body involving substantial\r\ndevelopmental processes to build. Internal coordination (IC) models\r\nstress a different function for early nervous systems. Here, the\r\ncoordination of activity across extended parts of a multicellular body\r\nis held central, in particular, for the contractions of (muscle)\r\ntissue. An IC perspective allows the hypothesis that the earliest\r\nproto-neural elongations could have been functional even when they\r\nwere initially simple, short and random connections, as long as they\r\nenhanced the patterning of contractile activity across a multicellular\r\nsurface. The present computational study provides a proof of concept\r\nthat such short and random neural elongations can play this\r\nrole. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231859",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Early evolution"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "O. O. de Wiljes"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Abstract network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "otdewiljes@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ot de Wiljes"
+ },
+ "ver_date": "2017-11-20T13:52:46.553",
+ "ver_number": 9
+ },
+ "231862": {
+ "class_id": 19,
+ "created": "2017-09-03T05:06:14.7",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 185501,
+ "object_name": "Kir2 leak"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122820,
+ "object_name": "Cav2.2 CACNA1B"
+ },
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ },
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 229638,
+ "object_name": "KCa1.1 KCNMA1"
+ },
+ {
+ "object_id": 122821,
+ "object_name": "KCa2.2 KCNN2"
+ },
+ {
+ "object_id": 185462,
+ "object_name": "Kir2.1 KCNJ2"
+ },
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122804,
+ "object_name": "Kv1.4 KCNA4"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ },
+ {
+ "object_id": 122808,
+ "object_name": "Kv3.3 KCNC3"
+ },
+ {
+ "object_id": 123580,
+ "object_name": "Kv3.4 KCNC4"
+ },
+ {
+ "object_id": 112842,
+ "object_name": "Kv4.2 KCND2"
+ },
+ {
+ "object_id": 92083,
+ "object_name": "Nav1.2 SCN2A"
+ },
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 231862,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234825,
+ "object_name": "Beining, Marcel [beining at fias.uni-frankfurt.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 155599,
+ "object_name": "Neurogenesis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234812,
+ "object_name": "Beining M, Mongiat LA, Schwarzacher SW, Cuntz H, Jedlicka P (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 258845,
+ "object_name": "T2N (web link to model)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Mature and young adult-born dentate granule cell models (T2N interface) (Beining et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "... Here, we present T2N, a powerful\r\ninterface to control NEURON with Matlab and TREES toolbox, which\r\nsupports generating models stable over a broad range of reconstructed\r\nand synthetic morphologies. We illustrate this for a novel,\r\nhighly-detailed active model of dentate granule cells (GCs)\r\nreplicating a wide palette of experiments from various labs. By\r\nimplementing known differences in ion channel composition and\r\nmorphology, our model reproduces data from mouse or rat, mature or\r\nadult-born GCs as well as pharmacological interventions and epileptic\r\nconditions.\r\n\r\n... T2N is suitable for creating robust models useful for\r\nlarge-scale networks that could lead to novel predictions. ...\"\r\nSee modeldb accession number 231818 for NEURON only code."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/231862",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Beining, Marcel [beining at fias.uni-frankfurt.de]"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "T2N"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "marcel.beining@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Marcel Beining"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2020-08-26T19:13:57.703",
+ "ver_number": 18
+ },
+ "232023": {
+ "class_id": 19,
+ "created": "2017-09-07T04:49:43.777",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232023,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153454,
+ "object_name": "Hong, Sungho [shhong at oist.jp]"
+ },
+ {
+ "object_id": 152114,
+ "object_name": "Guo, Daqing [dqguo at uestc.edu.cn]"
+ },
+ {
+ "object_id": 217983,
+ "object_name": "Raikov, Ivan [ivan.g.raikov at gmail.com]"
+ },
+ {
+ "object_id": 124065,
+ "object_name": "Publio, Rodrigo [publio at oist.jp]"
+ },
+ {
+ "object_id": 112689,
+ "object_name": "De Schutter, Erik [erik at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 232814,
+ "object_name": "Sudhakar SK, Hong S, Raikov I, Publio R, Lang C, Close T, Guo D, Negrello M, De Schutter E (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Model of the cerebellar granular network (Sudhakar et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The granular layer, which mainly consists of granule and Golgi cells, is the first stage of the cerebellar cortex and processes spatiotemporal information transmitted by mossy fiber inputs with a wide variety of firing patterns. To study its dynamics at multiple time scales in response to inputs approximating real spatiotemporal patterns, we constructed a large-scale 3D network model of the granular layer. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232023",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Winner-keep-winning"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sudhakar, Shyam Kumar [shyamk at umich.edu]\r\nClose, Tom [tom.close at monash.edu]\r\nLang, Claus [clauslang at posteo.de]\r\nNegrello, Mario [mnegrello at gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cerebellum granule cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shhong@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sungho Hong"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T13:25:04.2",
+ "ver_number": 17
+ },
+ "232074": {
+ "class_id": 19,
+ "created": "2017-09-09T15:56:12.173",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232074,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225082,
+ "object_name": "Milstein, Aaron D. [aaronmil at stanford.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 232073,
+ "object_name": "Bittner KC, Milstein AD, Grienberger C, Romani S, Magee JC (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Behavioral time scale synaptic plasticity underlies CA1 place fields (Bittner et al. 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Place fields could be produced\r\nin vivo in a single trial by potentiation of input that arrived seconds before and after complex\r\nspiking.The potentiated synaptic input was not initially coincident with action potentials or\r\ndepolarization.This rule, named behavioral timescale synaptic plasticity, abruptly modifies inputs\r\nthat were neither causal nor close in time to postsynaptic activation. ...\", \" ... To determine if the above plasticity rule could\r\nbe observed under more realistic model conditions,\r\nwe constructed and optimized a biophysically\r\ndetailed model and attempted to fully account\r\nfor the experimental data. ... \""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232074",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "A. D. Milstein"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-09-09T16:16:54.873",
+ "ver_number": 5
+ },
+ "232094": {
+ "class_id": 19,
+ "created": "2017-09-09T16:39:49.5",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232094,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 232092,
+ "object_name": "McColgan, Thomas "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 232025,
+ "object_name": "McColgan T, Liu J, Kuokkanen PT, Carr CE, Wagner H, Kempter R (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Dipolar extracellular potentials generated by axonal projections (McColgan et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52424,
+ "object_name": "Nucleus laminaris neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, we established experimentally and\r\ntheoretically that contributions of axons to EFPs can be significant. Modeling action\r\npotentials propagating along axons, we showed that EFPs were prominent in the\r\npresence of terminal zones where axons branch and terminate in close succession, as\r\nfound in many brain regions. Our models predicted a dipolar far field and a polarity\r\nreversal at the center of the terminal zone. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232094",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ },
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "ver_date": "2017-09-09T16:44:41.203",
+ "ver_number": 4
+ },
+ "232096": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Synaptic transmission optimisation predicts expression loci of long-term plasticity (to appear)"
+ },
+ "class_id": 19,
+ "created": "2017-09-11T18:34:39.71",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232096,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149959,
+ "object_name": "Costa, Rui Ponte [ruipontecosta at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 242871,
+ "object_name": "Costa RP, Padamsey Z, D'Amour JA, Emptage NJ, Froemke RC, Vogels TP (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Statistical Long-term Synaptic Plasticity (statLTSP) (Costa et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "In this paper we introduce a new statistical view of long-term synaptic plasticity, in which the postsynaptic responses are optimised towards a bound (or target). This in turn explains a wide range of experimental data."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232096",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rui.ponte.costa@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Rui Ponte Costa"
+ },
+ "ver_date": "2018-06-12T10:11:34.137",
+ "ver_number": 10
+ },
+ "232097": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Li G, Cleland TA (2017) A coupled-oscillator model of olfactory bulb gamma oscillations. PLOS Computational Biology (In press)."
+ },
+ "class_id": 19,
+ "created": "2017-09-12T16:06:09.64",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232097,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149751,
+ "object_name": "Li, Guoshi [guoshi_li at med.unc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 232098,
+ "object_name": "Li G, Cleland TA (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "2D model of olfactory bulb gamma oscillations (Li and Cleland 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a biophysical model of the olfactory bulb (OB) that contains three types of neurons: mitral cells, granule cells and periglomerular cells. The model is used to study the cellular and synaptic mechanisms of OB gamma oscillations. We concluded that OB gamma oscillations can be best modeled by the coupled oscillator architecture termed pyramidal resonance inhibition network gamma (PRING)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232097",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "guoshi_li@med.unc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Guoshi Li"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T18:37:05.073",
+ "ver_number": 6
+ },
+ "232813": {
+ "class_id": 19,
+ "created": "2017-09-17T05:57:57.89",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 88118,
+ "object_name": "I_KLT"
+ },
+ {
+ "object_id": 88117,
+ "object_name": "I_KHT"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 233511,
+ "object_name": "Kv7.4 KCNQ4"
+ },
+ {
+ "object_id": 233512,
+ "object_name": "Kvb2 KCNAB2"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232813,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 233499,
+ "object_name": "Watanabe, Takaki [wtakaki at m.u-tokyo.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237168,
+ "object_name": "Watanabe T, Shimazaki T, Oda Y (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Zebrafish Mauthner-cell model (Watanabe et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 189309,
+ "object_name": "Mauthner cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The NEURON model files encode the channel generator and firing simulator for simulating development and differentiation of the Mauthner cell (M-cell) excitability in zebrafish. The channel generator enables us to generate arbitrary Na+ and K+ channels by changing parameters of a Hodgkin-Huxley model under emulation of two-electrode voltage-clamp recordings in Xenopus oocyte system. The firing simulator simulates current-clamp recordings to generate firing patterns of the model M-cell, which are implemented with arbitrary-generated basic Na+ and K+ conductances and low-threshold K+ channels Kv7.4/KCNQ4 and sole Kv1.1 or Kv1.1 coexpressed with Kvbeta2."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232813",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Kv7.4 KCNQ4"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Takaki Watanabe"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wtakaki@m.u-tokyo.ac.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Takaki Watanabe"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2018-01-15T15:39:17.24",
+ "ver_number": 28
+ },
+ "232855": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Stinchcombe et al. Cell Reports (to appear)"
+ },
+ "class_id": 19,
+ "created": "2017-09-22T17:22:38",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232855,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234449,
+ "object_name": "Stinchcombe, Adam R [stinch at math.toronto.edu]"
+ },
+ {
+ "object_id": 234450,
+ "object_name": "Forger, Daniel B [forger at umich.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234443,
+ "object_name": "Diekman CO, Belle MD, Irwin RP, Allen CN, Piggins HD, Forger DB (2013)"
+ },
+ {
+ "object_id": 234448,
+ "object_name": "Stinchcombe AR, Mouland JW, Wong KY, Lucas RJ, Forger DB (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Electrical activity of the suprachiasmatic nuclei (Stinchcombe et al. 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A network of SCN neurons coupled though GABA synapses with a light input current."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232855",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Diekman et al. 2013"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stinch@math.toronto.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Adam Stinchcombe"
+ },
+ "ver_date": "2017-11-07T17:20:33.9",
+ "ver_number": 7
+ },
+ "232875": {
+ "class_id": 19,
+ "created": "2017-09-23T15:41:32.987",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232875,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234436,
+ "object_name": "Salimi-Badr, Armin [armin.salimibadr at aut.ac.ir]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234316,
+ "object_name": "Salimi-Badr A, Ebadzadeh MM, Darlot C (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Basal ganglia motor function and the inverse kinematics calculation (Salimi-Badr et al 2017)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The computational model to study the possible correlation between Basal Ganglia (BG) function and solving the Inverse Kinematics (IK)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232875",
+ "other_type": {
+ "attr_id": 305,
+ "value": "System-Level"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "armin.salimibadr@aut.ac.ir"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Armin Salimi-Badr"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2017-11-02T18:15:26.703",
+ "ver_number": 8
+ },
+ "232876": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Zeldenrust, F., Chameau, P., & Wadman, W. J. Spike and Burst Coding in Thalamocortical Relay Cells. Under review at PLoS Computational Biology."
+ },
+ "class_id": 19,
+ "created": "2017-09-25T08:28:29.507",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232876,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150218,
+ "object_name": "Zeldenrust, Fleur [fleurzeldenrust at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239073,
+ "object_name": "Zeldenrust F, Chameau P, Wadman WJ (2018)"
+ },
+ {
+ "object_id": 28235,
+ "object_name": "Destexhe A, Bal T, McCormick DA, Sejnowski TJ (1996)"
+ },
+ {
+ "object_id": 127386,
+ "object_name": "Huguenard JP, Mccormick DA (1994)"
+ },
+ {
+ "object_id": 3882,
+ "object_name": "Destexhe A, Rudolph M, Fellous JM, Sejnowski TJ (2001)"
+ },
+ {
+ "object_id": 83443,
+ "object_name": "Brette R, Rudolph M, Carnevale T, Hines M, Beeman D, Bower JM, Diesmann M, Morrison A, Goodman PH, Harris FC, Zirpe M, Natschl\u00e4ger T, Pecevski D, Ermentrout B, Djurfeldt M, Lansner A, Rochel O, Vieville T, Muller E, Davison AP, El Boustani S, Destexhe A (2007)"
+ },
+ {
+ "object_id": 58969,
+ "object_name": "Vogels TP, Abbott LF (2005)"
+ },
+ {
+ "object_id": 4161,
+ "object_name": "Destexhe A, Neubig M, Ulrich D, Huguenard J (1998)"
+ },
+ {
+ "object_id": 4346,
+ "object_name": "Destexhe A, Babloyantz A, Sejnowski TJ (1993)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Thalamocortical Relay cell under current clamp in high-conductance state (Zeldenrust et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Mammalian thalamocortical relay (TCR) neurons switch their firing activity between a tonic spiking and a bursting regime. In a combined experimental and computational study, we investigated the features in the input signal that single spikes and bursts in the output spike train represent and how this code is influenced by the membrane voltage state of the neuron. \r\n\r\nIdentical frozen Gaussian noise current traces were injected into TCR neurons in rat brain slices to adjust, fine-tune and validate a three-compartment TCR model cell (Destexhe et al. 1998, accession number 279). Three currents were added: an h-current (Destexhe et al. 1993,1996, accession number 3343), a high-threshold calcium current and a calcium-\r\nactivated potassium current (Huguenard & McCormick 1994, accession number 3808). \r\n\r\nThe information content carried by the various types of events in the signal as well as by the whole signal was calculated. Bursts phase-lock to and transfer information at lower frequencies than single spikes. On depolarization the neuron transits smoothly from the predominantly bursting regime to a spiking regime, in which it is more sensitive to high-frequency fluctuations. \r\n\r\nFinally, the model was used to in the more realistic \u201chigh-conductance state\u201d (Destexhe et al. 2001, accession number 8115), while being stimulated with a Poisson input (Brette et al. 2007, Vogels & Abbott 2005, accession number 83319), where fluctuations are caused by (synaptic) conductance changes instead of current injection. Under \u201cstandard\u201d conditions bursts are difficult to initiate, given the high degree of inactivation of the T-type calcium current. Strong and/or precisely timed inhibitory currents were able to remove this inactivation.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232876",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "F.Zeldenrust@neurophysiology.nl"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fleur Zeldenrust"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T13:02:12.19",
+ "ver_number": 23
+ },
+ "232913": {
+ "class_id": 19,
+ "created": "2017-09-25T17:19:33.807",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232913,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 136814,
+ "object_name": "Huys QJ, Paninski L (2009)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Smoothing of, and parameter estimation from, noisy biophysical recordings (Huys & Paninski 2009)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Sequential Monte Carlo (\u201cparticle filtering\u201d) methods, in combination with a detailed biophysical description of a cell, are used for principled, model-based smoothing of noisy recording data. We also provide an alternative formulation of smoothing where the neural nonlinearities are estimated in a non-parametric manner. Biophysically important parameters of detailed models (such as channel densities, intercompartmental conductances, input resistances, and observation noise) are inferred automatically from noisy data via expectation-maximisation. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232913",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2017-09-26T16:19:09.61",
+ "ver_number": 5
+ },
+ "232914": {
+ "citation": {
+ "attr_id": 391,
+ "value": "doi:10.1038/s41467-017-00740-z"
+ },
+ "class_id": 19,
+ "created": "2017-09-26T05:33:59.163",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232914,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 232915,
+ "object_name": "Bono, Jacopo [ j.bono13 at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 232916,
+ "object_name": "Bono J, Clopath C (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Modeling dendritic spikes and plasticity (Bono and Clopath 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Biophysical model and reduced neuron model with voltage-dependent plasticity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232914",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex L5, Neocortex L2/3"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Single neuron and network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jacopobono@hotmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jacopo Bono"
+ },
+ "ver_date": "2019-03-20T09:07:40.127",
+ "ver_number": 17
+ },
+ "232956": {
+ "citation": {
+ "attr_id": 391,
+ "value": "21781976\r\n25167790\r\n26796228"
+ },
+ "class_id": 19,
+ "created": "2017-09-28T20:07:25.623",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 232956,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 233062,
+ "object_name": "Kenny, Allanah [allanah.kenny at pg.canterbury.ac.nz]"
+ },
+ {
+ "object_id": 233063,
+ "object_name": "David, Tim "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 233057,
+ "object_name": "Farr H, David T (2011)"
+ },
+ {
+ "object_id": 233060,
+ "object_name": "Dormanns K, van Disseldorp EM, Brown RG, David T (2015)"
+ },
+ {
+ "object_id": 233061,
+ "object_name": "Dormanns K, Brown RG, David T (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A mathematical model of a neurovascular unit (Dormanns et al 2015, 2016) (Farrs & David 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 226,
+ "object_name": "NO"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here a lumped parameter numerical model of a neurovascular unit is presented, representing an intercellular communication system based on ion exchange through pumps and channels between neurons, astrocytes, smooth muscle cells, endothelial cells, and the spaces between these cells: the synaptic cleft between the neuron and astrocyte, the perivascular space between the astrocyte and SMC, and the extracellular space surrounding the cells. \r\nThe model contains various cellular and chemical pathways such as potassium, astrocytic calcium, and nitric oxide.\r\nThe model is able to simulate neurovascular coupling, the process characterised by an increase in neuronal activity followed by a rapid dilation of local blood vessels and hence increased blood supply providing oxygen and glucose to cells in need."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/232956",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Allanah Kenny\r\nTim David"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "allanah.kenny@pg.canterbury.ac.nz"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Allanah Kenny"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 2391,
+ "object_name": "Ion Receptors"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2017-09-29T10:57:36.483",
+ "ver_number": 3
+ },
+ "233396": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Brzosko Z, Zannone S, Schultz W, Clopath C, Paulsen O. Sequential neuromodulation of Hebbian\r\nplasticity offers mechanism for effective reward-based navigation. eLife. 2017;6."
+ },
+ "class_id": 19,
+ "created": "2017-10-04T10:48:57.567",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 233396,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 233400,
+ "object_name": "Zannone, Sara [s.zannone14 at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 233399,
+ "object_name": "Brzosko Z, Zannone S, Schultz W, Clopath C, Paulsen O (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Sequential neuromodulation of Hebbian plasticity in reward-based navigation (Brzosko et al 2017)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Here, we\r\ndemonstrate that sequential neuromodulation of STDP by acetylcholine and dopamine offers an\r\nefficacious model of reward-based navigation. Specifically, our experimental data in mouse\r\nhippocampal slices show that acetylcholine biases STDP toward synaptic depression, whilst\r\nsubsequent application of dopamine converts this depression into potentiation. Incorporating this\r\nbidirectional neuromodulation-enabled correlational synaptic learning rule into a computational\r\nmodel yields effective navigation toward changing reward locations, as in natural foraging\r\nbehavior. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/233396",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sara Zannone (s.zannone14@imperial.ac.uk)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Abstract Spike Response Model0 "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.zannone14@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sara Znnone"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2017-10-04T13:26:07.663",
+ "ver_number": 7
+ },
+ "233509": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Guoshi Li, Craig Henriquez and Flavio Fr\u00f6hlich (2017) Unified Thalamic Model Generates Multiple Distinct Oscillations with State-dependent Entrainment by Stimulation. PLOS Computational Biology (In press)."
+ },
+ "class_id": 19,
+ "created": "2017-10-06T15:42:53.197",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 233509,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149751,
+ "object_name": "Li, Guoshi [guoshi_li at med.unc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 233510,
+ "object_name": "Li G, Henriquez C, Fr\u00f6hlich F (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A unified thalamic model of multiple distinct oscillations (Li, Henriquez and Fr\u00f6hlich 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 140252,
+ "object_name": "Thalamus lateral geniculate nucleus interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We present a unified model of the thalamus that is capable of independently generating multiple distinct oscillations (delta, spindle, alpha and gamma oscillations) under different levels of acetylcholine (ACh) and norepinephrine (NE) modulation corresponding to different physiological conditions (deep sleep, light sleep, relaxed wakefulness and attention). The model also shows that entrainment of thalamic oscillations is state-dependent."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/233509",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "guoshi_li@med.unc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Guoshi Li"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-11-09T19:23:23.68",
+ "ver_number": 5
+ },
+ "234097": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hebbian Learning in a Random Network Captures Selectivity Properties of Prefrontal Cortex\r\nGrace W. Lindsay, Mattia Rigotti, Melissa R. Warden, Earl K. Miller and Stefano Fusi\r\nJournal of Neuroscience 6 October 2017, 1222-17; DOI: https://doi.org/10.1523/JNEUROSCI.1222-17.2017"
+ },
+ "class_id": 19,
+ "created": "2017-10-17T19:26:48.29",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 234097,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234110,
+ "object_name": "Lindsay GW, Rigotti M, Warden MR, Miller EK, Fusi S (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hebbian learning in a random network for PFC modeling (Lindsay, et al. 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Creates a random model that replicates the inputs and outputs of PFC cells during a complex task. Then executes Hebbian learning in the model and performs a set of analyses on the output. A portion of this model's analysis requires code from: https://github.com/brian-lau/highdim"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/234097",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Prefrontal Cortical Neuron"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Firing rate"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gracewlindsay@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Grace Lindsay"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2017-10-21T19:42:53.587",
+ "ver_number": 7
+ },
+ "234101": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Simulation software used in Danner SM, Shevtsova NA, Frigon A, Rybak IA.\r\nLong propriospinal neurons and gait expression in quadrupeds. eLife. submitted"
+ },
+ "class_id": 19,
+ "created": "2017-10-18T14:12:57.77",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 234101,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235164,
+ "object_name": "Danner, Simon M [simon.danner at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235161,
+ "object_name": "Danner SM, Shevtsova NA, Frigon A, Rybak IA (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spinal circuits controlling limb coordination and gaits in quadrupeds (Danner et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulation of spinal neural networks involved in the central control of interlimb coordination and speed-dependent gait expression in quadrupeds."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/234101",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "central pattern generator"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "persistent-sodium current"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Simon Danner"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "activitiy-based neuron model"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "custom simulator"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "simon.danner@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Simon Danner"
+ },
+ "ver_date": "2017-12-06T17:20:50.99",
+ "ver_number": 26
+ },
+ "234111": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Joos B., Barlow B.M., Morris C.E. (2017) Calculating the Consequences of Left-Shifted Nav Channel Activity in Sick Excitable Cells. In: . Handbook of Experimental Pharmacology. Springer, Berlin, Heidelberg https://doi.org/10.1007/164_2017_63"
+ },
+ "class_id": 19,
+ "created": "2017-10-20T14:30:58.59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 234111,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263686,
+ "object_name": "Barlow, Benjamin Stephen [BBarlow at uottawa.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234114,
+ "object_name": "Joos B, Barlow BM, Morris CE (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Calculating the consequences of left-shifted Nav channel activity in sick cells (Joos et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Two features common to diverse sick excitable cells are \u201cleaky\u201d Nav channels and bleb damage-damaged membranes. The bleb damage, we have argued, causes a channel kinetics based \u201cleakiness.\u201d Recombinant (node of Ranvier type) Nav1.6 channels voltage-clamped in mechanically-blebbed cell-attached patches undergo a damage intensity dependent kinetic change. Specifically, they experience a coupled hyperpolarizing (left) shift of the activation and inactivation processes. The biophysical observations on Nav1.6 currents formed the basis of Nav-Coupled Left Shift (Nav-CLS) theory. Node of Ranvier excitability can be modeled with Nav-CLS imposed at varying LS intensities and with varying fractions of total nodal membrane affected. Mild damage from which sick excitable cells might recover is of most interest pathologically. Accordingly, Na+/K+ ATPase (pump) activity was included in the modeling. As we described more fully in our other recent reviews, Nav-CLS in nodes with pumps proves sufficient to predict many of the pathological excitability phenomena reported for sick excitable cells. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/234111",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "BBarl039@uottawa.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Benjamin M. Barlow"
+ },
+ "ver_date": "2020-04-22T12:34:58.327",
+ "ver_number": 11
+ },
+ "234118": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Sen-Bhattacharya, B., Serrano-Gotarredona, T., Balassa, L., Bhattacharya, A., Stokes, A. B., Rowley, A., \u2026 Furber, S. (2017). A Spiking Neural Network Model of the Lateral Geniculate Nucleus on the SpiNNaker Machine. Frontiers in Neuroscience, 11, 454. http://doi.org/10.3389/fnins.2017.00454"
+ },
+ "class_id": 19,
+ "created": "2017-10-23T06:58:28.16",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 234118,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 139147,
+ "object_name": "Sen-Bhattacharya, Basabdatta [basab.sen.b at gmail.com]"
+ },
+ {
+ "object_id": 234129,
+ "object_name": "Serrano-Gotarredona T "
+ },
+ {
+ "object_id": 234130,
+ "object_name": "Balassa L "
+ },
+ {
+ "object_id": 234131,
+ "object_name": "Bhattacharya A "
+ },
+ {
+ "object_id": 234132,
+ "object_name": "Stokes AB "
+ },
+ {
+ "object_id": 234133,
+ "object_name": "Rowley A "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234126,
+ "object_name": "Sen-Bhattacharya B, Serrano-Gotarredona T, Balassa L, Bhattacharya A, Stokes AB, Rowley A, Sugiarto I, Furber S (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 234127,
+ "object_name": "SpiNNaker"
+ }
+ ]
+ },
+ "name": "A spiking neural network model of the Lateral Geniculate Nucleus (Sen-Bhattacharya et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using Izhikevich's spiking neuron models, to build a network with a biologically informed synaptic layout emulating the Lateral Geniculate Nucleus."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/234118",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "basab.sen.b@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Basabdatta Sen Bhattacharya"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-10-23T10:22:33.58",
+ "ver_number": 7
+ },
+ "234233": {
+ "class_id": 19,
+ "created": "2017-10-26T11:45:11.937",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 234233,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237602,
+ "object_name": "Knox, Andrew [knox at neurology.wisc.edu]"
+ },
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237601,
+ "object_name": "Knox AT, Glauser T, Tenney J, Lytton WW, Holland K (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Knox implementation of Destexhe 1998 spike and wave oscillation model (Knox et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...The aim of this study was to use an established thalamocortical computer model to determine how T-type calcium channels work in concert with cortical excitability to contribute to pathogenesis and treatment response in CAE.\r\n\r\nMETHODS:\r\nThe model is comprised of cortical pyramidal, cortical inhibitory, thalamocortical relay, and thalamic reticular single-compartment neurons, implemented with Hodgkin-Huxley model ion channels and connected by AMPA, GABAA , and GABAB synapses. Network behavior was simulated for different combinations of T-type calcium channel conductance, inactivation time, steady state activation/inactivation shift, and cortical GABAA conductance.\r\n\r\nRESULTS:\r\nDecreasing cortical GABAA conductance and increasing T-type calcium channel conductance converted spindle to spike and wave oscillations; smaller changes were required if both were changed in concert. In contrast, left shift of steady state voltage activation/inactivation did not lead to spike and wave oscillations, whereas right shift reduced network propensity for oscillations of any type....\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/234233",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Knox@neurology.wisc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Andrew Knox"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2018-01-29T20:01:31.697",
+ "ver_number": 12
+ },
+ "234241": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Wilmes, K. A., Schleimer, J.-H. and Schreiber, S. (2017), Spike-timing dependent inhibitory plasticity to learn a selective gating of backpropagating action potentials. Eur J Neurosci, 45: 1032\u20131043. doi:10.1111/ejn.13326"
+ },
+ "class_id": 19,
+ "created": "2017-10-29T12:15:14.373",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 234241,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234245,
+ "object_name": "Wilmes, Katharina A. [katharina.wilmes at googlemail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234243,
+ "object_name": "Wilmes KA, Schleimer JH, Schreiber S (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Spike-timing dependent inhibitory plasticity for gating bAPs (Wilmes et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Inhibition is known to influence the forward-directed flow of information within neurons. However, also regulation of backward-directed signals, such as backpropagating action potentials (bAPs), can enrich the functional repertoire of local circuits. Inhibitory\r\ncontrol of bAP spread, for example, can provide a switch for the plasticity of excitatory synapses. Although such a mechanism is\r\npossible, it requires a precise timing of inhibition to annihilate bAPs without impairment of forward-directed excitatory information flow. Here, we propose a specific learning rule for inhibitory synapses to automatically generate the correct timing to gate bAPs in pyramidal cells when embedded in a local circuit of feedforward inhibition. Based on computational modeling of multi-compartmental neurons with physiological properties, we demonstrate that a learning rule with anti-Hebbian shape can establish the\r\nrequired temporal precision. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/234241",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Pyramidal Neurons, Interneuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "katharina.wilmes@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Katharina Anna Wilmes"
+ },
+ "ver_date": "2017-11-02T18:39:28.983",
+ "ver_number": 15
+ },
+ "234313": {
+ "class_id": 19,
+ "created": "2017-11-02T04:48:22.547",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 234313,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234436,
+ "object_name": "Salimi-Badr, Armin [armin.salimibadr at aut.ac.ir]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 236374,
+ "object_name": "Salimi-Badr A, Ebadzadeh MM, Darlot C (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83572,
+ "object_name": "Simulink"
+ }
+ ]
+ },
+ "name": "Basal Ganglia motor-circuit for kinematic planning of arm movements (Salimi-Badr et al 2017)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A mathematical model of BG for kinematic planning."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/234313",
+ "other_type": {
+ "attr_id": 305,
+ "value": "System-level"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "armin.salimibadr@aut.ac.ir"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Armin Salimi-Badr"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2018-01-09T10:39:20.17",
+ "ver_number": 9
+ },
+ "234992": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Zerlaut, Y., Chemla, S., Chavane, F. et al. J Comput Neurosci (2017). https://doi.org/10.1007/s10827-017-0668-2"
+ },
+ "class_id": 19,
+ "created": "2017-11-29T10:55:44.277",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 234992,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234994,
+ "object_name": "Zerlaut Y, Chemla S, Chavane F, Destexhe A (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Mesoscopic dynamics from AdEx recurrent networks (Zerlaut et al JCNS 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We present a mean-field model of networks of Adaptive Exponential (AdEx) integrate-and-fire neurons, with conductance-based synaptic interactions. We study a network of regular-spiking (RS) excitatory neurons and fast-spiking (FS) inhibitory neurons. We use a Master Equation formalism, together with a semi-analytic approach to the transfer function of AdEx neurons to describe the average dynamics of the coupled populations. We compare the predictions of this mean-field model to simulated networks of RS-FS cells, first at the level of the spontaneous activity of the network, which is well predicted by the analytical description. Second, we investigate the response of the network to time-varying external input, and show that the mean-field model predicts the response time course of the population. Finally, to model VSDi signals, we consider a one-dimensional ring model made of interconnected RS-FS mean-field units."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/234992",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yann.zerlaut@iit.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yann Zerlaut"
+ },
+ "ver_date": "2020-04-21T08:55:57.04",
+ "ver_number": 15
+ },
+ "235002": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://link.springer.com/protocol/10.1007/978-1-4939-7321-7_17"
+ },
+ "class_id": 19,
+ "created": "2017-11-30T10:58:59.563",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235002,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 236412,
+ "object_name": "Keller AF, Bouteiller JC, Berger TW (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "name": "A computational approach/model to explore NMDA receptors functions (Keller et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nHere, we describe a general computational method\r\naiming at developing kinetic Markov-chain based models of NMDARs\r\nsubtypes capable of reproducing various experimental\r\nresults.\r\n\r\nThese models are then used to make predictions on\r\nadditional (non-obvious) properties and on their role in synaptic\r\nfunction under various physiological and pharmacological\r\nconditions.\r\n\r\n\r\nFor the purpose of this book chapter, we will focus\r\non the method used to develop a NMDAR model that includes\r\npharmacological site of action of different compounds. Notably,\r\nthis elementary model can subsequently be included in a neuron\r\nmodel (not described in detail here) to explore the impact of\r\ntheir differential distribution on synaptic functions.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235002",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2018-01-19T11:30:16.463",
+ "ver_number": 9
+ },
+ "235052": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A computational model for how the fast afterhyperpolarization paradoxically increases gain in regularly firing neurons, J. Neurophysiology (under review)\r\n\r\nD.B Jaffe, D.B.* and Brenner R.**\r\n*Department of Biology, UTSA Neurosciences Institute, University of Texas at San Antonio, One UTSA Circle, San Antonio, TX 78249, USA.\r\n**Department of Cell and Integrative Physiology, University of Texas Health Science Center at San Antonio, 7703 Floyd Curl Drive, San Antonio, TX 78229, USA."
+ },
+ "class_id": 19,
+ "created": "2017-12-04T11:03:56.343",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 235052,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 140473,
+ "object_name": "Jaffe, David B [david.jaffe at utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237472,
+ "object_name": "Jaffe DB, Brenner R (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Paradoxical effect of fAHP amplitude on gain in dentate gyrus granule cells (Jaffe & Brenner 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The afterhyperpolarization (AHP) is canonically viewed as a major factor underlying the\r\nrefractory period, serving to limit neuronal firing rate. We recently reported (Wang et al, \r\nJ. Neurophys. 116:456, 2016) that enhancing the amplitude of the fast AHP in \r\na relatively slowly firing neuron (versus fast spiking neurons), augments neuronal excitability\r\nin dentate gyrus granule neurons expressing gain-of-function BK channels. Here we present a novel, \r\nquantitative hypothesis for how varying the amplitude of the fast AHP (fAHP) can, paradoxically, \r\ninfluence a subsequent spike tens of milliseconds later."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235052",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "david.jaffe@utsa.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "David B. Jaffe"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2019-01-04T17:27:36.23",
+ "ver_number": 14
+ },
+ "235053": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMC5653655"
+ },
+ "class_id": 19,
+ "created": "2017-12-04T11:48:39.243",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235053,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235162,
+ "object_name": "Cayco Gajic, Alex [natasha.gajic at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 185463,
+ "object_name": "Pattern Separation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235057,
+ "object_name": "Cayco-Gajic NA, Clopath C, Silver RA (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Sparse connectivity is required for decorrelation, pattern separation (Cayco-Gajic et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... To investigate the structural and functional determinants of pattern separation we built models of the cerebellar input layer with spatially correlated input patterns, and systematically varied their synaptic connectivity. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235053",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "natasha.gajic@ucl.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alex Cayco Gajic"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2017-12-06T16:55:48.79",
+ "ver_number": 10
+ },
+ "235054": {
+ "class_id": 19,
+ "created": "2017-12-04T11:59:23.08",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235054,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144508,
+ "object_name": "Orio, Patricio [patricio.orio at uv.cl]"
+ },
+ {
+ "object_id": 235055,
+ "object_name": "Richard, Alexandre "
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239191,
+ "object_name": "Richard A, Orio P, Tanr\u00e9 E (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Perfect Integrate and fire with noisy adaptation or fractional noise (Richard et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Here we show that a purely Markovian integrate-and-fire (IF) model, with a noisy slow adaptation term, can generate interspike intervals (ISIs) that appear as having Long-range dependency (LRD). However a proper analysis shows that this is not the case asymptotically. For comparison, we also consider a new model of individual IF neuron with fractional (non-Markovian) noise. The correlations of its spike trains are studied and proven to have LRD, unlike classical IF models.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235054",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "fractional noise"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Alexandre Richard"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "patricio.orio@uv.cl"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Patricio Orio"
+ },
+ "ver_date": "2018-03-27T20:09:39.163",
+ "ver_number": 12
+ },
+ "235123": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://journal.frontiersin.org/article/10.3389/fnins.2017.00341/full"
+ },
+ "class_id": 19,
+ "created": "2017-12-04T18:33:35.397",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235123,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 243973,
+ "object_name": "Vannucci, Lorenzo [l.vannucci at santannapisa.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 226617,
+ "object_name": "Spindles"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243276,
+ "object_name": "Vannucci L, Falotico E, Laschi C (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 234127,
+ "object_name": "SpiNNaker"
+ }
+ ]
+ },
+ "name": "Neuromorphic muscle spindle model (Vannucci et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 243977,
+ "object_name": "Dorsal Root Ganglion cell: Spinal cord muscle spindle type Ia sensory fiber"
+ },
+ {
+ "object_id": 243978,
+ "object_name": "Dorsal Root Ganglion cell: Spinal cord muscle spindle type II sensory fiber"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A fully spike-based, biologically inspired mechanism for the translation of proprioceptive feedback."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235123",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lorenzo Vannucci"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Spinal cord muscle spindle"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "ver_date": "2018-07-18T16:18:52.547",
+ "ver_number": 7
+ },
+ "235138": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://arxiv.org/pdf/1709.06824"
+ },
+ "class_id": 19,
+ "created": "2017-12-05T11:57:20.027",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235138,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245202,
+ "object_name": "Van Pottelbergh, Tomas\r\n[tmjv2 at cam.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245201,
+ "object_name": "Van Pottelbergh T, Drion G, Sepulchre R (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ },
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Robust modulation of integrate-and-fire models (Van Pottelbergh et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ },
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"By controlling the state of neuronal populations, neuromodulators ultimately affect behavior. A key neuromodulation mechanism is the alteration of neuronal excitability via the modulation of ion channel expression. This type of neuromodulation is normally studied with conductance-based models, but those models are computationally challenging for large-scale network simulations needed in population studies. This article studies the modulation properties of the multiquadratic integrate-and-fire model, a generalization of the classical quadratic integrate-and-fire model. The model is shown to combine the computational economy of integrate-and-fire modeling and the physiological interpretability of conductance-based modeling. It is therefore a good candidate for affordable computational studies of neuromodulation in large networks.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235138",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Robustness"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Van Pottelbergh, Tomas"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Abstract multi-quadratic integrate-and-fire (MQIF)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "ver_date": "2018-09-19T11:05:07.933",
+ "ver_number": 10
+ },
+ "235320": {
+ "citation": {
+ "attr_id": 391,
+ "value": "J. Neurosci ; 10.1523/JNEUROSCI.1432-17.2017"
+ },
+ "class_id": 19,
+ "created": "2017-12-08T18:18:18.47",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235320,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235324,
+ "object_name": "Lopez-Jury, Luciana [lucianalopezjury at gmail.com]"
+ },
+ {
+ "object_id": 33801,
+ "object_name": "Canavier, CC"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 227131,
+ "object_name": "Pacemaking mechanism"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235323,
+ "object_name": "Meza RC, L\u00f3pez-Jury L, Canavier CC, Henny P (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Role of the AIS in the control of spontaneous frequency of dopaminergic neurons (Meza et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Computational modeling showed that the\r\nsize of the Axon Initial Segment (AIS), but not its position within the somatodendritic domain, is the major causal determinant of the tonic firing rate in the intact model, by virtue of the higher intrinsic frequency of the isolated AIS. Further mechanistic analysis of the relationship between neuronal morphology and firing rate showed that dopaminergic neurons function as a coupled oscillator whose frequency of discharge results from a compromise between AIS and somatodendritic oscillators."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235320",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Luciana Lopez-Jury"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lucianalopezjury@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Luciana Francisca Lopez Jury"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249926,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:25:05.01",
+ "ver_number": 10
+ },
+ "235376": {
+ "class_id": 19,
+ "created": "2017-12-11T23:49:46.203",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235376,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237547,
+ "object_name": "Gallimore, Andrew R [andrew.gallimore at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237546,
+ "object_name": "Gallimore AR, Kim T, Tanaka-Yamamoto K, De Schutter E (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Model of cerebellar parallel fiber-Purkinje cell LTD and LTP (Gallimore et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of cerebellar parallel fiber-Purkinje cell LTD and LTP implemented in Matlab Simbiology"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235376",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "andrew.gallimore@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Andrew Gallimore"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2018-01-25T17:23:55.797",
+ "ver_number": 6
+ },
+ "235377": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Journal of Computational Neuroscience https://doi.org/10.1007/s10827-017-0675-3"
+ },
+ "class_id": 19,
+ "created": "2017-12-12T11:03:40.493",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 235461,
+ "object_name": "Na+-glutamate transporter"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235377,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234452,
+ "object_name": "Terman, David [terman at math.ohio-state.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ },
+ {
+ "object_id": 167716,
+ "object_name": "Spreading depression"
+ },
+ {
+ "object_id": 235462,
+ "object_name": "Spreading depolarization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235380,
+ "object_name": "Conte C, Lee R, Sarkar M, Terman D (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "A model for recurrent spreading depolarizations (Conte et al. 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A detailed biophysical model for a neuron/astrocyte network is developed in order to explore mechanisms responsible for cortical spreading depolarizations. This includes a model for the Na+-glutamate transporter, which allows for a detailed description of reverse glutamate uptake. In particular, we consider the specific roles of elevated extracellular glutamate and K+ in the initiation, propagation and recurrence of spreading depolarizations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235377",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spreading depolarization"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Na+-glutamate transporter"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "terman.1@osu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "David Hillel Terman"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "ver_date": "2017-12-14T18:58:42.46",
+ "ver_number": 6
+ },
+ "235561": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hall et al 2017"
+ },
+ "class_id": 19,
+ "created": "2017-12-13T11:09:07.987",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235561,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235468,
+ "object_name": "Hall SP, Traub RD, Adams NE, Cunningham MO, Schofield I, Jenkins AJ, Whittington MA (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "The origin of different spike and wave-like events (Hall et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Acute In vitro models have revealed a great deal of information about\r\nmechanisms underlying many types of epileptiform activity. However,\r\nfew examples exist that shed light on spike and wave (SpW) patterns of\r\npathological activity. SpW are seen in many epilepsy syndromes, both\r\ngeneralised and focal, and manifest across the entire age\r\nspectrum. They are heterogeneous in terms of their severity, symptom\r\nburden and apparent anatomical origin (thalamic, neocortical or both),\r\nbut any relationship between this heterogeneity and underlying\r\npathology remains elusive. Here we demonstrate that physiological\r\ndelta frequency rhythms act as an effective substrate to permit\r\nmodelling of SpW of cortical origin and may help to address this\r\nissue.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235561",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roger Truab"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-12-13T11:09:57.903",
+ "ver_number": 2
+ },
+ "235768": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hall et al 2017"
+ },
+ "class_id": 19,
+ "created": "2017-12-18T17:18:50.567",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235768,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235505,
+ "object_name": "Hall S, Hunt M, Simon A, Cunnington LG, Carracedo LM, Schofield IS, Forsyth R, Traub RD, Whittington MA (2015)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Unbalanced peptidergic inhibition in superficial cortex underlies seizure activity (Hall et al 2015)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Loss of tonic neuromodulatory excitation, mediated by nicotinic acetylcholine or serotonin (5HT3A) receptors, of 5HT3-immunopositive interneurons caused an increase in amplitude and slowing of the delta rhythm until each period became the \"wave\" component of the spike and wave discharge. As with the normal delta rhythm, the wave of a spike and wave discharge originated in cortical layer 5. In contrast, the \"spike\" component of the spike and wave discharge originated from a relative failure of fast inhibition in layers 2/3-switching pyramidal cell action potential outputs from single, sparse spiking during delta rhythms to brief, intense burst spiking, phase-locked to the field spike. The mechanisms underlying this loss of superficial layer fast inhibition, and a concomitant increase in slow inhibition, appeared to be precipitated by a loss of neuropeptide Y (NPY)-mediated local circuit inhibition and a subsequent increase in vasoactive intestinal peptide (VIP)-mediated disinhibition. Blockade of NPY Y1 receptors was sufficient to generate spike and wave discharges, whereas blockade of VIP receptors almost completely abolished this form of epileptiform activity. These data suggest that aberrant, activity-dependent neuropeptide corelease can have catastrophic effects on neocortical dynamics.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235768",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roger Truab"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2017-12-19T12:07:13.227",
+ "ver_number": 9
+ },
+ "235769": {
+ "citation": {
+ "attr_id": 391,
+ "value": "28336534"
+ },
+ "class_id": 19,
+ "created": "2017-12-19T00:27:49.23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235769,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235771,
+ "object_name": "Kim, Hojeong [hojeong.kim03 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235770,
+ "object_name": "Kim H (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A model of slow motor unit (Kim, 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ },
+ {
+ "object_id": 105531,
+ "object_name": "Skeletal muscle cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Cav1.3 channels in motoneuron dendrites are actively involved during normal motor activities. To investigate the effects of the activation of motoneuron Cav1.3 channels on force production, a model motor unit was built based on best-available data. The simulation results suggest that force potentiation induced by Cav1.3 channel activation is strongly modulated not only by firing history of the motoneuron but also by length variation of the muscle as well as neuromodulation inputs from the brainstem."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235769",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kim, Hojeong [hojeong.kim03 at gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hojeong.kim03@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Hojeong Kim"
+ },
+ "ver_date": "2023-01-27T13:26:29.437",
+ "ver_number": 14
+ },
+ "235774": {
+ "biosimulations": {
+ "value": "modeldb-235774"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "The role of glutamate in neuronal ion homeostasis: A case study of spreading depolarization.\r\nPLoS Computational Biology, Oct 12 (2017), 13(10):e1005804.\r\nPMID: 29023523"
+ },
+ "class_id": 19,
+ "created": "2017-12-19T13:27:12.593",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 235774,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144977,
+ "object_name": "Ullah, Ghanim [ghanim.phy at gmail.com]"
+ },
+ {
+ "object_id": 235778,
+ "object_name": "Hubel, Niklas "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235777,
+ "object_name": "H\u00fcbel N, Hosseini-Zare MS, \u017diburkus J, Ullah G (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "The role of glutamate in neuronal ion homeostasis: spreading depolarization (Hubel et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model includes ion concentration dynamics (sodium, potassium, chloride) inside and outside the neuron, the exchange of ions with glia and blood vessels, volume dynamics of neuron, glia, and extracellular space, glutamate homeostasis involving release by neuron and uptake by both neuron and glia. Spreading depolarization is used as a case study."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/235774",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hubel, Niklas"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neuron (general)"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "AUTO"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gullah@usf.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ghanim Ullah"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2017-12-19T16:00:43.013",
+ "ver_number": 7
+ },
+ "236306": {
+ "class_id": 19,
+ "created": "2018-01-03T16:58:49.93",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 236306,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 236307,
+ "object_name": "Fountas, Zafeirios [zfountas at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 236143,
+ "object_name": "Fountas Z, Shanahan M (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ }
+ ]
+ },
+ "name": "Cortical oscillations and the basal ganglia (Fountas & Shanahan 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 182735,
+ "object_name": "Subthalamic nucleus principal GABA cell"
+ },
+ {
+ "object_id": 182591,
+ "object_name": "Globus pallidus principal GABA cell"
+ },
+ {
+ "object_id": 182544,
+ "object_name": "Substantia nigra pars reticulata principal GABA cell"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Although brain oscillations involving the basal ganglia (BG) have been\r\nthe target of extensive research, the main focus lies\r\ndisproportionally on oscillations generated within the BG circuit\r\nrather than other sources, such as cortical areas. We remedy this here\r\nby investigating the influence of various cortical frequency bands on\r\nthe intrinsic effective connectivity of the BG, as well as the role of\r\nthe latter in regulating cortical behaviour. To do this, we construct\r\na detailed neural model of the complete BG circuit based on fine-tuned\r\nspiking neurons, with both electrical and chemical synapses as well as\r\nshort-term plasticity between structures. As a measure of effective\r\nconnectivity, we estimate information transfer between nuclei by means\r\nof transfer entropy. Our model successfully reproduces firing and\r\noscillatory behaviour found in both the healthy and Parkinsonian\r\nBG. We found that, indeed, effective connectivity changes dramatically\r\nfor different cortical frequency bands and phase offsets, which are\r\nable to modulate (or even block) information flow in the three major\r\nBG pathways. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/236306",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2018-01-03T17:05:23.633",
+ "ver_number": 4
+ },
+ "236310": {
+ "class_id": 19,
+ "created": "2018-01-05T10:03:58.133",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 236310,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ },
+ {
+ "object_id": 143085,
+ "object_name": "Synaptic-input statistic"
+ },
+ {
+ "object_id": 261622,
+ "object_name": "Huntington's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 248831,
+ "object_name": "Goodliffe JW, Song H, Rubakovic A, Chang W, Medalla M, Weaver CM, Luebke JI (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Electrotonic transform and EPSCs for WT and Q175+/- spiny projection neurons (Goodliffe et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model achieves electrotonic transform and computes mean inward and outward attenuation from 0 to 500 Hz input; and randomly activates synapses along dendrites to simulate AMPAR mediated EPSCs.\r\nFor electrotonic analysis, in Elec folder, the entry file is MSNelec_transform.hoc. \r\nFor EPSC simulation, in Syn folder, the entry file is randomepsc.hoc. Run read_EPSCsims_mdb_alone.m next with the simulated parameter values specified to compute the mean EPSC."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/236310",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hsong1@fandm.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Hanbing Song, Christina Weaver"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2020-01-22T11:55:07.203",
+ "ver_number": 9
+ },
+ "236429": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://academic.oup.com/cercor/article/doi/10.1093/cercor/bhx226/4159219/Comprehensive-Morpho-Electrotonic-Analysis-Shows-2"
+ },
+ "class_id": 19,
+ "created": "2018-01-09T16:13:42.193",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 236429,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206286,
+ "object_name": "Eyal, Guy [guy.eyal at mail.huji.ac.il]"
+ },
+ {
+ "object_id": 244923,
+ "object_name": "Deitcher, Yair [yair.deitcher at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243612,
+ "object_name": "Deitcher Y, Eyal G, Kanari L, Verhoog MB, Atenekeng Kahou GA, Mansvelder HD, de Kock CPJ, Segev I (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "2 Distinct Classes of L2 and L3 Pyramidal Neurons in Human Temporal Cortex (Deitcher et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"There have been few quantitative characterizations of the\r\nmorphological, biophysical, and cable properties of neurons in the\r\nhuman neocortex. We employed feature-based statistical methods on a\r\nrare data set of 60 3D reconstructed pyramidal neurons from L2 and L3\r\nin the human temporal cortex (HL2/L3 PCs) removed after brain\r\nsurgery. Of these cells, 25 neurons were also characterized\r\nphysiologically. Thirty-two morphological features were analyzed\r\n(e.g., dendritic surface area, 36 333 \u00b1 18 157 \u00b5m2; number of basal\r\ntrees, 5.55 \u00b1 1.47; dendritic diameter, 0.76 \u00b1 0.28 \u00b5m).\r\n\r\n\r\n...\r\nA novel descriptor for apical dendritic\r\ntopology yielded 2 distinct classes, termed hereby as \u201cslim-tufted\u201d\r\nand \u201cprofuse-tufted\u201d HL2/L3 PCs; the latter class tends to fire at\r\nhigher rates. Thus, our morpho-electrotonic analysis shows 2 distinct\r\nclasses of HL2/L3 PCs.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/236429",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-09-13T14:13:48.517",
+ "ver_number": 16
+ },
+ "236439": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://dev.biologists.org/content/144/19/3465"
+ },
+ "class_id": 19,
+ "created": "2018-01-10T13:36:10.61",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 236439,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 236519,
+ "object_name": "Boareto, Marcelo [marcelo.boareto at bsse.ethz.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 155599,
+ "object_name": "Neurogenesis"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 236442,
+ "object_name": "Boareto M, Iber D, Taylor V (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Differential interactions between Notch and ID factors control neurogenesis (Boareto et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"During embryonic and adult neurogenesis, neural stem cells (NSCs)\r\ngenerate the correct number and types of neurons in a temporospatial\r\nfashion. Control of NSC activity and fate is crucial for brain\r\nformation and homeostasis. Neurogenesis in the embryonic and adult\r\nbrain differ considerably, but Notch signaling and inhibitor of\r\nDNA-binding (ID) factors are pivotal in both. Notch and ID factors\r\nregulate NSC maintenance; however, it has been difficult to evaluate\r\nhow these pathways potentially interact. Here, we combined\r\nmathematical modeling with analysis of single-cell transcriptomic data\r\nto elucidate unforeseen interactions between the Notch and ID factor\r\npathways. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/236439",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "ver_date": "2018-01-10T17:41:55.46",
+ "ver_number": 7
+ },
+ "236446": {
+ "class_id": 19,
+ "created": "2018-01-10T14:43:19.433",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 236446,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 236445,
+ "object_name": "Evans, Benjamin D [benjamin.evans at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 236444,
+ "object_name": "Evans BD, Jarvis S, Schultz SR, Nikolic K (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 236518,
+ "object_name": "Brian 2 (web link to model)"
+ }
+ ]
+ },
+ "name": "PyRhO: A multiscale optogenetics simulation platform (Evans et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52426,
+ "object_name": "Squid axon"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we present an integrated suite of open-source, multi-scale\r\ncomputational tools called PyRhO. The purpose of developing PyRhO is\r\nthree-fold: (i) to characterize new (and existing) opsins by\r\nautomatically fitting a minimal set of experimental data to three-,\r\nfour-, or six-state kinetic models, (ii) to simulate these models at\r\nthe channel, neuron and network levels, and (iii) provide functional\r\ninsights through model selection and virtual experiments in\r\nsilico. The module is written in Python with an additional\r\nIPython/Jupyter notebook based GUI, allowing models to be fit,\r\nsimulations to be run and results to be shared through simply\r\ninteracting with a webpage. The seamless integration of model fitting\r\nalgorithms with simulation environments (including NEURON and Brian2)\r\nfor these virtual opsins will enable neuroscientists to gain a\r\ncomprehensive understanding of their behavior and rapidly identify the\r\nmost suitable variant for application in a particular biological\r\nsystem. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/236446",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 222,
+ "object_name": "Opsins"
+ }
+ ]
+ },
+ "ver_date": "2018-01-10T16:01:17.31",
+ "ver_number": 4
+ },
+ "237160": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://search.proquest.com/openview/59a7d10cf74f679c549d547f2cde66b3/1?pq-origsite=gscholar"
+ },
+ "class_id": 19,
+ "created": "2018-01-11T15:44:03.673",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237160,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237161,
+ "object_name": "Stockton, David B [david.stockton at utsa.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 189732,
+ "object_name": "Stockton DB, Santamaria F (2015)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 154350,
+ "object_name": "NeuroML (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "NeuroManager: a workflow analysis based simulation management engine (Stockton & Santamaria 2015)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We developed NeuroManager, an object-oriented simulation management\r\nsoftware engine for computational neuroscience. NeuroManager automates\r\nthe workflow of simulation job submissions when using heterogeneous\r\ncomputational resources, simulators, and simulation tasks. The\r\nobject-oriented approach (1) provides flexibility to adapt to a\r\nvariety of neuroscience simulators, (2) simplifies the use of\r\nheterogeneous computational resources, from desktops to super computer\r\nclusters, and (3) improves tracking of simulator/simulation\r\nevolution. We implemented NeuroManager in MATLAB, a widely used\r\nengineering and scientific language, for its signal and image\r\nprocessing tools, prevalence in electrophysiology analysis, and\r\nincreasing use in college Biology education. To design and develop\r\nNeuroManager we analyzed the workflow of simulation submission for a\r\nvariety of simulators, operating systems, and computational resources,\r\nincluding the handling of input parameters, data, models, results, and\r\nanalyses. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237160",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "ver_date": "2018-01-11T16:14:54.057",
+ "ver_number": 6
+ },
+ "237323": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://uwspace.uwaterloo.ca/bitstream/handle/10012/12393/Duggins_Peter.pdf?sequence=8"
+ },
+ "class_id": 19,
+ "created": "2018-01-17T14:48:24.793",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237323,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237324,
+ "object_name": "Duggins, Peter [psipeter at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237274,
+ "object_name": "Duggins P, Stewart TC, Choo X, Eliasmith C (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Effects of Guanfacine and Phenylephrine on a model of working memory (Duggins et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We use a spiking neural network model of working memory (WM) capable of performing the spatial delayed response task (DRT) to investigate two drugs that affect WM: guanfacine (GFC) and phenylephrine (PHE). In this model, the loss of information over time results from changes in the spiking neural activity through recurrent connections. We reproduce the standard forgetting curve and then show that this curve changes in the presence of GFC and PHE, whose application is simulated by manipulating functional, neural, and biophysical properties of the model. ... We compare our model to both electrophysiological data from neurons in monkey dorsolateral prefrontal cortex and to behavioral evidence from monkeys performing the DRT.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237323",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2018-01-18T10:14:07.91",
+ "ver_number": 8
+ },
+ "237326": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.nature.com/neuro/journal/vaop/ncurrent/full/nn.4582.html"
+ },
+ "class_id": 19,
+ "created": "2018-01-18T10:38:18.607",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237326,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 95963,
+ "object_name": "Schmidt-Hieber, Christoph [c.schmidt-hieber at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237329,
+ "object_name": "Schmidt-Hieber C, Toleikyte G, Aitchison L, Roth A, Clark BA, Branco T, H\u00e4usser M (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 237342,
+ "object_name": "Brian (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Active dendritic integration in robust and precise grid cell firing (Schmidt-Hieber et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Whether active dendrites contribute to the generation of the\r\ndual temporal and rate codes characteristic of grid cell output is\r\nunknown. We show that dendrites of medial entorhinal cortex neurons\r\nare highly excitable and exhibit a supralinear input\u2013output function\r\nin vitro, while in vivo recordings reveal membrane potential\r\nsignatures consistent with recruitment of active dendritic\r\nconductances. By incorporating these nonlinear dynamics into grid cell\r\nmodels, we show that they can sharpen the precision of the temporal\r\ncode and enhance the robustness of the rate code, thereby supporting a\r\nstable, accurate representation of space under varying environmental\r\nconditions. Our results suggest that active dendrites may therefore\r\nconstitute a key cellular mechanism for ensuring reliable spatial\r\nnavigation.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237326",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-01-18T11:57:29.987",
+ "ver_number": 8
+ },
+ "237348": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.sciencedirect.com/science/article/pii/S1388245717304728"
+ },
+ "class_id": 19,
+ "created": "2018-01-19T12:50:14.793",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237348,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237349,
+ "object_name": "Ruijter, Barry J [b.j.ruijter at utwente.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237347,
+ "object_name": "Ruijter BJ, Hofmeijer J, Meijer HGE, van Putten MJAM (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Synaptic damage underlies EEG abnormalities in postanoxic encephalopathy (Ruijter et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In postanoxic coma, EEG patterns indicate the severity of encephalopathy and typically evolve in time. We aim to improve the understanding of pathophysiological mechanisms underlying these EEG abnormalities.\r\n...\r\nWe used a mean field model comprising excitatory and inhibitory neurons, local synaptic connections, and input from thalamic afferents. Anoxic damage is modeled as aggravated short-term synaptic depression, with gradual recovery over many hours. Additionally, excitatory neurotransmission is potentiated, scaling with the severity of anoxic encephalopathy. Simulations were compared with continuous EEG recordings of 155 comatose patients after cardiac arrest. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237348",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2018-01-19T14:12:03.92",
+ "ver_number": 4
+ },
+ "237466": {
+ "citation": {
+ "attr_id": 391,
+ "value": "28816645"
+ },
+ "class_id": 19,
+ "created": "2018-01-22T08:21:09.81",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237466,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237467,
+ "object_name": "Sasidharakurup, Hemalatha [hemalathas at am.amrita.edu]"
+ },
+ {
+ "object_id": 116853,
+ "object_name": "Diwakar, Shyam [shyam at amrita.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 236790,
+ "object_name": "Sasidharakurup H, Melethadathil N, Nair B, Diwakar S (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 237011,
+ "object_name": "CellDesigner"
+ }
+ ]
+ },
+ "name": "A systems model of Parkinson\u2019s disease using biochemical systems theory (Sasidharakurup et al. 2017)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Major pathways involving in Parkinson's disease (PD) such as alphasynuclein aggregation, dopamine \r\nsynthesis, lewy body formation, tau phosphorylation, parkin, and apoptosis were modeled \r\nusing stochastic differential equations. Pathways were modeled and simulated using the \r\nbiochemical pathway visualization program CellDesigner, a modeling tool for gene-regulatory \r\nand biochemical networks that support graphical notation and listing of symbols. The model allows \r\na qualitative analysis of PD and a key signalling pathways for evaluating PD treatment conditions \r\nrelating pathophysiology to molecular concentration changes recorded in experiments."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237466",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sasidharakurup, Hemalatha [hemalathas@am.amrita.edu]"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Cell Designer"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Biochemical SystemsTheory"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shyam@amrita.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shyam Diwakar"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2018-01-22T10:32:11.073",
+ "ver_number": 5
+ },
+ "237469": {
+ "class_id": 19,
+ "created": "2018-01-24T07:37:26.933",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122811,
+ "object_name": "Cav3.3 CACNA1I"
+ },
+ {
+ "object_id": 226057,
+ "object_name": "HCN1"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ },
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 247185,
+ "object_name": "PMCA ATP2B2"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237469,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247974,
+ "object_name": "M\u00e4ki-Marttunen T, Krull F, Bettella F, Hagen E, N\u00e6ss S, Ness TV, Moberget T, Elvs\u00e5shagen T, Metzner C, Devor A, Edwards AG, Fyhn M, Djurovic S, Dale AM, Andreassen OA, Einevoll GT (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 144398,
+ "object_name": "LFPy"
+ }
+ ]
+ },
+ "name": "SCZ-associated variant effects on L5 pyr cell NN activity and delta osc. (Maki-Marttunen et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" \u2026 Here, using computational modeling,\r\nwe show that a common biomarker of schizophrenia, namely, an increase in delta-oscillation power, may be a direct\r\nconsequence of altered expression or kinetics of voltage-gated ion channels or calcium transporters. Our model of a circuit\r\nof layer V pyramidal cells highlights multiple types of schizophrenia-related variants that contribute to altered dynamics in\r\nthe delta frequency band. Moreover, our model predicts that the same membrane mechanisms that increase the layer V\r\npyramidal cell network gain and response to delta-frequency oscillations may also cause a decit in a single-cell correlate of\r\nthe prepulse inhibition, which is a behavioral biomarker highly associated with schizophrenia.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237469",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "PMCA ATP2B2"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex layer V pyramidal cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tuomomm@uio.no"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tuomo Maki-Marttunen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-10-10T17:25:47.307",
+ "ver_number": 15
+ },
+ "237555": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Detailed Dendritic Excitatory/Inhibitory Balance through Heterosynaptic Spike-Timing-Dependent Plasticity.\r\nHiratani N, Fukai T"
+ },
+ "class_id": 19,
+ "created": "2018-01-26T13:52:20.563",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237555,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237554,
+ "object_name": "Hiratani,Naoki [N.Hiratani at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237553,
+ "object_name": "Hiratani N, Fukai T (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Heterosynaptic Spike-Timing-Dependent Plasticity (Hiratani & Fukai 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The balance between excitatory and inhibitory inputs is a key feature of cortical dynamics. Such a balance is arguably preserved in dendritic branches, yet its underlying mechanism and functional roles remain unknown. In this study, we developed computational models of heterosynaptic spike-timing-dependent plasticity (STDP) to show that the excitatory/inhibitory balance in dendritic branches is robustly achieved through heterosynaptic interactions between excitatory and inhibitory synapses. The model reproduces key features of experimental heterosynaptic STDP well, and provides analytical insights. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237555",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Naoki Hiratani"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2018-02-13T16:47:28.76",
+ "ver_number": 3
+ },
+ "237594": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Singh, C., & Levy, W. B. (2017). A consensus layer V pyramidal neuron can sustain interpulse-interval coding. PloS one, 12(7), e0180839."
+ },
+ "class_id": 19,
+ "created": "2018-01-28T21:49:44.297",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237594,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237603,
+ "object_name": "Singh, Chandan [chandan_singh at berkeley.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237597,
+ "object_name": "Singh C, Levy WB (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Stochastic layer V pyramidal neuron: interpulse interval coding and noise (Singh & Levy 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Layer V pyramidal neuron with stochastic Na channels. Supports evidence for interpulse interval coding and has very detailed AIS with Nav1.2 and Nav1.6 channels."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237594",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex layer V pyramidal neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "chandan_singh@berkeley.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Chandan Singh"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-10-10T17:25:17.197",
+ "ver_number": 7
+ },
+ "237595": {
+ "class_id": 19,
+ "created": "2018-01-29T03:43:49.507",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237595,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258240,
+ "object_name": "Tzilivaki, Alexandra [alexandra.tzilivaki at charite.de]"
+ },
+ {
+ "object_id": 206278,
+ "object_name": "Kastellakis, George [gkastel at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258239,
+ "object_name": "Tzilivaki A, Kastellakis G, Poirazi P (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Fast Spiking Basket cells (Tzilivaki et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 154093,
+ "object_name": "Hippocampus CA3 interneuron basket GABA cell"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Interneurons are critical for the proper functioning of neural circuits. While often morphologically complex, dendritic integration and its role in neuronal output have been ignored for decades, treating interneurons as linear point neurons. Exciting new findings suggest that interneuron dendrites support complex, nonlinear computations: sublinear integration of EPSPs in the cerebellum, coupled to supralinear calcium accumulations and supralinear voltage integration in the hippocampus. These findings challenge the point neuron dogma and call for a new theory of interneuron arithmetic. Using detailed, biophysically constrained models, we predict that dendrites of FS basket cells in both hippocampus and mPFC come in two flavors: supralinear, supporting local sodium spikes within large-volume branches and sublinear, in small-volume branches. Synaptic activation of varying sets of these dendrites leads to somatic firing variability that cannot be explained by the point neuron reduction. Instead, a 2-stage Artificial Neural Network (ANN), with both sub- and supralinear hidden nodes, captures most of the variance. We propose that FS basket cells have substantially expanded computational capabilities sub-served by their non-linear dendrites and act as a 2-layer ANN.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237595",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Artificial Neural Network"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tzilivaki, Alexandra [alexandra.tzilivaki@charite.de]\r\nKastellakis, George [gkastel@gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Multi-compartmental biophysical models"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "aletzil10@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alexandra Tzilivaki"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2019-07-29T14:14:19.353",
+ "ver_number": 23
+ },
+ "237604": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Kenny, A., Plank, M. J., & David, T. (2018). The role of astrocytic calcium and TRPV4 channels in neurovascular coupling. Journal of Computational Neuroscience, 44(1), 97\u2013114. http://doi.org/10.1007/s10827-017-0671-7\r\n\r\nMathias, E. J., Plank, M. J., & David, T. (2017). A model of neurovascular coupling and the BOLD response: PART I. Computer Methods in Biomechanics and Biomedical Engineering, 20(5), 508\u2013518. http://doi.org/10.1080/10255842.2016.1255732"
+ },
+ "class_id": 19,
+ "created": "2018-01-29T19:21:07.6",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237604,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 233062,
+ "object_name": "Kenny, Allanah [allanah.kenny at pg.canterbury.ac.nz]"
+ },
+ {
+ "object_id": 237609,
+ "object_name": "Mathias, Elshin "
+ },
+ {
+ "object_id": 237610,
+ "object_name": "Dormanns, Katharina "
+ },
+ {
+ "object_id": 233063,
+ "object_name": "David, Tim "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237608,
+ "object_name": "Mathias EJ, Plank MJ, David T (2017)"
+ },
+ {
+ "object_id": 237606,
+ "object_name": "Kenny A, Plank MJ, David T (2018)"
+ },
+ {
+ "object_id": 233061,
+ "object_name": "Dormanns K, Brown RG, David T (2016)"
+ },
+ {
+ "object_id": 233060,
+ "object_name": "Dormanns K, van Disseldorp EM, Brown RG, David T (2015)"
+ },
+ {
+ "object_id": 233057,
+ "object_name": "Farr H, David T (2011)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A model of neurovascular coupling and the BOLD response (Mathias et al 2017, Kenny et al 2018)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 226,
+ "object_name": "NO"
+ },
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here a lumped parameter numerical model of a neurovascular unit is presented, representing an intercellular communication system based on ion exchange through pumps and channels between neurons, astrocytes, smooth muscle cells, endothelial cells, and the spaces between these cells: the synaptic cleft between the neuron and astrocyte, the perivascular space between the astrocyte and SMC, and the extracellular space surrounding the cells. \r\nThe model contains various cellular and chemical pathways such as potassium, astrocytic calcium, and nitric oxide. \r\nThe model is able to simulate neurovascular coupling, the process characterised by an increase in neuronal activity followed by a rapid dilation of local blood vessels and hence increased blood supply providing oxygen and glucose to cells in need. \r\nThe model also incorporates the BOLD response."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237604",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "allanah.kenny@pg.canterbury.ac.nz"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Allanah Kenny"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-01-30T17:12:08.597",
+ "ver_number": 6
+ },
+ "237653": {
+ "citation": {
+ "attr_id": 391,
+ "value": "doi: 10.3389/fncir.2018.00003"
+ },
+ "class_id": 19,
+ "created": "2018-01-30T14:30:41.757",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "icg_channel_details": {
+ "attr_id": 640,
+ "value": [
+ {
+ "object_id": 237654,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237655,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237656,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237657,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237658,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237659,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237660,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237661,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237662,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237663,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237664,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237665,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237666,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237667,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237668,
+ "object_name": "ICG Detail_237653"
+ },
+ {
+ "object_id": 237669,
+ "object_name": "ICG Detail_237653"
+ }
+ ]
+ },
+ "id": 237653,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237671,
+ "object_name": "Lindroos, Robert [robert.lindroos at ki.se]"
+ },
+ {
+ "object_id": 231421,
+ "object_name": "Du, Kai [kai.du at ki.se]"
+ },
+ {
+ "object_id": 238005,
+ "object_name": "Keller, Daniel "
+ },
+ {
+ "object_id": 151436,
+ "object_name": "Kozlov, Alexander [akozlov at nada.kth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 225300,
+ "object_name": "Electrical-chemical"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237672,
+ "object_name": "Lindroos R, Dorst MC, Du K, Filipovic M, Keller D, Ketzef M, Kozlov AK, Kumar A, Lindahl M, Nair AG, P\u00e9rez-Fern\u00e1ndez J, Grillner S, Silberberg G, Hellgren Kotaleski J (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Striatal D1R medium spiny neuron, including a subcellular DA cascade (Lindroos et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We are investigating how dopaminergic modulation of single channels can be combined to make the D1R possitive MSN more excitable. We also connect multiple channels to substrates of a dopamine induced subcellular cascade to highlight that the classical pathway is too slow to explain DA induced kinetics in the subsecond range (Howe and Dombeck, 2016. doi: 10.1038/nature18942)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237653",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Lindroos, Robert [robert.lindroos at ki.se]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "robert.lindroos@ki.se"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Robert Lindroos"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2023-02-10T10:54:25.91",
+ "ver_number": 15
+ },
+ "237685": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Ausborn J et al 2017"
+ },
+ "class_id": 19,
+ "created": "2018-02-01T13:48:29.44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237685,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235171,
+ "object_name": "Ausborn J, Snyder AC, Shevtsova NA, Rybak IA, Rubin JE (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 237684,
+ "object_name": "NSM (web link to model)"
+ }
+ ]
+ },
+ "name": "State-dependent rhythmogenesis in a half-center locomotor CPG (Ausborn et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The spinal locomotor central pattern generator (CPG) generates\r\nrhythmic activity with alternating flexion and extension phases. This\r\nrhythmic pattern is likely to result from inhibitory interactions\r\nbetween neural populations representing flexor and extensor\r\nhalf-centers. However, it is unclear whether the flexor-extensor CPG\r\nhas a quasi-symmetric organization with both half-centers critically\r\ninvolved in rhythm generation, features an asymmetric organization\r\nwith flexor-driven rhythmogenesis, or comprises a pair of\r\nintrinsically rhythmic half-centers. There are experimental data that\r\nsupport each of the above concepts but appear to be inconsistent with\r\nthe others. In this theoretical/modeling study, we present and analyze\r\na CPG model architecture that can operate in different regimes\r\nconsistent with the above three concepts depending on conditions,\r\nwhich are defined by external excitatory drives to CPG\r\nhalf-centers. We show that control of frequency and phase durations\r\nwithin each regime depends on network dynamics, defined by the\r\nregime-dependent expression of the half-centers' intrinsic rhythmic\r\ncapabilities and the operating phase transition mechanisms (escape\r\nvs. release). Our study suggests state dependency in locomotor CPG\r\noperation and proposes explanations for seemingly contradictory\r\nexperimental data.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237685",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-06-24T12:35:20.147",
+ "ver_number": 6
+ },
+ "237727": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 29387993"
+ },
+ "class_id": 19,
+ "created": "2018-02-04T19:54:23.783",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237727,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 238732,
+ "object_name": "Hoshino, Osamu [osamu.hoshino.507 at vc.ibaraki.ac.jp]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237731,
+ "object_name": "Hoshino O, Zheng M, Watanabe K (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Perceptual judgments via sensory-motor interaction assisted by cortical GABA (Hoshino et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 230188,
+ "object_name": "Neocortex M1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 230198,
+ "object_name": "Neocortex U1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Recurrent input to sensory cortex, via long-range reciprocal projections between motor and sensory cortices, is essential\r\nfor accurate perceptual judgments. GABA levels in sensory cortices correlate with perceptual performance. We simulated\r\na neuron-astrocyte network model to investigate how top-down, feedback signaling from a motor network (Nmot) to a\r\nsensory network (Nsen) affects perceptual judgments in association with ambient (extracellular) GABA levels. In the Nsen,\r\nastrocytic transporters modulated ambient GABA levels around pyramidal cells. A simple perceptual task was implemented:\r\ndetection of a feature stimulus presented to the Nsen. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237727",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "osamu.hoshino.507@vc.ibaraki.ac.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Osamu Hoshino"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2018-02-16T14:42:15.6",
+ "ver_number": 11
+ },
+ "237728": {
+ "class_id": 19,
+ "created": "2018-02-04T20:48:22.73",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 237728,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 238924,
+ "object_name": "Bloss EB, Cembrowski MS, Karsh B, Colonell J, Fetter RD, Spruston N (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Single excitatory axons form clustered synapses onto CA1 pyramidal cell dendrites (Bloss et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here we show that single presynaptic axons form multiple, spatially clustered inputs onto the distal, but not proximal, dendrites of CA1 pyramidal neurons. These compound connections exhibit ultrastructural features indicative of strong synapses and occur much more commonly in entorhinal than in thalamic afferents. Computational simulations revealed that compound connections depolarize dendrites in a biophysically efficient manner, owing to their inherent spatiotemporal clustering. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/237728",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cembrowskim@janelia.hhmi.org"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mark Cembrowski"
+ },
+ "ver_date": "2018-02-26T10:34:41.287",
+ "ver_number": 6
+ },
+ "238332": {
+ "class_id": 19,
+ "created": "2018-02-09T12:56:55.4",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238332,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239343,
+ "object_name": "Ferrario, Andrea [andrea.ferrario at plymouth.ac.uk]"
+ },
+ {
+ "object_id": 79305,
+ "object_name": "Borisyuk, Roman [rborisyuk at plymouth.ac.uk]"
+ },
+ {
+ "object_id": 239344,
+ "object_name": "Merrison-Hort, Robert "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239500,
+ "object_name": "Ferrario A, Merrison-Hort R, Soffe SR, Borisyuk R (2018)"
+ },
+ {
+ "object_id": 238336,
+ "object_name": "Roberts A, Conte D, Hull M, Merrison-Hort R, al Azad AK, Buhl E, Borisyuk R, Soffe SR (2014)"
+ },
+ {
+ "object_id": 239273,
+ "object_name": "Borisyuk R, Al Azad AK, Conte D, Roberts A, Soffe SR (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Model of the Xenopus tadpole swimming spinal network (Roberts et al. 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a NEURON-python and MATLAB simulation code for generating anatomical or probabilistic connectivity and simulating the neuronal dynamics of the neuronal network controlling swimming in Xenopus tadpoles. For more details about this model, see Ferrario et al, 2018, eLife and Roberts et al, 2014, J of Neurosci"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238332",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "andrea.ferrario@plymouth.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Andrea Ferrario"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2018-04-10T14:27:07.403",
+ "ver_number": 11
+ },
+ "238338": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Myung J, Schmal C, Hong S, Tsukizawa Y, Rose P, Zhang Y, Holtzman MJ, De Schutter E, Herzel H (2018) The Choroid Plexus is an Important Circadian Clock Component. Nat Commun, in press."
+ },
+ "class_id": 19,
+ "created": "2018-02-10T06:19:09.947",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238338,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153454,
+ "object_name": "Hong, Sungho [shhong at oist.jp]"
+ },
+ {
+ "object_id": 238345,
+ "object_name": "Schmal, Christoph "
+ },
+ {
+ "object_id": 238346,
+ "object_name": "Myung, Jihwan "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249013,
+ "object_name": "Myung J, Schmal C, Hong S, Tsukizawa Y, Rose P, Zhang Y, Holtzman MJ, De Schutter E, Herzel H, Bordyugov G, Takumi T (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 143722,
+ "object_name": "Mathematica"
+ }
+ ]
+ },
+ "name": "Synchronized oscillations of clock gene expression in the choroid plexus (Myung et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Our model simulates synchronized rhythms in the clock gene expression found in the choroid plexus. These synchronized oscillations, primarily mediated by gap junctions, showed interesting relationships between their amplitude, oscillation frequency, and coupling strength (gap junction density) in our experimental data. The model is based on coupled Poincar\u00e9 oscillators and replicates this phenomenon via a non-zero \"twist\" in each cell."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238338",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Circadian rhythm"
+ },
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Clock, Bmal, Per"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Schmal, Christoph\r\nMyung, Jihwan"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Abstract Poincar\u00e9 oscillator cell"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Oscillator network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shhong@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sungho Hong"
+ },
+ "ver_date": "2018-03-13T00:30:03.017",
+ "ver_number": 22
+ },
+ "238347": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Eyal et al 2018, in preparation"
+ },
+ "class_id": 19,
+ "created": "2018-02-12T13:13:52.077",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238347,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206286,
+ "object_name": "Eyal, Guy [guy.eyal at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243596,
+ "object_name": "Eyal G, Verhoog MB, Testa-Silva G, Deitcher Y, Benavides-Piccione R, DeFelipe J, de Kock CPJ, Mansvelder HD, Segev I (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Comprehensive models of human cortical pyramidal neurons (Eyal et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We present detailed models of pyramidal cells from human neocortex, including models on their excitatory synapses, dendritic spines, dendritic NMDA- and somatic/axonal Na+ spikes that provided new insights into signal processing and computational capabilities of these principal cells. Six human layer 2 and layer 3 pyramidal cells (HL2/L3 PCs) were modeled, integrating detailed anatomical and physiological data from both fresh and postmortem tissues from human temporal cortex. The models predicted particularly large AMPA- and NMDA- conductances per synaptic contact (0.88 nS and 1.31nS, respectively) and a steep dependence of the NMDA-conductance on voltage...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238347",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex L2/3 pyramidal cells"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "guy.eyal@mail.huji.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Guy Eyal"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-10-10T17:24:33.91",
+ "ver_number": 13
+ },
+ "238449": {
+ "class_id": 19,
+ "created": "2018-02-13T15:54:09.1",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238449,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 238450,
+ "object_name": "Morschel, Konstantin "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 238331,
+ "object_name": "M\u00f6rschel K, Breit M, Queisser G (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Generating neuron geometries for detailed 3D simulations using AnaMorph (Morschel et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Generating realistic and complex computational domains for numerical simulations is often a challenging task. In neuroscientific research, more and more one-dimensional morphology data is becoming publicly available through databases. This data, however, only contains point and diameter information not suitable for detailed three-dimensional simulations. In this paper, we present a novel framework, AnaMorph, that automatically generates water-tight surface meshes from one-dimensional point-diameter files. These surface triangulations can be used to simulate the electrical and biochemical behavior of the underlying cell. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238449",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-02-13T16:31:57.38",
+ "ver_number": 4
+ },
+ "238892": {
+ "class_id": 19,
+ "created": "2018-02-23T10:49:22.697",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238892,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247215,
+ "object_name": "Newton, Adam J H [adam.newton at yale.edu]"
+ },
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247211,
+ "object_name": "Newton AJH, McDougal RA, Hines ML, Lytton WW (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Using NEURON for reaction-diffusion modeling of extracellular dynamics (Newton et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Development of credible clinically-relevant brain simulations has been slowed due to a focus on electrophysiology in computational neuroscience, neglecting the multiscale whole-tissue modeling approach used for simulation in most other organ systems. We have now begun to extend the NEURON simulation platform in this direction by adding extracellular modeling. NEURON's extracellular reaction-diffusion is supported by an intuitive Python-based where/who/what command sequence, derived from that used for intracellular reaction diffusion, to support coarse-grained macroscopic extracellular models. This simulation specification separates the expression of the conceptual model and parameters from the underlying numerical methods. In the volume-averaging approach used, the macroscopic model of tissue is characterized by free volume fraction\u2014the proportion of space in which species are able to diffuse, and tortuosity\u2014the average increase in path length due to obstacles. These tissue characteristics can be defined within particular spatial regions, enabling the modeler to account for regional differences, due either to intrinsic organization, particularly gray vs. white matter, or to pathology such as edema. We illustrate simulation development using spreading depression, a pathological phenomenon thought to play roles in migraine, epilepsy and stroke."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238892",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "adam.newton@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Adam John Hunter Newton"
+ },
+ "ver_date": "2018-11-19T22:42:02.483",
+ "ver_number": 21
+ },
+ "238911": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://iopscience.iop.org/article/10.1088/1741-2552/aa86c8/meta"
+ },
+ "class_id": 19,
+ "created": "2018-02-24T22:20:10.897",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238911,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 252077,
+ "object_name": "Barth, Bradley [bradley.barth at duke.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 250131,
+ "object_name": "Barth BB, Henriquez CS, Grill WM, Shen X (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Neuromuscular network model of gut motility (Barth et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we develop an integrated neuromechanical model of the ENS and assess neurostimulation strategies for enhancing gut motility. The model includes a network of enteric neurons, smooth muscle fibers, and interstitial cells of Cajal, which regulate propulsion of a virtual pellet in a model of gut motility."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238911",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Neuromuscular Motility"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Barth, Bradley [bradley.barth@duke.edu]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Enteric neuron; smooth muscle fiber; ICC"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115955,
+ "object_name": "Enteric nervous system"
+ }
+ ]
+ },
+ "ver_date": "2019-03-28T15:00:00.053",
+ "ver_number": 13
+ },
+ "238912": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://jn.physiology.org/content/early/2017/07/31/jn.00274.2017.abstract"
+ },
+ "class_id": 19,
+ "created": "2018-02-24T22:22:48.953",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238912,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249852,
+ "object_name": "Feeney DF, Meyer FG, Noone N, Enoka RM (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A state-space model to quantify common input to motor neurons (Feeney et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 117818,
+ "object_name": "Spinal cord renshaw cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We introduce a space-state model in which the discharge activity\r\nof motor neurons is modeled as inhomogeneous Poisson processes\r\nand propose a method to quantify an abstract latent trajectory\r\nthat represents the common input received by motor neurons. The\r\napproach also approximates the variation in synaptic noise in the\r\ncommon input signal. The model is validated with four data sets:\r\na simulation of 120 motor units, a pair of integrate-and-fire\r\nneurons with a Renshaw cell providing inhibitory feedback, the\r\ndischarge activity of 10 integrate-and-fire neurons, and the\r\ndischarge times of concurrently active motor units during an\r\nisometric voluntary contraction. The simulations revealed that a\r\nlatent state-space model is able to quantify the trajectory and\r\nvariability of the common input signal across all four\r\nconditions. When compared with the cumulative spike train method\r\nof characterizing common input, the state-space approach was more\r\nsensitive to the details of the common input current and was less\r\ninfluenced by the duration of the signal. The state-space\r\napproach appears to be capable of detecting rather modest changes\r\nin common input signals across conditions.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238912",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "ver_date": "2019-02-18T17:58:05.66",
+ "ver_number": 11
+ },
+ "238916": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://link.springer.com/article/10.1007/s00429-017-1541-9"
+ },
+ "class_id": 19,
+ "created": "2018-02-25T19:19:42.507",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238916,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258647,
+ "object_name": "Nanda S, Das R, Bhattacharjee S, Cox DN, Ascoli GA (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ }
+ ]
+ },
+ "name": "Morphological determinants of dendritic arborization neurons in Drosophila larva (Nanda et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 258654,
+ "object_name": "Drosophila dendritic arborization neurons"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Pairing in vivo imaging and computational modeling of dendritic\r\narborization (da) neurons from the fruit fly larva provides a unique\r\nwindow into neuronal growth and underlying molecular processes. We\r\nimage, reconstruct, and analyze the morphology of wild-type,\r\nRNAi-silenced, and mutant da neurons. We then use local and global\r\nrule-based stochastic simulations to generate artificial arbors, and\r\nidentify the parameters that statistically best approximate the real\r\ndata. We observe structural homeostasis in all da classes, where an\r\nincrease in size of one dendritic stem is compensated by a reduction\r\nin the other stems of the same neuron. Local rule models show that\r\nbifurcation probability is determined by branch order, while branch\r\nlength depends on path distance from the soma. Global rule simulations\r\nsuggest that most complex morphologies tend to be constrained by\r\nresource optimization, while simpler neuron classes privilege path\r\ndistance conservation. Genetic manipulations affect both the local\r\nand global optimal parameters, demonstrating functional\r\nperturbations in growth mechanisms.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238916",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Drosophila dendritic arborization neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "ver_date": "2019-08-15T16:53:37.623",
+ "ver_number": 10
+ },
+ "238920": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.jneurosci.org/content/37/20/5123.abstract"
+ },
+ "class_id": 19,
+ "created": "2018-02-25T19:28:41.237",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238920,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 251355,
+ "object_name": "Hagen E, Fossum JC, Pettersen KH, Alonso JM, Swadlow HA, Einevoll GT (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "LFP signature of monosynaptic thalamocortical connection (Hagen et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184132,
+ "object_name": "Neocortex layer 4 interneuron"
+ },
+ {
+ "object_id": 182505,
+ "object_name": "Neocortex layer 4 neuron"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A resurgence has taken place in recent years in the use of the\r\nextracellularly recorded local field potential (LFP) to investigate\r\nneural network activity. To probe monosynaptic thalamic activation of\r\ncortical postsynaptic target cells, so called spike-trigger-averaged\r\nLFP (stLFP) signatures have been measured. In these experiments, the\r\ncortical LFP is measured by multielectrodes covering several cortical\r\nlamina and averaged on spontaneous spikes of thalamocortical (TC)\r\ncells. Using a well established forward-modeling scheme, we\r\ninvestigated the biophysical origin of this stLFP signature with\r\nsimultaneous synaptic activation of cortical layer-4 neurons,\r\nmimicking the effect of a single afferent spike from a single TC\r\nneuron.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238920",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-03-01T17:24:42.543",
+ "ver_number": 4
+ },
+ "238959": {
+ "class_id": 19,
+ "created": "2018-02-28T02:50:47.457",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238959,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267631,
+ "object_name": "Kao KW, Lo CC (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Short Term Depression, Presynaptic Inhib., Neuron Diversity Roles in Antennal Lobe (Wei & Lo 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238959",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "pre-synaptic inhibition \r\nshort-term depression "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kkshxt@lolab-nthu.org"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kao Kuo Wei"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2023-02-09T10:49:06.97",
+ "ver_number": 10
+ },
+ "238985": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1005834"
+ },
+ "class_id": 19,
+ "created": "2018-03-03T20:10:39.023",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 238985,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245381,
+ "object_name": "Rakowski, Franciszek "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245238,
+ "object_name": "Rakowski F, Karbowski J (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113428,
+ "object_name": "Java (web link to model)"
+ },
+ {
+ "object_id": 206355,
+ "object_name": "Mathematica (web link to model)"
+ }
+ ]
+ },
+ "name": "Optimal synaptic assignment for locomotory behavior in C. elegans (Rakowski & Karbowski 2017)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The detailed knowledge of C. elegans connectome for 3 decades has not contributed dramatically to our understanding of worm\u2019s behavior. One of main reasons for this situation has been the lack of data on the type of synaptic signaling between particular neurons in the worm\u2019s connectome. The aim of this study was to determine synaptic polarities for each connection in a small pre-motor circuit controlling locomotion. Even in this compact network of just 7 neurons the space of all possible patterns of connection types (excitation vs. inhibition) is huge. To deal effectively with this combinatorial problem we devised a novel and relatively fast technique based on genetic algorithms and large-scale parallel computations, which we combined with detailed neurophysiological modeling of interneuron dynamics and compared the theory to the available behavioral data. As a result of these massive computations, we found that the optimal connectivity pattern that matches the best locomotory data is the one in which all interneuron connections are inhibitory, even those terminating on motor neurons. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/238985",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "ver_date": "2018-09-27T10:32:18.023",
+ "ver_number": 7
+ },
+ "239003": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://f1000research.com/articles/6-1222/v2"
+ },
+ "class_id": 19,
+ "created": "2018-03-04T19:28:24.22",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239003,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 256750,
+ "object_name": "Scheler, Gabriele [gscheler at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 256719,
+ "object_name": "Scheler G (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Logarithmic distributions prove that intrinsic learning is Hebbian (Scheler 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In this paper, we present data for the lognormal distributions of spike rates,\r\nsynaptic weights and intrinsic excitability (gain) for neurons in various brain\r\nareas, such as auditory or visual cortex, hippocampus, cerebellum, striatum,\r\nmidbrain nuclei. We find a remarkable consistency of heavy-tailed, specifically\r\nlognormal, distributions for rates, weights and gains in all brain areas\r\nexamined. The difference between strongly recurrent and feed-forward\r\nconnectivity (cortex vs. striatum and cerebellum), neurotransmitter (GABA\r\n(striatum) or glutamate (cortex)) or the level of activation (low in cortex, high in\r\nPurkinje cells and midbrain nuclei) turns out to be irrelevant for this feature.\r\nLogarithmic scale distribution of weights and gains appears to be a general,\r\nfunctional property in all cases analyzed. We then created a generic neural\r\nmodel to investigate adaptive learning rules that create and maintain lognormal\r\ndistributions. We conclusively demonstrate that not only weights, but also\r\nintrinsic gains, need to have strong Hebbian learning in order to produce and\r\nmaintain the experimentally attested distributions. This provides a solution to\r\nthe long-standing question about the type of plasticity exhibited by intrinsic\r\nexcitability.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239003",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ },
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2019-05-20T15:38:19.877",
+ "ver_number": 6
+ },
+ "239006": {
+ "citation": {
+ "attr_id": 391,
+ "value": "27223870"
+ },
+ "class_id": 19,
+ "created": "2018-03-05T10:27:44.78",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "icg_channel_details": {
+ "attr_id": 640,
+ "value": [
+ {
+ "object_id": 239007,
+ "object_name": "ICG Detail_239006"
+ },
+ {
+ "object_id": 239008,
+ "object_name": "ICG Detail_239006"
+ }
+ ]
+ },
+ "id": 239006,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33735,
+ "object_name": "Carnevale, Ted [Ted.Carnevale at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239009,
+ "object_name": "Reilly JP (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Extracellular stimulation of myelinated axon (Reilly 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is an implementation of an established \"electrostimulation model\" subjected to a set of stimulation protocols. Such models and protocols are used to predict the response of neural tissue to stimulation by electromagnetic fields or direct application of extracellular current in order to \"evaluate the efficacy and safety of medical devices, or to develop guidelines or standards on acceptible incidental exposure that may not be related to patient exposure for medical purposes.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239006",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Extracellular stimulation"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Xenopus axon"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "A fiber"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ted Carnevale"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 239013,
+ "object_name": "Xenopus"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249928,
+ "object_name": "Xenopus"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:29:17.057",
+ "ver_number": 13
+ },
+ "239039": {
+ "biosimulations": {
+ "value": "modeldb-239039"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Hojeong Kim (2017), Impact of the localization of dendritic calcium persistent inward current on the input-output properties of spinal motoneuron pool: a computational study, J App Physiol 123(5):1166-1187.\r\n\r\nKim, H., Jones, K.E., and Heckman, C.J. (2014). Asymmetry in signal propagation between the soma and dendrites plays a key role in determining dendritic excitability in motoneurons. PLoS One 9, e95454."
+ },
+ "class_id": 19,
+ "created": "2018-03-08T00:34:42.31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239039,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235771,
+ "object_name": "Kim, Hojeong [hojeong.kim03 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235041,
+ "object_name": "Kim H (2017)"
+ },
+ {
+ "object_id": 207601,
+ "object_name": "Kim H, Jones KE, Heckman CJ (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Locational influence of dendritic PIC on input-output properties of spinal motoneurons (Kim 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "How does the dendritic location of calcium persistent inward current (Ca-PIC) influence dendritic excitability and firing behavior across the spinal motoneuron pool? This issue was investigated developing a model motoneuron pool where model parameters were analytically determined to reflect key motoneuron type-specific properties experimentally identified. The simulation results point out the negative relationship between the distance of Ca-PIC source from the soma and cell recruitment threshold as a basis underlying the systematic variation in input-output properties of motoneurons over the motoneuron pool."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239039",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "XPPAUT"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hojeong.kim03@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Hojeong Kim"
+ },
+ "ver_date": "2018-03-08T10:50:07.287",
+ "ver_number": 7
+ },
+ "239072": {
+ "class_id": 19,
+ "created": "2018-03-10T14:45:51.69",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239072,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 240413,
+ "object_name": "Kufel, Dominik [dominic.kufel at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 240385,
+ "object_name": "Kufel DS, Wojcik GM (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2835,
+ "object_name": "MCell"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Analytical modelling of temperature effects on an AMPA-type synapse (Kufel & Wojcik 2018)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code was used in the construction of the model developed in the paper. It is a modified version of the simulation developed by Postlethwaite et al. 2007 - for details of modifications refer to the main body of Kufel & Wojcik (2018)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239072",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dominic.kufel@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Dominik Kufel"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2018-05-18T13:45:58.337",
+ "ver_number": 7
+ },
+ "239103": {
+ "class_id": 19,
+ "created": "2018-03-13T14:15:10.887",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239103,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 97751,
+ "object_name": "Stuttering"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239101,
+ "object_name": "Venkadesh S, Komendantov AO, Listopad S, Scott EO, De Jong K, Krichmar JL, Ascoli GA (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 113428,
+ "object_name": "Java (web link to model)"
+ }
+ ]
+ },
+ "name": "Evolving simple models of diverse dynamics in hippocampal neuron types (Venkadesh et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... we present an automated pipeline based on evolutionary algorithms to quantitatively reproduce features of various classes of neuronal spike patterns using the Izhikevich model. Employing experimental data from Hippocampome.org, a comprehensive knowledgebase of neuron types in the rodent hippocampus, we demonstrate that our approach reliably fit Izhikevich models to nine distinct classes of experimentally recorded spike patterns, including\r\ndelayed spiking, spiking with adaptation, stuttering, and bursting. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239103",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-03-13T16:20:42.26",
+ "ver_number": 4
+ },
+ "239145": {
+ "class_id": 19,
+ "created": "2018-03-18T21:42:43.357",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239145,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 167501,
+ "object_name": "Egger, Robert [robert.egger at nyumc.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 230581,
+ "object_name": "Stimulus selectivity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261323,
+ "object_name": "Egger R, Narayanan RT, Guest JM, Bast A, Udvary D, Messore LF, Das S, de Kock CP, Oberlaender M (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Sensory-evoked responses of L5 pyramidal tract neurons (Egger et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is the L5 pyramidal tract neuron (L5PT) model from Egger, Narayanan et al., Neuron 2020.\r\n\r\nIt allows investigating how synaptic inputs evoked by different sensory stimuli are integrated by the complex intrinsic properties of L5PTs.\r\n\r\nThe model is constrained by anatomical measurements of the subcellular synaptic input patterns to L5PT neurons, in vivo measurements of sensory-evoked responses of different populations of neurons providing these synaptic inputs, and in vitro measurements constraining the biophysical properties of the soma, dendrites and axon (note: the biophysical model is based on the work by Hay et al., Plos Comp Biol 2011).\r\n\r\nThe model files provided here allow performing simulations and analyses presented in Figures 3, 4 and 5."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239145",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex S1 L5 pyramidal tract neuron"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Multi-scale model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Robert.Egger@nyumc.org"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Robert Egger"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-11-27T14:35:38.803",
+ "ver_number": 42
+ },
+ "239146": {
+ "citation": {
+ "attr_id": 391,
+ "value": "D. Kilinc and A. Demir, \"Spike Timing Precision of Neuronal Circuits\", to appear in Journal of Computational Neuroscience, 2018.\r\nDOI: 10.1007/s10827-018-0682-z"
+ },
+ "class_id": 19,
+ "created": "2018-03-20T13:29:46.83",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239146,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239345,
+ "object_name": "Kilinc, Deniz [dkilinc at ku.edu.tr]"
+ },
+ {
+ "object_id": 239346,
+ "object_name": "Mahmutoglu, A. Gokcen [amahmutoglu at ku.edu.tr]"
+ },
+ {
+ "object_id": 239347,
+ "object_name": "Demir, Alper [aldemir at ku.edu.tr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ },
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239151,
+ "object_name": "Kilinc D, Demir A (2018)"
+ },
+ {
+ "object_id": 239149,
+ "object_name": "Kilinc D, Demir A (2017)"
+ },
+ {
+ "object_id": 247833,
+ "object_name": "Kilinc D,Demir A (2015)"
+ },
+ {
+ "object_id": 247922,
+ "object_name": "Mahmutoglu AG, Demir A (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 247853,
+ "object_name": "cirsiumNeuron"
+ }
+ ]
+ },
+ "name": "A neuronal circuit simulator for non Monte Carlo analysis of neuronal noise (Kilinc & Demir 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "cirsiumNeuron is a neuronal circuit simulator that can directly and efficiently compute characterizations of stochastic behavior, i.e., noise, for multi-neuron circuits. In cirsiumNeuron, we utilize a general modeling framework for biological neuronal circuits which systematically captures the nonstationary stochastic behavior of the ion channels and the synaptic processes. In this framework, we employ fine-grained, discrete-state, continuous-time Markov Chain (MC) models of both ion channels and synaptic processes in a unified manner. Our modeling framework can automatically generate the corresponding coarse-grained, continuous-state, continuous-time Stochastic Differential Equation (SDE) models. In addition, for the stochastic characterization of neuronal variability and noise, we have implemented semi-analytical, non Monte Carlo analysis techniques that work both in time and frequency domains, which were previously developed for analog electronic circuits. In these semi-analytical noise evaluation schemes, (differential) equations that directly govern probabilistic characterizations in the form of correlation functions (time domain) or spectral densities (frequency domain) are first derived analytically, and then solved numerically. These semi-analytical noise analysis techniques correctly and accurately capture the second order statistics (mean, variance, autocorrelation, and power spectral density) of the underlying neuronal processes as compared with Monte Carlo simulations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239146",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kilinc, Deniz [dkilinc at ku.edu.tr];\r\nMahmutoglu, A. Gokcen [amahmutoglu at ku.edu.tr];\r\nDemir, Alper [aldemir at ku.edu.tr]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Stochastic Hodgkin-Huxley neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dkilinc@ku.edu.tr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Deniz Kilinc"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2018-12-20T15:24:30.723",
+ "ver_number": 16
+ },
+ "239161": {
+ "class_id": 19,
+ "created": "2018-03-21T17:50:44.943",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239161,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239162,
+ "object_name": "Sherfey, Jason S [sherfey at mit.edu]"
+ },
+ {
+ "object_id": 239163,
+ "object_name": "Ardid, Salva "
+ },
+ {
+ "object_id": 239179,
+ "object_name": "Roberts, Erik S "
+ },
+ {
+ "object_id": 137843,
+ "object_name": "Stanley, David A "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239159,
+ "object_name": "Sherfey JS, Soplata AE, Ardid S, Roberts EA, Stanley DA, Pittman-Polletta BR, Kopell NJ (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 239160,
+ "object_name": "DynaSim (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "DynaSim: a MATLAB toolbox for neural modeling and simulation (Sherfey et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"DynaSim is an open-source MATLAB/GNU Octave toolbox for rapid prototyping of neural models and batch simulation management. It is designed to speed up and simplify the process of generating, sharing, and exploring network models of neurons with one or more compartments. Models can be specified by equations directly (similar to XPP or the Brian simulator) or by lists of predefined or custom model components. The higher-level specification supports arbitrarily complex population models and networks of interconnected populations. DynaSim also includes a large set of features that simplify exploring model dynamics over parameter spaces, running simulations in parallel using both multicore processors and high-performance computer clusters, and analyzing and plotting large numbers of simulated data sets in parallel. It also includes a graphical user interface (DynaSim GUI) that supports full functionality without requiring user programming. The software has been implemented in MATLAB to enable advanced neural modeling using MATLAB, given its popularity and a growing interest in modeling neural systems....\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239161",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2018-03-22T12:11:51.58",
+ "ver_number": 5
+ },
+ "239177": {
+ "class_id": 19,
+ "created": "2018-03-21T20:47:13.587",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239177,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 186894,
+ "object_name": "Tikidji-Hamburyan, Ruben [ruben.tikidji.hamburyan at gmail.com] "
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 253430,
+ "object_name": "Tikidji-Hamburyan RA, Leonik CA, Canavier CC (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Phase response theory in sparsely + strongly connected inhibitory NNs (Tikidji-Hamburyan et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239177",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ruben.tikidji.hamburyan@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ruben Tikidzhi-Khamburyan"
+ },
+ "ver_date": "2022-05-27T12:54:29.677",
+ "ver_number": 8
+ },
+ "239388": {
+ "class_id": 19,
+ "created": "2018-03-26T19:09:42.713",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239388,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239426,
+ "object_name": "Heitmann S, Breakspear M (2018)"
+ },
+ {
+ "object_id": 239348,
+ "object_name": "Heitmann S, Breakspear M (2018)"
+ },
+ {
+ "object_id": 239360,
+ "object_name": "Heitmann S,Aburn MJ,Breakspear M (2017)"
+ },
+ {
+ "object_id": 239425,
+ "object_name": "Heitmann S, Breakspear M (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 239389,
+ "object_name": "Brain Dynamics Toolbox (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Brain Dynamics Toolbox (Heitmann & Breakspear 2016, 2017, 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The Brain Dynamics Toolbox is open-source software for simulating dynamical systems in neuroscience. It is for researchers and students who wish to explore mathematical models of brain function using Matlab. It includes a graphical tool for simulating dynamical systems in real-time as well as command-line tools for scripting large-scale simulations.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239388",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-04-03T19:35:02.56",
+ "ver_number": 6
+ },
+ "239413": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.jneurosci.org/content/early/2017/10/09/JNEUROSCI.0044-17.2017.abstract"
+ },
+ "class_id": 19,
+ "created": "2018-04-01T19:32:51.7",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239413,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 252324,
+ "object_name": "Ai H, Kai K, Kumaraswamy A, Ikeno H, Wachtler T (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 236518,
+ "object_name": "Brian 2 (web link to model)"
+ }
+ ]
+ },
+ "name": "Vibration-sensitive Honeybee interneurons (Ai et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Female honeybees use the \u201cwaggle dance\u201d to communicate the location of nectar sources to their hive mates. Distance information is encoded in the duration of the waggle phase (von Frisch, 1967). During the waggle phase, the dancer produces trains of vibration pulses, which are detected by the follower bees via Johnston's organ located on the antennae. To uncover the neural mechanisms underlying the encoding of distance information in the waggle dance follower, we investigated morphology, physiology, and immunohistochemistry of interneurons arborizing in the primary auditory center of the honeybee (Apis mellifera). We identified major interneuron types, named DL-Int-1, DL-Int-2, and bilateral DL-dSEG-LP, that responded with different spiking patterns to vibration pulses applied to the antennae. Experimental and computational analyses suggest that inhibitory connection plays a role in encoding and processing the duration of vibration pulse trains in the primary auditory center of the honeybee.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239413",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "ver_date": "2019-03-08T17:41:24.063",
+ "ver_number": 5
+ },
+ "239418": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://link.springer.com/article/10.1007/s10827-017-0659-3"
+ },
+ "class_id": 19,
+ "created": "2018-04-01T19:48:46.33",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239418,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 253249,
+ "object_name": "Hu, Brian [bhu6 (AT) jhmi (DOT) edu]"
+ },
+ {
+ "object_id": 253250,
+ "object_name": "Jeck, Danny "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 253091,
+ "object_name": "Hu B, Niebur E (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "NN for proto-object based contour integration and figure-ground segregation (Hu & Niebur 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Visual processing of objects makes use of both\r\nfeedforward and feedback streams of information. However, the nature of feedback signals is largely unknown, as\r\nis the identity of the neuronal populations in lower visual\r\nareas that receive them. Here, we develop a recurrent neural\r\nmodel to address these questions in the context of contour\r\nintegration and figure-ground segregation. A key feature\r\nof our model is the use of grouping neurons whose activity represents tentative objects (\u201cproto-objects\u201d) based on\r\nthe integration of local feature information. Grouping neurons receive input from an organized set of local feature\r\nneurons, and project modulatory feedback to those same\r\nneurons. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239418",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-03-12T17:31:14.61",
+ "ver_number": 5
+ },
+ "239421": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5602117/"
+ },
+ "class_id": 19,
+ "created": "2018-04-01T19:52:44.04",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239421,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 229586,
+ "object_name": "Masoli, Stefano [stefano.masoli at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 257190,
+ "object_name": "Masoli S, D'Angelo E (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Purkinje cell: Synaptic activation predicts voltage control of burst-pause (Masoli & D'Angelo 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The dendritic processing in cerebellar Purkinje cells (PCs), which integrate synaptic inputs coming from hundreds of thousands granule cells and molecular layer interneurons, is still unclear. Here we have tested a leading hypothesis maintaining that the significant PC output code is represented by burst-pause responses (BPRs), by simulating PC responses in a biophysically detailed model that allowed to systematically explore a broad range of input patterns. BPRs were generated by input bursts and were more prominent in Zebrin positive than Zebrin negative (Z+ and Z-) PCs. Different combinations of parallel fiber and molecular layer interneuron synapses explained type I, II and III responses observed in vivo. BPRs were generated intrinsically by Ca-dependent K channel activation in the somato-dendritic compartment and the pause was reinforced by molecular layer interneuron inhibition. BPRs faithfully reported the duration and intensity of synaptic inputs, such that synaptic conductance tuned the number of spikes and release probability tuned their regularity in the millisecond range. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239421",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 340"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2020-04-20T07:49:11.55",
+ "ver_number": 13
+ },
+ "239427": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://doi.org/10.1016/j.neuron.2018.01.047"
+ },
+ "class_id": 19,
+ "created": "2018-04-04T13:15:10.84",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239427,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 222955,
+ "object_name": "Pedrosa, Victor [v.pedrosa15 at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239497,
+ "object_name": "Gonz\u00e1lez-Rueda A, Pedrosa V, Feord RC, Clopath C, Paulsen O (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Feedforward network undergoing Up-state-mediated plasticity (Gonzalez-Rueda et al. 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using whole-cell recordings and optogenetic stimulation of presynaptic input in anaesthetized mice, we show that synaptic plasticity rules are gated by cortical dynamics. Up states are biased towards depression such that presynaptic stimulation alone leads to synaptic depression, while connections contributing to postsynaptic spiking are protected against this synaptic weakening. We\r\nfind that this novel activity-dependent and input-specific downscaling mechanism has two important computational advantages: 1) improved signal-to-noise ratio, and 2) preservation of previously stored information. Thus, these synaptic plasticity rules provide an attractive mechanism for SWS-related synaptic downscaling and circuit refinement.\r\n\r\nWe simulate a feedforward network of neurons undergoing Up-state-mediated plasticity. Under this plasticity rule, presynaptic spikes alone lead to synaptic depression, whereas those followed by postsynaptic spikes within 10 ms are not changed."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239427",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "v.pedrosa15@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Victor Pedrosa"
+ },
+ "ver_date": "2018-04-09T14:24:58.85",
+ "ver_number": 8
+ },
+ "239435": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Gruntman, E., Romani, S., & Reiser, M. B., Simple integration of fast excitation and offset, delayed inhibition computes directional selectivity in Drosophila. Nature Neuroscience 21, 250\u2013257 (2018)"
+ },
+ "class_id": 19,
+ "created": "2018-04-07T20:14:17.737",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239435,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239438,
+ "object_name": "Gruntman, Eyal [ gruntmane at janelia.hhmi.org]"
+ },
+ {
+ "object_id": 239439,
+ "object_name": "Romani, Sandro [ romanis at janelia.hhmi.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239437,
+ "object_name": "Gruntman E, Romani S, Reiser MB (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Drosophila T4 neuron (Gruntman et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 239440,
+ "object_name": "Fly lobula plate T4 neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Passive, multi-compartment conductance-based model of a T4 cell. The model reproduces the neuron's response to moving stimuli via integration of spatially offset fast excitatory and slow inhibitory inputs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239435",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gruntman, Eyal [ gruntmane at janelia.hhmi.org]Romani, Sandro [ romanis at janelia.hhmi.org]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Fly lobula plate T4 neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gruntmane@janelia.hhmi.org"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Eyal Gruntman"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 120613,
+ "object_name": "Drosophila (fruit fly)"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:15:43.84",
+ "ver_number": 3
+ },
+ "239530": {
+ "citation": {
+ "attr_id": 391,
+ "value": "M. Ursino, C. Baston, Aberrant learning in Parkinson's disease: a neurocomputational study on bradykinesia, to be published in European Journal of Neuroscience"
+ },
+ "class_id": 19,
+ "created": "2018-04-11T06:15:07.99",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239530,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239531,
+ "object_name": "Ursino, Mauro [mauro.ursino at unibo.it]"
+ },
+ {
+ "object_id": 239532,
+ "object_name": "Baston, Chiara [chiara.baston at unibo.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241831,
+ "object_name": "Ursino M, Baston C (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A basal ganglia model of aberrant learning (Ursino et al. 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A comprehensive, biologically inspired neurocomputational model of action selection in the Basal Ganglia allows simulation of dopamine induced aberrant learning in Parkinsonian subjects. In particular, the model simulates the Alternate Finger Tapping motor task as an indicator of bradykinesia."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239530",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ursino, Mauro (mauro.ursino@unibo.it)\r\nBaston, Chiara (chiara.baston@unibo.it)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mauro.ursino@unibo.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mauro Ursino"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2018-06-07T17:34:28.46",
+ "ver_number": 7
+ },
+ "239535": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Kim H and Kim M (2018) PyMUS: Python-Based Simulation Software for Virtual Experiments on Motor Unit System. Front. Neuroinform. 12:15. doi: 10.3389/fninf.2018.00015"
+ },
+ "class_id": 19,
+ "created": "2018-04-11T21:03:07.94",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239535,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235771,
+ "object_name": "Kim, Hojeong [hojeong.kim03 at gmail.com]"
+ },
+ {
+ "object_id": 239536,
+ "object_name": "Kim, Minjung [reddkwl at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239537,
+ "object_name": "Kim H, Kim M (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "PyMUS: A Python based Motor Unit Simulator (Kim & Kim 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ },
+ {
+ "object_id": 105531,
+ "object_name": "Skeletal muscle cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "PyMUS is a simulation software that allows for integrative investigations on the input-output processing of the motor unit system in a hierarchical manner from a single channel to the entire system behavior. Using PyMUS, a single motoneuron, muscle unit and motor unit can be separately simulated under a wide range of experimental input protocols."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239535",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I_Leak"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kim, Minjung [reddkwl at gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hojeong.kim03@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Hojeong Kim"
+ },
+ "ver_date": "2018-04-16T07:44:54.9",
+ "ver_number": 7
+ },
+ "239540": {
+ "class_id": 19,
+ "created": "2018-04-12T16:26:46.827",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239540,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 243652,
+ "object_name": "Fiore, Vincenzo G. [vincenzo.g.fiore at gmail.com]"
+ },
+ {
+ "object_id": 243653,
+ "object_name": "Ognibene, Dimitri "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112854,
+ "object_name": "Addiction"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243651,
+ "object_name": "Fiore VG, Ognibene D, Adinoff B, Gu X (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Computational endophenotypes in addiction (Fiore et al 2018)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... here we simulated phenotypic\r\nvariations in addiction symptomology and responses to putative\r\ntreatments, using both a neural model, based on cortico-striatal\r\ncircuit dynamics, and an algorithmic model of reinforcement\r\nlearning. These simulations rely on the widely accepted assumption\r\nthat both the ventral, model-based, goal-directed system and the\r\ndorsal, model-free, habitual system are vulnerable to\r\nextra-physiologic dopamine reinforcements triggered by addictive\r\nrewards. We found that endophenotypic differences in the balance\r\nbetween the two circuit or control systems resulted in an inverted\r\nU-shape in optimal choice behavior. Specifically, greater unbalance\r\nled to a higher likelihood of developing addiction and more severe\r\ndrug-taking behaviors.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239540",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vincenzo.g.fiore@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Vincenzo G Fiore"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2018-07-10T14:21:53.373",
+ "ver_number": 9
+ },
+ "239541": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Helfer, P. & Shultz, T.R. (2018)\r\nCoupled Molecular Feedback Loops Maintain Synaptic Long-Term Potentiation: A Computational Model\r\nSubmitted for publication"
+ },
+ "class_id": 19,
+ "created": "2018-04-16T13:13:16.843",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239541,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239548,
+ "object_name": "Helfer, Peter [peter.helfer at mail.mcgill.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239587,
+ "object_name": "Helfer P, Shultz TR (2018)"
+ },
+ {
+ "object_id": 239589,
+ "object_name": "Helfer P, Shultz TR (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "PKMZ synthesis and AMPAR regulation in late long-term synaptic potentiation (Helfer & Shultz 2018)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Stochastic simulation of a set of molecular reactions that implement late long-term potentiation (L-LTP). The model is able to account for a wide range of empirical results, including induction and maintenance of late-phase LTP, cellular memory reconsolidation and the effects of different pharmaceutical interventions."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239541",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Helfer, Peter [peter.helfer@mail.mcgill.ca]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "peter.helfer@mail.mcgill.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Peter Helfer"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-04-18T10:37:39.913",
+ "ver_number": 9
+ },
+ "239582": {
+ "class_id": 19,
+ "created": "2018-04-16T14:59:44.48",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239582,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83510,
+ "object_name": "Powers, Randy [rkpowers at u.washington.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239549,
+ "object_name": "Powers RK, Heckman CJ (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Motoneuron pool input-output function (Powers & Heckman 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Although motoneurons have often been considered\r\nto be fairly linear transducers of synaptic input, recent evidence\r\nsuggests that strong persistent inward currents (PICs) in motoneurons\r\nallow neuromodulatory and inhibitory synaptic inputs to induce large\r\nnonlinearities in the relation between the level of excitatory input and\r\nmotor output. To try to estimate the possible extent of this nonlinearity,\r\nwe developed a pool of model motoneurons designed to replicate\r\nthe characteristics of motoneuron input-output properties measured in\r\nmedial gastrocnemius motoneurons in the decerebrate cat with voltage-\r\nclamp and current-clamp techniques. We drove the model pool\r\nwith a range of synaptic inputs consisting of various mixtures of\r\nexcitation, inhibition, and neuromodulation. We then looked at the\r\nrelation between excitatory drive and total pool output. Our results\r\nrevealed that the PICs not only enhance gain but also induce a strong\r\nnonlinearity in the relation between the average firing rate of the\r\nmotoneuron pool and the level of excitatory input. The relation\r\nbetween the total simulated force output and input was somewhat\r\nmore linear because of higher force outputs in later-recruited units. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239582",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2023-01-27T13:29:52.197",
+ "ver_number": 7
+ },
+ "239741": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Vinci G., Ventura V., Smith M.A., and Kass R.E. (2018). Adjusted Regularization of Cortical Covariance. Journal of Computational Neuroscience."
+ },
+ "class_id": 19,
+ "created": "2018-04-17T21:12:31.89",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239741,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245420,
+ "object_name": "Vinci G, Ventura V, Smith MA, Kass RE (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150209,
+ "object_name": "R"
+ }
+ ]
+ },
+ "name": "Adjusted regularization of cortical covariance (Vinci et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Graphical Lasso with Adjusted Regularization (GAR) useful to estimate functional connectivity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239741",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "giuseppevinci88@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Giuseppe Vinci"
+ },
+ "ver_date": "2018-10-06T18:59:40.227",
+ "ver_number": 2
+ },
+ "239744": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Molecular Mechanisms Underlying Striatal Synaptic Plasticity: Relevance to Chronic Alcohol Consumption and Seeking. Eur J Neurosci. 2018 PMID: 29602186"
+ },
+ "class_id": 19,
+ "created": "2018-04-18T14:36:52.54",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239744,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 242863,
+ "object_name": "Alcohol Use Disorder"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239748,
+ "object_name": "Blackwell KT, Salinas AG, Tewatia P, English B, Hellgren Kotaleski J, Lovinger DM (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 139757,
+ "object_name": "NeuroRD"
+ }
+ ]
+ },
+ "name": "Signaling pathways In D1R containing striatal spiny projection neurons (Blackwell et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 184489,
+ "object_name": "Endocannabinoid"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We implemented a mechanistic model of signaling pathways activated by dopamine D1 receptors, acetylcholine receptors, and glutamate. We use our novel, computationally efficient simulator, NeuroRD, to simulate stochastic interactions both within and between dendritic spines. Results show that the combined activity of several key plasticity molecules correctly predicts the occurrence of either LTP, LTD or no plasticity for numerous experimental protocols."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239744",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "NeuroRD"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kim Blackwell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 188,
+ "object_name": "mGluR5"
+ },
+ {
+ "object_id": 179,
+ "object_name": "M1"
+ },
+ {
+ "object_id": 181,
+ "object_name": "M4"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2018-11-20T14:28:03.513",
+ "ver_number": 14
+ },
+ "239878": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Martinez-Ca\u00f1ada, P., Mobarhan, M. H., Halnes, G., Fyhn, M., Morillas, C., Pelayo, F., & Einevoll, G. T. (2018). Biophysical network modeling of the dLGN circuit: Effects of cortical feedback on spatial response properties of relay cells. PLoS computational biology, 14(1), e1005930."
+ },
+ "class_id": 19,
+ "created": "2018-04-30T04:08:23.017",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 239878,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225168,
+ "object_name": "Mart\u00ednez-Ca\u00f1ada, Pablo [pablomc at ugr.es]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 239880,
+ "object_name": "Mart\u00ednez-Ca\u00f1ada P, Mobarhan MH, Halnes G, Fyhn M, Morillas C, Pelayo F, Einevoll GT (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 144398,
+ "object_name": "LFPy"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Cortical feedback alters visual response properties of dLGN relay cells (Mart\u00ednez-Ca\u00f1ada et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Network model that includes biophysically detailed, single-compartment and multicompartment neuron models of relay-cells and interneurons in the dLGN and a population of orientation-selective layer 6 simple cells, consisting of pyramidal cells (PY). We have considered two different arrangements of synaptic feedback from the ON and OFF zones in the visual cortex to the dLGN: phase-reversed (\u2018push-pull\u2019) and phase-matched (\u2018push-push\u2019), as well as different spatial extents of the corticothalamic projection pattern. This project is the result of a research work and its associated publication is: (Mart\u00ednez-Ca\u00f1ada et al 2018).\r\nInstallation instructions as well as the latest version can be found in the Github repository: https://github.com/CINPLA/biophysical_thalamocortical_system"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/239878",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pablomc@ugr.es"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pablo Martinez-Ca\u00f1ada"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2018-10-17T17:35:09.083",
+ "ver_number": 11
+ },
+ "240116": {
+ "class_id": 19,
+ "created": "2018-05-04T13:15:13.58",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 240116,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 153637,
+ "object_name": "Cavarretta, Francesco [francescocavarretta at hotmail.it]"
+ },
+ {
+ "object_id": 33736,
+ "object_name": "Hines, Michael [Michael.Hines at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 240117,
+ "object_name": "Cavarretta F, Burton SD, Igarashi KM, Shepherd GM, Hines ML, Migliore M (2018)"
+ },
+ {
+ "object_id": 227988,
+ "object_name": "Cavarretta F, Marasco A, Hines ML, Shepherd GM, Migliore M (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Parallel odor processing by mitral and middle tufted cells in the OB (Cavarretta et al 2016, 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 153282,
+ "object_name": "Olfactory bulb main tufted middle GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 153283,
+ "object_name": "Olfactory bulb main interneuron granule TC GABA cell"
+ },
+ {
+ "object_id": 185340,
+ "object_name": "Olfactory bulb (accessory) mitral cell"
+ },
+ {
+ "object_id": 207694,
+ "object_name": "Olfactory bulb main tufted cell external"
+ },
+ {
+ "object_id": 168419,
+ "object_name": "Olfactory bulb short axon cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"[...] experimental findings suggest that\r\nMC and mTC may encode parallel and complementary odor representations. We\r\nhave analyzed the functional roles of these pathways by using a morphologically\r\nand physiologically realistic three-dimensional model to explore the MC and\r\nmTC microcircuits in the glomerular layer and deeper plexiform layers. [...]\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/240116",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "francescocavarretta@hotmail.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Francesco Cavarretta"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T13:05:48.653",
+ "ver_number": 25
+ },
+ "240364": {
+ "biosimulations": {
+ "value": "modeldb-240364"
+ },
+ "class_id": 19,
+ "created": "2018-05-08T18:06:19.647",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 240364,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 248171,
+ "object_name": "Viertel R, Borisyuk A (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "External Tufted Cell Model (Ryan Viertel, Alla Borisyuk 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 207694,
+ "object_name": "Olfactory bulb main tufted cell external"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "ODE model of the Mammalian External Tufted Cell"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/240364",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rdviertel@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ryan Viertel"
+ },
+ "ver_date": "2019-01-07T15:08:08.243",
+ "ver_number": 10
+ },
+ "240369": {
+ "citation": {
+ "attr_id": 391,
+ "value": "M. Mozafari, S. R. Kheradpisheh, T. Masquelier, A. Nowzari-Dalini and M. Ganjtabesh, \"First-Spike-Based Visual Categorization Using Reward-Modulated STDP,\" in IEEE Transactions on Neural Networks and Learning Systems.\r\ndoi: 10.1109/TNNLS.2018.2826721"
+ },
+ "class_id": 19,
+ "created": "2018-05-10T07:43:52.117",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 240369,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 240373,
+ "object_name": "Mozafari, Milad [milad.mozafari at ut.ac.ir]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 240376,
+ "object_name": "Temporal Coding"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 240372,
+ "object_name": "Mozafari M, Kheradpisheh SR, Masquelier T, Nowzari-Dalini A, Ganjtabesh M (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 240375,
+ "object_name": "C#"
+ }
+ ]
+ },
+ "name": "First-Spike-Based Visual Categorization Using Reward-Modulated STDP (Mozafari et al. 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...Here, for the first time,\r\nwe show that (Reinforcement Learning) RL can be used efficiently to train a spiking neural\r\nnetwork (SNN) to perform object recognition in natural images\r\nwithout using an external classifier. We used a feedforward\r\nconvolutional SNN and a temporal coding scheme where the\r\nmost strongly activated neurons fire first, while less activated\r\nones fire later, or not at all. In the highest layers, each neuron\r\nwas assigned to an object category, and it was assumed that\r\nthe stimulus category was the category of the first neuron to\r\nfire. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/240369",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Temporal Coding"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Mozafari, Milad [milad.mozafari at ut.ac.ir]"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Microsoft C# Program"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "milad.mozafari@ut.ac.ir"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Milad Mozafari"
+ },
+ "ver_date": "2018-10-17T17:35:28.557",
+ "ver_number": 12
+ },
+ "240382": {
+ "class_id": 19,
+ "created": "2018-05-13T02:59:07.243",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 240382,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 241134,
+ "object_name": "Reneaux, Melissa [reneauxm5 at gmail.com]"
+ },
+ {
+ "object_id": 207819,
+ "object_name": "Gupta, Rahul [gupta.sbt at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241409,
+ "object_name": "Reneaux M, Gupta R (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Effect of cortical D1 receptor sensitivity on working memory maintenance (Reneaux & Gupta 2018)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Alterations in cortical D1 receptor density and reactivity of dopamine-binding sites, collectively termed as D1 receptor-sensitivity in the present study, have been experimentally shown to affect the working memory maintenance during delay-period. However, computational models addressing the effect of D1 receptor-sensitivity are lacking. A quantitative neural mass model of the prefronto-mesoprefrontal system has been proposed to take into account the effect of variation in cortical D1 receptor-sensitivity on working memory maintenance during delay. The model computes the delay-associated equilibrium states/operational points of the system for different values of D1 receptor-sensitivity through the nullcline and bifurcation analysis. Further, to access the robustness of the working memory maintenance during delay in the presence of alteration in D1 receptor-sensitivity, numerical simulations of the stochastic formulation of the model are performed to obtain the global potential landscape of the dynamics.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/240382",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Signal-to-noise ratio"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Reneaux, Melissa [reneauxm5 at gmail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "reneauxm5@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Melissa Reneaux"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2018-05-30T10:46:57.29",
+ "ver_number": 15
+ },
+ "240954": {
+ "class_id": 19,
+ "created": "2018-05-15T11:59:10.45",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 240954,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 246829,
+ "object_name": "Ramirez-Mahaluf, Juan P [jpramirezmahaluf at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 240955,
+ "object_name": "Major Depression Disease (MDD)"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 240534,
+ "object_name": "Ramirez-Mahaluf JP, Roxin A, Mayberg HS, Compte A (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 237342,
+ "object_name": "Brian (web link to model)"
+ }
+ ]
+ },
+ "name": "MDD: the role of glutamate dysfunction on Cingulo-Frontal NN dynamics (Ramirez-Mahaluf et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...Currently, no mechanistic framework describes how network dynamics, glutamate, and serotonin interact to explain MDD symptoms and treatments. Here, we built a biophysical computational model of 2 areas (vACC and dlPFC) that can switch between emotional and cognitive processing. (Major Depression Disease) MDD networks were simulated by slowing glutamate decay in vACC and demonstrated sustained vACC activation. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/240954",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2018-11-09T14:55:17.897",
+ "ver_number": 7
+ },
+ "240957": {
+ "class_id": 19,
+ "created": "2018-05-16T09:45:42.763",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 240957,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226424,
+ "object_name": "Appukuttan, Shailesh [shailesh.appukuttan at unic.cnrs-gif.fr;\r\nappukuttan.shailesh at gmail.com;]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 183995,
+ "object_name": "Ephaptic coupling"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235132,
+ "object_name": "Appukuttan S, Brain KL, Manchanda R (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Extracellular fields for a three-dimensional network of cells using NEURON (Appukuttan et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... In the present work, we demonstrate a technique to couple the extracellular fields of individual cells within the NEURON simulation environment. The existing features of the simulator are extended by explicitly defining current balance equations, resulting in the coupling of the extracellular fields of adjacent cells. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/240957",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shailesh.a@iitb.ac.in"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shailesh Appukuttan"
+ },
+ "ver_date": "2018-06-05T11:12:55.523",
+ "ver_number": 15
+ },
+ "240960": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hsu CL, Zhao X, Milstein AD, Spruston N. (2018). Persistent sodium current mediates steep voltage dependence of spatial coding in hippocampal pyramidal neurons. Neuron"
+ },
+ "class_id": 19,
+ "created": "2018-05-16T19:53:29.44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 240960,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 184058,
+ "object_name": "Hsu, Ching-Lung [hsuc at janelia.hhmi.org]"
+ },
+ {
+ "object_id": 225082,
+ "object_name": "Milstein, Aaron D. [aaronmil at stanford.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 241168,
+ "object_name": "Synaptic Amplification"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241167,
+ "object_name": "Hsu CL, Zhao X, Milstein AD, Spruston N (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: Persistent Na current mediates steep synaptic amplification (Hsu et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This paper shows that persistent sodium current critically contributes to the subthreshold nonlinear dynamics of CA1 pyramidal neurons and promotes rapidly reversible conversion between place-cell and silent-cell in the hippocampus. A simple model built with realistic axo-somatic voltage-gated sodium channels in CA1 (Carter et al., 2012; Neuron 75, 1081\u20131093) demonstrates that the biophysics of persistent sodium current is sufficient to explain the synaptic amplification effects. A full model built previously (Grienberger et al., 2017; Nature Neuroscience, 20(3): 417\u2013426) with detailed morphology, ion channel types and biophysical properties of CA1 place cells naturally reproduces the steep voltage dependence of synaptic responses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/240960",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Leak, I delayed-rectifier"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hsuc@janelia.hhmi.org"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ching-Lung Hsu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-06-15T16:47:44.087",
+ "ver_number": 25
+ },
+ "240961": {
+ "biosimulations": {
+ "value": "modeldb-240961"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Huange et al. Multiple actions of rotenone, an inhibitor of mitochondrial respiratory chain, \r\non ionic currents and minature end-plate potential in mouse hippocampal (mHippoE-14) neurons.\r\nCell Physiol Biochem 2018;47:330-343."
+ },
+ "class_id": 19,
+ "created": "2018-05-17T03:37:30.84",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 240961,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 183995,
+ "object_name": "Ephaptic coupling"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 240965,
+ "object_name": "Huang CW, Lin KM, Hung TY, Chuang YC, Wu SN (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Actions of Rotenone on ionic currents and MEPPs in Mouse Hippocampal Neurons (Huang et al 2018) ",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... With the aid of patch-clamp technology and simulation modeling,\r\nthe effects of (Rotenone) Rot on membrane ion currents present in\r\nmHippoE-14 cells were investigated. Results: Addition of Rot produced\r\nan inhibitory action on the peak amplitude of INa ...; however,\r\nneither activation nor inactivation kinetics of INa was changed during\r\ncell exposure to this compound. Addition of Rot produced little or no\r\nmodifications in the steady-state inactivation curve of INa. Rot\r\nincreased the amplitude of Ca2+-activated Cl- current in response to\r\nmembrane depolarization ... . Moreover, when these cells were exposed\r\nto 10 \u00b5M Rot, a specific population of ATP-sensitive K+ channels\r\n... was measured, despite its inability to alter single-channel\r\nconductance. Under current clamp condition, the frequency of miniature\r\nend-plate potentials in mHippoE-14 cells was significantly raised in\r\nthe presence of Rot (10 \u00b5M) with no changes in their amplitude and\r\ntime course of rise and decay. In simulated model of hippocampal\r\nneurons incorporated with chemical autaptic connection, increased\r\nautaptic strength to mimic the action of Rot was noted to change the\r\nbursting pattern with emergence of subthreshold\r\npotentials. Conclusions: The Rot effects presented herein might exert\r\na significant action on functional activities of hippocampal neurons\r\noccurring in vivo. \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/240961",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Dr. Sheng-Nan Wu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-05-17T11:28:10.897",
+ "ver_number": 6
+ },
+ "241160": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Anderson R, Farokhniaee A, Gunalan K., Howell B, McIntyre C., Action potential initiation, propagation, and cortical invasion in the hyperdirect pathway during subthalamic deep brain stimulation, Brain Stimulation (2018), https://doi.org/10.1016/j.brs.2018.05.008"
+ },
+ "class_id": 19,
+ "created": "2018-05-21T10:37:24.173",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 241160,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241163,
+ "object_name": "Anderson RW, Farokhniaee A, Gunalan K, Howell B, McIntyre CC (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "AP initiation, propagation, and cortical invasion in a Layer 5 pyramidal cell (Anderson et 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... High frequency (~130 Hz) deep brain stimulation (DBS) of\r\nthe subthalamic region is an established clinical therapy for the\r\ntreatment of late stage Parkinson's disease (PD). Direct modulation of\r\nthe hyperdirect pathway, defined as cortical layer V pyramidal neurons\r\nthat send an axon collateral to the subthalamic nucleus (STN), has\r\nemerged as a possible component of the therapeutic mechanisms.\r\n...We found robust AP propagation throughout the complex axonal\r\narbor of the hyperdirect neuron. Even at therapeutic DBS frequencies,\r\nstimulation induced APs could reach all of the intracortical axon\r\nterminals with ~100% fidelity. The functional result of this high\r\nfrequency axonal driving of the thousands of synaptic connections made\r\nby each directly stimulated hyperdirect neuron is a profound synaptic\r\nsuppression that would effectively disconnect the neuron from the\r\ncortical circuitry. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/241160",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "anderson@case.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ross W. Anderson"
+ },
+ "ver_date": "2018-05-23T18:33:06.703",
+ "ver_number": 6
+ },
+ "241165": {
+ "class_id": 19,
+ "created": "2018-05-21T17:09:25.047",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 241165,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 241166,
+ "object_name": "Aberra, Aman [aman.aberra at duke.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244682,
+ "object_name": "Aberra AS, Peterchev AV, Grill WM (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Biophysically realistic neuron models for simulation of cortical stimulation (Aberra et al. 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This archive instantiates the single-cell cortical models used in (Aberra et al. 2018) and sets up extracellular stimulation with either a point-current source, to simulate intracortical microstimulation (ICMS), or a uniform E-field distribution, with a monophasic, rectangular pulse waveform in both cases. "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/241165",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "aman.aberra@duke.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Aman Aberra"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 228597,
+ "object_name": "Barrel cortex"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T12:58:23.52",
+ "ver_number": 23
+ },
+ "241169": {
+ "class_id": 19,
+ "created": "2018-05-22T19:35:37.997",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 241169,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 240367,
+ "object_name": "Dewell, Richard Burkett [dewell at bcm.edu]"
+ },
+ {
+ "object_id": 33804,
+ "object_name": "Gabbiani, F"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 256142,
+ "object_name": "Dewell RB, Gabbiani F (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "M-current in a collision detection neuron (LGMD model) (Dewell & Gabbiani 2018) ",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116948,
+ "object_name": "Locust Lobula Giant Movement Detector (LGMD) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...In this study, we demonstrate that the LGMD (Lobula Giant Movement Detector) neuron exhibits a large M\r\ncurrent, generated by noninactivating K\u0002 channels, that shortens the temporal window of dendritic integration, regulates a firing mode switch between burst and isolated spiking, increases the precision of spike timing, and increases the reliability of spike propagation to\r\ndownstream motor centers. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/241169",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dewell@bcm.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Dewell"
+ },
+ "ver_date": "2023-06-22T18:35:28.462620",
+ "ver_number": 5
+ },
+ "241240": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Holmes et al 2017"
+ },
+ "class_id": 19,
+ "created": "2018-05-25T18:09:25.857",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 241240,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 241772,
+ "object_name": "Holmes, William [holmes at ohio.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234737,
+ "object_name": "Holmes WR, Huwe JA, Williams B, Rowe MH, Peterson EH (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Role of afferent-hair cell connectivity in determining spike train regularity (Holmes et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 139834,
+ "object_name": "Vestibular neuron"
+ },
+ {
+ "object_id": 241766,
+ "object_name": "Turtle vestibular neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Vestibular bouton afferent terminals in turtle utricle\r\ncan be categorized into four types depending on their location and\r\nterminal arbor structure: lateral extrastriolar (LES), striolar, juxtastriolar,\r\nand medial extrastriolar (MES). The terminal arbors of these\r\nafferents differ in surface area, total length, collecting area, number of\r\nboutons, number of bouton contacts per hair cell, and axon diameter\r\n(Huwe JA, Logan CJ, Williams B, Rowe MH, Peterson EH. J\r\nNeurophysiol 113: 2420 \u20132433, 2015). To understand how differences\r\nin terminal morphology and the resulting hair cell inputs might affect\r\nafferent response properties, we modeled representative afferents\r\nfrom each region, using reconstructed bouton afferents. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/241240",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 241764,
+ "object_name": "Turtle vestibular system"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249927,
+ "object_name": "Turtle"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T13:02:41.427",
+ "ver_number": 15
+ },
+ "241796": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Telenczuk et al 2018"
+ },
+ "class_id": 19,
+ "created": "2018-05-31T15:30:04.6",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 241796,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 241794,
+ "object_name": "Telenczuk, Maria [mtelenczuk at unic.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 241795,
+ "object_name": "Telenczuk, Bartosz [bartosz.telenczuk at inaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241769,
+ "object_name": "Telenczuk M, Brette R, Destexhe A, Telenczuk B (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Contribution of the axon initial segment to APs recorded extracellularly (Telenczuk et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... It\r\nwas recently proposed that at onset of an (Action Potential) AP the soma and the (Axon Initial Segment) AIS form\r\na dipole.\r\n\r\nWe study the extracellular signature (the extracellular\r\naction potential, EAP) generated by such a dipole.\r\n\r\nFirst, we\r\ndemonstrate the formation of the dipole and its extracellular\r\nsignature in detailed morphological models of a reconstructed\r\npyramidal neuron.\r\n\r\nThen, we study the EAP waveform and its spatial\r\ndependence in models with axonal AP initiation and contrast it with\r\nthe EAP obtained in models with somatic AP initiation.\r\n\r\nWe show that in\r\nthe models with axonal AP initiation the dipole forms between\r\nsomatodendritic compartments and the AIS, and not between soma and\r\ndendrites as in the classical models.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/241796",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2018-05-31T15:50:11.867",
+ "ver_number": 3
+ },
+ "241826": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Pietak Levin 2017"
+ },
+ "class_id": 19,
+ "created": "2018-05-31T17:30:16.257",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 241826,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 241827,
+ "object_name": "Pietak, Alexis "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 225300,
+ "object_name": "Electrical-chemical"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241244,
+ "object_name": "Pietak A, Levin M (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 241828,
+ "object_name": "BETSE (web link to model)"
+ }
+ ]
+ },
+ "name": "Genetic, biochemical and bioelectrical dynamics in pattern regulation (Pietak & Levin 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Gene regulatory networks (GRNs) describe interactions between gene\r\nproducts and transcription factors that control gene expression. In\r\ncombination with reaction\u2013diffusion models, GRNs have enhanced\r\ncomprehension of biological pattern formation. However, although it is\r\nwell known that biological systems exploit an interplay of genetic and\r\nphysical mechanisms, instructive factors such as transmembrane\r\npotential (Vmem) have not been integrated into full GRN models. Here\r\nwe extend regulatory networks to include bioelectric signalling,\r\ndeveloping a novel synthesis: the bioelectricity-integrated gene and\r\nreaction (BIGR) network.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/241826",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2018-05-31T17:49:53.21",
+ "ver_number": 5
+ },
+ "241932": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 28701481 DOI: 10.1523/JNEUROSCI.3490-16.2017"
+ },
+ "class_id": 19,
+ "created": "2018-06-05T09:59:04.98",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 241932,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 241933,
+ "object_name": "Renn\u00f3-Costa, C\u00e9sar [rennocosta at neuro.ufrn.br]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 83540,
+ "object_name": "Winner-take-all"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 185463,
+ "object_name": "Pattern Separation"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241935,
+ "object_name": "Renn\u00f3-Costa C, Tort ABL (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Place and grid cells in a loop (Renn\u00f3-Costa & Tort 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model implements a loop circuit between place and grid cells. The model was used to explain place cell remapping and grid cell realignment. Grid cell model as a continuous attractor network. Place cells have recurrent attractor network. Rate models implemented with E%-MAX winner-take-all network dynamics, with gamma cycle time-step."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/241932",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Renn\u00f3-Costa, C. [Federal Unviersity of Rio Grande do Norte, Brazil]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rennocosta@neuro.ufrn.br"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "C\u00e9sar Renn\u00f3-Costa"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-06-06T15:44:27.55",
+ "ver_number": 9
+ },
+ "241979": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 28895002 PMCID: PMC5691111 DOI: 10.1007/s10827-017-0657-5\r\n\r\nSailamul, Pachaya, Jaeson Jang, and Se-Bum Paik. \"Synaptic convergence regulates synchronization-dependent spike transfer in feedforward neural networks.\" Journal of computational neuroscience 43.3 (2017): 189-202."
+ },
+ "class_id": 19,
+ "created": "2018-06-06T14:17:02.31",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 241979,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 242015,
+ "object_name": "Sailamul, Pachaya [pachaya_sailamul at brown.edu]"
+ },
+ {
+ "object_id": 242016,
+ "object_name": "Jang, Jaeson "
+ },
+ {
+ "object_id": 242017,
+ "object_name": "Paik, Se-Bum "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 242018,
+ "object_name": "Synaptic Convergence"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241981,
+ "object_name": "Sailamul P, Jang J, Paik SB (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Convergence regulates synchronization-dependent AP transfer in feedforward NNs (Sailamul et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We study how synchronization-dependent spike transfer can be affected by the structure of convergent feedforward wiring. \r\n\r\nWe implemented computer simulations of model neural networks: a source and a target layer connected with different types of convergent wiring rules. In the Gaussian-Gaussian (GG) model, both the connection probability and the strength are given as Gaussian distribution as a function of spatial distance. In the Uniform-Constant (UC) and Uniform-Exponential (UE) models, the connection probability density is a uniform constant within a certain range, but the connection strength is set as a constant value or an exponentially decaying function, respectively.\r\n\r\nThen we examined how the spike transfer function is modulated under these conditions, while static or synchronized input patterns were introduced to simulate different levels of feedforward spike synchronization. \r\nWe observed that the synchronization-dependent modulation of the transfer function appeared noticeably different for each convergence condition. The modulation of the spike transfer function was largest in the UC model, and smallest in the UE model. Our analysis showed that this difference was induced by the different spike weight distributions that was generated from convergent synapses in each model.\r\n\r\n Our results suggest that the structure of the feedforward convergence is a crucial factor for correlation-dependent spike control, thus must be considered important to understand the mechanism of information transfer in the brain."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/241979",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "synaptic convergence"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sailamul, Pachaya;\r\nJang, Jaeson;\r\nPaik, Se-Bum;"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Feedforward networks"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pachaya_sailamul@brown.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pachaya Sailamul"
+ },
+ "ver_date": "2018-06-06T17:29:32.85",
+ "ver_number": 6
+ },
+ "243212": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Aerts et al 2018"
+ },
+ "class_id": 19,
+ "created": "2018-06-12T17:28:14.847",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 243212,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 243213,
+ "object_name": "Brain Tumor"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 242982,
+ "object_name": "Aerts H, Schirner M, Jeurissen B, Van Roost D, Achten E, Ritter P, Marinazzo D (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 243210,
+ "object_name": "The Virtual Brain (web link to model)"
+ }
+ ]
+ },
+ "name": "Modeling brain dynamics in brain tumor patients using the Virtual Brain (Aerts et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Presurgical planning for brain tumor resection aims at delineating\r\neloquent tissue in the vicinity of the lesion to spare during\r\nsurgery. \r\n... we simulated large-scale brain dynamics in 25\r\nhuman brain tumor patients and 11 human control participants using The\r\nVirtual Brain, an open-source neuroinformatics platform. Local and\r\nglobal model parameters of the Reduced Wong\u2013Wang model were\r\nindividually optimized and compared between brain tumor patients and\r\ncontrol subjects. In addition, the relationship between model\r\nparameters and structural network topology and cognitive performance\r\nwas assessed. Results showed (1) significantly improved prediction\r\naccuracy of individual functional connectivity when using individually\r\noptimized model parameters; (2) local model parameters that can\r\ndifferentiate between regions directly affected by a tumor, regions\r\ndistant from a tumor, and regions in a healthy brain; and (3)\r\ninteresting associations between individually optimized model\r\nparameters and structural network topology and cognitive performance.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243212",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-06-12T17:34:25.763",
+ "ver_number": 3
+ },
+ "243350": {
+ "class_id": 19,
+ "created": "2018-06-15T05:52:21.787",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 243350,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 249460,
+ "object_name": "Aussel, Am\u00e9lie [amelie.aussel at loria.fr]"
+ },
+ {
+ "object_id": 249461,
+ "object_name": "Buhry, Laure "
+ },
+ {
+ "object_id": 249462,
+ "object_name": "Ranta, Radu "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 249458,
+ "object_name": "Theta oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249429,
+ "object_name": "Aussel A, Buhry L, Tyvaert L, Ranta R (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Model of the hippocampus over the sleep-wake cycle using Hodgkin-Huxley neurons (Aussel et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...we propose a\r\ncomputational model of the hippocampal formation based on a\r\nrealistic topology and synaptic connectivity, and we analyze the\r\neffect of different changes on the network, namely the variation\r\nof synaptic conductances, the variations of the CAN channel\r\nconductance and the variation of inputs. By using a detailed\r\nsimulation of intracerebral recordings, we show that this is able\r\nto reproduce both the theta-nested gamma oscillations that are\r\nseen in awake brains and the sharp-wave ripple complexes measured\r\nduring slow-wave sleep. The results of our simulations support\r\nthe idea that the functional connectivity of the hippocampus,\r\nmodulated by the sleep-wake variations in Acetylcholine\r\nconcentration, is a key factor in controlling its rhythms.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243350",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Brian2"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "amelie.aussel@loria.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Aussel Am\u00e9lie"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2019-01-18T15:19:15.48",
+ "ver_number": 9
+ },
+ "243446": {
+ "class_id": 19,
+ "created": "2018-06-19T03:53:29.17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 243446,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244383,
+ "object_name": "Zang, Yunliang "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244387,
+ "object_name": "Zang Y, Dieudonn\u00e9 S, De Schutter E (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Voltage- and Branch-specific Climbing Fiber Responses in Purkinje Cells (Zang et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Climbing fibers (CFs) provide instructive signals driving cerebellar\r\nlearning, but mechanisms causing the variable CF responses in Purkinje\r\ncells (PCs) are not fully understood. Using a new experimentally\r\nvalidated PC model, we unveil the ionic mechanisms underlying\r\nCF-evoked distinct spike waveforms on different parts of the PC. We\r\ndemonstrate that voltage can gate both the amplitude and the spatial\r\nrange of CF-evoked Ca2+ influx by the availability of K+\r\ncurrents.\r\n...\r\nThe voltage- and\r\nbranch-specific CF responses can increase dendritic computational\r\ncapacity and enable PCs to actively integrate CF signals.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243446",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zang, Yunliang"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yunliang.zang@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yunliang Zang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-09-23T09:56:05.17",
+ "ver_number": 16
+ },
+ "243447": {
+ "class_id": 19,
+ "created": "2018-06-19T14:31:00.19",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 243447,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146501,
+ "object_name": "Nicola, Wilten [wnicola at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261826,
+ "object_name": "Nicola W, Clopath C (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "SHOT-CA3, RO-CA1 Training, & Simulation CODE in models of hippocampal replay (Nicola & Clopath 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this code, we model the interaction between the medial septum and hippocampus as a FORCE trained, dual oscillator model. One oscillator corresponds to the medial septum and serves as an input, while a FORCE trained network of LIF neurons acts as a model of the CA3. We refer to this entire model as the Septal Hippocampal Oscillator Theta (or SHOT) network. \r\n\r\nThe code contained in this upload allows a user to train a SHOT network, train a population of reversion interneurons, and simulate the SHOT-CA3 and RO-CA1 networks after training. The code scripts are labeled to correspond to the figure from the manuscript. \r\n\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243447",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wnicola@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Wilten Nicola"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2019-07-08T16:29:09.34",
+ "ver_number": 19
+ },
+ "243448": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A biophysically detailed computational model of bladder small DRG neuron soma- \r\nMandge and Manchanda, 2018 (accepted PLOS Computational Biology, DOI: 10.1371/journal.pcbi.1006293)"
+ },
+ "class_id": 19,
+ "created": "2018-06-21T06:05:36.627",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 185112,
+ "object_name": "I TRPM8"
+ },
+ {
+ "object_id": 252,
+ "object_name": "I Cl,Ca"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ },
+ {
+ "object_id": 243505,
+ "object_name": "I Ca SOCC"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "icg_channel_details": {
+ "attr_id": 640,
+ "value": [
+ {
+ "object_id": 243449,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243450,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243451,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243452,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243453,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243454,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243455,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243456,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243457,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243458,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243459,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243460,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243461,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243462,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243463,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243464,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243465,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243466,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243467,
+ "object_name": "ICG Detail_243448"
+ },
+ {
+ "object_id": 243468,
+ "object_name": "ICG Detail_243448"
+ }
+ ]
+ },
+ "id": 243448,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 243502,
+ "object_name": "Mandge, Darshan [darshanmandge at iitb.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243501,
+ "object_name": "Mandge D, Manchanda R (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Computational model of bladder small DRG neuron soma (Mandge & Manchanda 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ },
+ {
+ "object_id": 243503,
+ "object_name": "Urinary Bladder small-diameter DRG neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Bladder small DRG neurons, which are putative nociceptors pivotal to urinary bladder function, express more than a dozen different ionic membrane mechanisms: ion channels, pumps and exchangers. Small-conductance Ca2+-activated K+ (SKCa) channels which were earlier thought to be gated solely by intracellular Ca2+ concentration ([Ca]i ) have recently been shown to exhibit inward rectification with respect to membrane potential. The effect of SKCa inward rectification on the excitability of these neurons is unknown. Furthermore, studies on the role of KCa channels in repetitive firing and their contributions to different types of afterhyperpolarization (AHP) in these neurons are lacking. In order to study these phenomena, we first constructed and validated a biophysically detailed single compartment model of bladder small DRG soma constrained by physiological data. The model includes twenty-two major known membrane mechanisms along with intracellular Ca2+ dynamics comprising Ca2+ diffusion, cytoplasmic buffering, and endoplasmic reticulum (ER) and mitochondrial mechanisms. Using modelling studies, we show that inward rectification of SKCa is an important parameter regulating neuronal repetitive firing and that its absence reduces action potential (AP) firing frequency. We also show that SKCa is more potent in reducing AP spiking than the large-conductance KCa channel (BKCa) in these neurons. Moreover, BKCa was found to contribute to the fast AHP (fAHP) and SKCa to the medium-duration (mAHP) and slow AHP (sAHP). We also report that the slow inactivating A-type K+ channel (slow KA) current in these neurons is composed of 2 components: an initial fast inactivating (time constant ~ 25-100 ms) and a slow inactivating (time constant ~ 200-800 ms) current. We discuss the implications of our findings, and how our detailed model can help further our understanding of the role of C-fibre afferents in the physiology of urinary bladder as well as in certain disorders."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243448",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Ca SOCC, IK Bkca, IK SKCa"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Darshan Mandge"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Urinary Bladder small-diameter DRG neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "darshanmandge@iitb.ac.in"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Darshan Mandge"
+ },
+ "ver_date": "2019-06-04T16:30:52.917",
+ "ver_number": 14
+ },
+ "243508": {
+ "class_id": 19,
+ "created": "2018-06-22T11:35:49.943",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 243508,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 246010,
+ "object_name": "Savtchenko, Leonid P [leonid.savtchenko at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 150554,
+ "object_name": "Calcium waves"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ },
+ {
+ "object_id": 183421,
+ "object_name": "Volume transmission"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246009,
+ "object_name": "Savtchenko LP, Bard L, Jensen TP, Reynolds JP, Kraev I, Medvedev N, Stewart MG, Henneberger C, Rusakov DA (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Disentangling astroglial physiology with a realistic cell model in silico (Savtchenko et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Electrically non-excitable astroglia take up neurotransmitters, buffer extracellular K+ and generate Ca2+ signals that release molecular regulators of neural circuitry. The underlying machinery remains enigmatic, mainly because the sponge-like astrocyte morphology has been difficult to access experimentally or explore theoretically. Here, we systematically incorporate multi-scale, tri-dimensional astroglial architecture into a realistic multi-compartmental cell model, which we constrain by empirical tests and integrate into the NEURON computational biophysical environment. This approach is implemented as a flexible astrocyte-model builder ASTRO. As a proof-of-concept, we explore an in silico astrocyte to evaluate basic cell physiology features inaccessible experimentally. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243508",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Morphology, Diffusion"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "leonid.savtchenko@ucl.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Leonid Savtchenko"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-10-24T10:04:28.15",
+ "ver_number": 21
+ },
+ "243510": {
+ "citation": {
+ "attr_id": 391,
+ "value": "C Vich, RW Berg, A Guillamon, S Ditlevsen - Frontiers in computational neuroscience, 2017"
+ },
+ "class_id": 19,
+ "created": "2018-06-25T10:04:12.19",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 243510,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 184150,
+ "object_name": "Vich, Catalina [catalina.vich at uib.es]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 243515,
+ "object_name": "Conductances estimation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243511,
+ "object_name": "Vich C, Berg RW, Guillamon A, Ditlevsen S (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "QIF method to estimate synaptic conductances (Vich et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 243514,
+ "object_name": "Abstract quadratic integrate-and-fire"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Subthreshold fluctuations in neuronal membrane potential traces\r\ncontain nonlinear components, and employing nonlinear models might\r\nimprove the statistical inference. We propose a new strategy to\r\nestimate synaptic conductances, which has been tested using in silico\r\ndata and applied to in vivo recordings. The model is constructed to\r\ncapture the nonlinearities caused by subthreshold activated currents,\r\nand the estimation procedure can discern between excitatory and\r\ninhibitory conductances using only one membrane potential trace.\r\n... The results show an improvement\r\ncompared to existent procedures for the models tested here.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243510",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Conductances estimation"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "subthreshold ionic currents"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Quadratic Integrate-and-fire"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "catalina.vich@uib.es"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Catalina Vich"
+ },
+ "ver_date": "2018-06-28T16:19:11.16",
+ "ver_number": 11
+ },
+ "243595": {
+ "class_id": 19,
+ "created": "2018-06-29T08:55:58.07",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 243595,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258745,
+ "object_name": "Soman, Karthik [karthi.soman at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258744,
+ "object_name": "Soman K, Muralidharan V, Chakravarthy VS (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "An oscillatory neural autoencoder based on frequency modulation and multiplexing (Soman et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We propose here an oscillatory neural network model that performs the function of an autoencoder. The model is a hybrid of rate-coded neurons and neural oscillators. Input signals modulate the frequency of the neural encoder oscillators. These signals are then multiplexed using a network of rate-code neurons that has afferent Hebbian and lateral anti-Hebbian connectivity, termed as Lateral Anti Hebbian Network (LAHN). Finally the LAHN output is de-multiplexed using an output neural layer which is a combination of adaptive Hopf and Kuramoto oscillators for the signal reconstruction. The Kuramoto-Hopf combination performing demodulation is a novel way of describing a neural phase-locked loop. The proposed model is tested using both synthetic signals and real world EEG signals. The proposed model arises out of the general motivation to construct biologically inspired, oscillatory versions of some of the standard neural network models, and presents itself as an autoencoder network based on oscillatory neurons applicable to time series signals. As a demonstration, the model is applied to compression of EEG signals.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243595",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "karthi.soman@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Karthik Soman"
+ },
+ "ver_date": "2019-08-28T17:50:55.393",
+ "ver_number": 9
+ },
+ "243841": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 29946922 DOI: 10.1007/s10827-018-0689-5"
+ },
+ "class_id": 19,
+ "created": "2018-07-05T13:49:55.337",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 243841,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 245798,
+ "object_name": "Touch"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 243850,
+ "object_name": "Gaines JL, Finn KE, Slopsema JP, Heyboer LA, Polasek KH (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Human somatosensory and motor axon pair to compare thresholds (Gaines et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "These motor and sensory axon models are based on the MRG axon model and the Howells motor and sensory compartment models. They take into account known differences in the channel properties between sensory and motor neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243841",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Somatosensory"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "polasek@hope.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Katharine Polasek"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2018-10-18T17:30:19.787",
+ "ver_number": 9
+ },
+ "243842": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Mahapatra C, Brain KL, Manchanda R (2018) A biophysically constrained computational model of the action potential of mouse urinary bladder smooth muscle PLOS One, accepted"
+ },
+ "class_id": 19,
+ "created": "2018-07-08T15:11:21.097",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "icg_channel_details": {
+ "attr_id": 640,
+ "value": [
+ {
+ "object_id": 243851,
+ "object_name": "ICG Detail_243842"
+ },
+ {
+ "object_id": 243852,
+ "object_name": "ICG Detail_243842"
+ },
+ {
+ "object_id": 243853,
+ "object_name": "ICG Detail_243842"
+ },
+ {
+ "object_id": 243854,
+ "object_name": "ICG Detail_243842"
+ }
+ ]
+ },
+ "id": 243842,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246185,
+ "object_name": "Mahapatra C, Brain KL, Manchanda R (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Action potential of mouse urinary bladder smooth muscle (Mahapatra et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Urinary incontinence is associated with enhanced spontaneous phasic contractions of the detrusor smooth muscle (DSM). Although a complete understanding of the etiology of these spontaneous contractions is not yet established, it is suggested that the spontaneously evoked action potentials (sAPs) in DSM cells initiate and modulate the contractions. In order to further our understanding of the ionic mechanisms underlying sAP generation, we present here a biophysically detailed computational model of a single DSM cell. First, we constructed mathematical models for nine ion channels found in DSM cells based on published experimental data: two voltage-gated Ca2+ ion channels, an hyperpolarization-activated ion channel, two voltage-gated K+ ion channels, three Ca2+-activated K+ ion channels and a non-specific background leak ion channel. Incorporating these channels, our DSM model is capable of reproducing experimentally recorded spike-type sAPs of varying configurations, ranging from sAPs displaying after-hyperpolarizations to sAPs displaying after-depolarizations. Our model, constrained heavily by physiological data, provides a powerful tool to investigate the ionic mechanisms underlying the genesis of DSM electrical activity, which can further shed light on certain aspects of urinary bladder function and dysfunction."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/243842",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chitaranjan Mahapatra (cmahapatra97@gmail.com)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Urinary Bladder Smooth Muscle (Detrusor) Cell"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Smooth Muscle Cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cmahapatra97@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Chitaranjan Mahapatra"
+ },
+ "ver_date": "2018-07-13T12:10:23.353",
+ "ver_number": 16
+ },
+ "244202": {
+ "citation": {
+ "attr_id": 391,
+ "value": "27121577"
+ },
+ "class_id": 19,
+ "created": "2018-07-24T19:06:21.827",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 88118,
+ "object_name": "I_KLT"
+ },
+ {
+ "object_id": 88117,
+ "object_name": "I_KHT"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244202,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244203,
+ "object_name": "Hight, Ariel E. "
+ },
+ {
+ "object_id": 244204,
+ "object_name": "Kalluri, Radha [radha at usc.edu]"
+ },
+ {
+ "object_id": 244205,
+ "object_name": "Ventura, Christopher M. "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 195623,
+ "object_name": "Hight AE, Kalluri R (2016)"
+ },
+ {
+ "object_id": 37966,
+ "object_name": "Rothman JS, Manis PB (2003)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A biophysical model of vestibular ganglion neurons (Hight & Kalluri 2016, Ventura & Kalluri 2018) ",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 206251,
+ "object_name": "Abstract integrate-and-fire leaky neuron with dendritic subunits"
+ },
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ },
+ {
+ "object_id": 139834,
+ "object_name": "Vestibular neuron"
+ },
+ {
+ "object_id": 241766,
+ "object_name": "Turtle vestibular neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A single compartment model in Matlab to represent vestibular ganglion neurons' somatic ion channels and their influence on firing patterns. Model is connected to a synthetic synaptic conductance to examine the relative influence of synaptic inputs and low-voltage gated potassium conductances on spike patterns."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244202",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ariel E. Hight\r\nRadha Kalluri\r\nChristopher M. Ventura"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "radha@usc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Radha Kalluri"
+ },
+ "ver_date": "2023-03-23T15:21:49.137",
+ "ver_number": 8
+ },
+ "244261": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Shimoura, R. O., Kamiji, N. L., Pena, R. F. O., Cordeiro, V. L., Ceballos, C. C., Cecilia, R., & Roque, A. C. (2018). [Re] The cell-type specific cortical microcircuit: relating structure and activity in a full-scale spiking network model. The ReScience Journal, 4.\r\nPotjans, T. C., & Diesmann, M. (2014). The cell-type specific cortical microcircuit: Relating structure and activity in a full-scale spiking network model. Cerebral Cortex, 24, 785\u2013806."
+ },
+ "class_id": 19,
+ "created": "2018-08-02T15:47:15.143",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244261,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244263,
+ "object_name": "Shimoura, Renan [renanshimoura at usp.br]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244268,
+ "object_name": "Shimoura RO, Kamiji NL, Pena RFO, Cordeiro VL, Ceballos CC, Cecilia R, Roque AC (2018)"
+ },
+ {
+ "object_id": 187435,
+ "object_name": "Potjans TC, Diesmann M (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "A full-scale cortical microcircuit spiking network model (Shimoura et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Reimplementation in BRIAN 2 simulator of a full-scale cortical microcircuit containing two cell types (excitatory and inhibitory) distributed in four layers, and represents the cortical network below a surface of 1 mm\u00b2 (Potjans & Diesmann, 2014)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244261",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Network dynamics"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Shimoura, Renan [renanshimoura at usp.br]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "renanshimoura@usp.br"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Renan Oliveira Shimoura"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-08-03T12:02:54.523",
+ "ver_number": 6
+ },
+ "244262": {
+ "citation": {
+ "attr_id": 391,
+ "value": "29694280"
+ },
+ "class_id": 19,
+ "created": "2018-08-03T00:00:26.933",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244262,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206236,
+ "object_name": "Kumaravelu, Karthik [kk192 at duke.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 139996,
+ "object_name": "Evoked LFP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244297,
+ "object_name": "Kumaravelu K, Oza CS, Behrend CE, Grill WM (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Deconstruction of cortical evoked potentials generated by subthalamic DBS (Kumaravelu et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227830,
+ "object_name": "Neocortex M1 L6 pyramidal corticothalamic GLU cell"
+ },
+ {
+ "object_id": 227970,
+ "object_name": "Neocortex M1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 230208,
+ "object_name": "Neocortex M1 L4 stellate GLU cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 182505,
+ "object_name": "Neocortex layer 4 neuron"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 217749,
+ "object_name": "Neocortex primary motor area pyramidal layer 5 corticospinal cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nHigh frequency deep brain stimulation (DBS) of the\r\nsubthalamic nucleus (STN) suppresses parkinsonian motor symptoms and\r\nmodulates cortical activity.\r\n\r\n...\r\n\r\nCortical evoked potentials (cEP) generated by STN DBS reflect\r\nthe response of cortex to subcortical stimulation, and the goal was to\r\ndetermine the neural origin of cEP using a two-step approach.\r\n\r\nFirst,\r\nwe recorded cEP over ipsilateral primary motor cortex during different\r\nfrequencies of STN DBS in awake healthy and unilateral 6-OHDA lesioned\r\nparkinsonian rats.\r\n\r\nSecond, we used a biophysically-based model of the\r\nthalamocortical network to deconstruct the neural origin of the\r\ncEP. The in vivo cEP included short (R1), intermediate (R2) and\r\nlong-latency (R3) responses. Model-based cortical responses to\r\nsimulated STN DBS matched remarkably well the in vivo responses.\r\n\r\nR1\r\nwas generated by antidromic activation of layer 5 pyramidal neurons,\r\nwhile recurrent activation of layer 5 pyramidal neurons via excitatory\r\naxon collaterals reproduced R2. R3 was generated by polysynaptic\r\nactivation of layer 2/3 pyramidal neurons via the\r\ncortico-thalamic-cortical pathway.\r\n\r\nAntidromic activation of the\r\nhyperdirect pathway and subsequent intracortical and\r\ncortico-thalamo-cortical synaptic interactions were sufficient to\r\ngenerate cEP by STN DBS, and orthodromic activation through basal\r\nganglia-thalamus-cortex pathways was not required. These results\r\ndemonstrate the utility of cEP to determine the neural elements\r\nactivated by STN DBS that might modulate cortical activity and\r\ncontribute to the suppression of parkinsonian symptoms.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244262",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "TCR, nRT neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kk192@duke.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Karthik Kumaravelu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T16:01:51.493",
+ "ver_number": 16
+ },
+ "244384": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Muddapu VR, Ramaswamy S, Chakravarthy SV (2018) A computational model of loss of dopaminergic cells in Parkinson\u2019s disease due to glutamate-induced excitotoxicity. bioRxiv Available at: http://biorxiv.org/content/early/2018/08/06/385138.abstract."
+ },
+ "class_id": 19,
+ "created": "2018-08-07T10:05:59.653",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244384,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 251109,
+ "object_name": "Muddapu, Vignayanandam R. [vignan.0009 at gmail.com]"
+ },
+ {
+ "object_id": 251110,
+ "object_name": "Chakravarthy, Srinivasa V. [schakra at iitm.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 250974,
+ "object_name": "Muddapu VR, Mandali A, Chakravarthy VS, Ramaswamy S (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Excitotoxic loss of dopaminergic cells in PD (Muddapu et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... A\r\ncouple of the proposed mechanisms, however, show\r\npotential for the\r\ndevelopment of a novel line of PD (Parkinson's disease) therapeutics. One of these\r\nmechanisms is the peculiar metabolic vulnerability of SNc (Substantia Nigra pars compacta) cells\r\ncompared to other dopaminergic clusters; the other is the SubThalamic\r\nNucleus (STN)-induced excitotoxicity in SNc. To investigate the latter\r\nhypothesis computationally, we developed a spiking neuron\r\nnetwork-model of SNc-STN-GPe system. In the model, prolonged\r\nstimulation of SNc cells by an overactive STN leads to an increase in\r\n\u2018stress\u2019 variable; when the stress in a SNc neuron exceeds a stress\r\nthreshold, the neuron dies. The model shows that the interaction\r\nbetween SNc and STN involves a positive-feedback due to which, an\r\ninitial loss of SNc cells that crosses a threshold causes a\r\nrunaway-effect, leading to an inexorable loss of SNc cells, strongly\r\nresembling the process of neurodegeneration. The model further\r\nsuggests a link between the two aforementioned mechanisms of SNc cell\r\nloss. Our simulation results show that the excitotoxic cause of SNc\r\ncell loss might initiate by weak-excitotoxicity mediated by energy\r\ndeficit, followed by strong-excitotoxicity, mediated by a disinhibited\r\nSTN. A variety of conventional therapies were simulated to test their\r\nefficacy in slowing down SNc cell loss. Among them, glutamate\r\ninhibition, dopamine restoration, subthalamotomy and deep brain\r\nstimulation showed superior neuroprotective-effects in the proposed\r\nmodel.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244384",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Vignayanandam R. Muddapu\r\nSrinivasa V. Chakravarthy"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vignan.0009@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Vignayanandam Ravindernath Muddapu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2019-03-04T10:38:23.23",
+ "ver_number": 11
+ },
+ "244412": {
+ "class_id": 19,
+ "created": "2018-08-07T20:28:27.16",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244412,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116577,
+ "object_name": "Solinas, Sergio [solinas at unipv.it]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 256390,
+ "object_name": "Solinas SMG, Edelmann E, Le\u00dfmann V, Migliore M (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "STDP and BDNF in CA1 spines (Solinas et al. 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Storing memory traces in the brain is essential for learning and memory formation. Memory traces are created by joint electrical activity in neurons that are interconnected by synapses and allow transferring electrical activity from a sending (presynaptic) to a receiving (postsynaptic) neuron. During learning, neurons that are co-active can tune synapses to become more effective. This process is called synaptic plasticity or long-term potentiation (LTP). Timing-dependent LTP (t-LTP) is a physiologically relevant type of synaptic plasticity that results from repeated sequential firing of action potentials (APs) in pre- and postsynaptic neurons. T-LTP is observed during learning in vivo and is a cellular correlate of memory formation. T-LTP can be elicited by different rhythms of synaptic activity that recruit distinct synaptic growth processes underlying t-LTP. The protein brain-derived neurotrophic factor (BDNF) is released at synapses and mediates synaptic growth in response to specific rhythms of t-LTP stimulation, while other rhythms mediate BDNF-independent t-LTP. \r\nHere, we developed a realistic computational model that accounts for our previously published experimental results of BDNF-independent 1:1 t-LTP (pairing of 1 presynaptic with 1 postsynaptic AP) and BDNF-dependent 1:4 t-LTP (pairing of 1 presynaptic with 4 postsynaptic APs). The model explains the magnitude and time course of both t-LTP forms and allows predicting t-LTP properties that result from altered BDNF turnover. \r\nSince BDNF levels are decreased in demented patients, understanding the function of BDNF in memory processes is of utmost importance to counteract Alzheimer\u2019s disease."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244412",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sergio Solinas\r\nMichele Migliore"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "TrkB"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Spine"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "smgsolinas@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sergio Solinas"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-01-30T13:32:23.027",
+ "ver_number": 39
+ },
+ "244414": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 24068903"
+ },
+ "class_id": 19,
+ "created": "2018-08-08T12:11:48.713",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 151550,
+ "object_name": "Channelrhodopsin (ChR)"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244414,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 97968,
+ "object_name": "Giugliano, Michele [mgiugliano at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151488,
+ "object_name": "Williams JC, Xu J, Lu Z, Klimas A, Chen X, Ambrosi CM, Cohen IS, Entcheva E (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Voltage and light-sensitive Channelrhodopsin-2 model (ChR2-H134R) (Williams et al. 2013) (NEURON)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Focusing on one of the most widely used ChR2 mutants (H134R) with enhanced current, we collected a comprehensive experimental data set of the response of this ion channel to different irradiances and voltages, and used these data to develop a model of ChR2 with empirically-derived voltage- and irradiance- dependence, where parameters were fine-tuned via simulated annealing optimization. This ChR2 model offers: 1) accurate inward rectification in the current-voltage response across irradiances; 2) empirically-derived voltage- and light-dependent kinetics (activation, deactivation and recovery from inactivation); and 3) accurate amplitude and morphology of the response across voltage and irradiance settings. Temperature-scaling factors (Q10) were derived and model kinetics was adjusted to physiological temperatures. ... \" "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244414",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "ChR2, mutant H134R"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Based on the MATLAB code by John C Williams."
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mgiugliano@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Giugliano"
+ },
+ "ver_date": "2018-08-10T12:22:14.217",
+ "ver_number": 7
+ },
+ "244416": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Combe CL, Canavier CC, Gasparini S. Intrinsic mechanisms of frequency selectivity in the proximal dendrites of CA1 pyramidal neurons. J Neurosci. 2018 Aug 3. pii: 0449-18. doi: 10.1523/JNEUROSCI.0449-18.2018. [Epub ahead of print] PMID: 30076213"
+ },
+ "class_id": 19,
+ "created": "2018-08-13T11:50:22.217",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244416,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33801,
+ "object_name": "Canavier, CC"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244418,
+ "object_name": "Combe CL, Canavier CC, Gasparini S (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron (Combe et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Gamma oscillations are thought to play a role in learning and memory. Two distinct bands, slow (25-50 Hz) and fast (65-100 Hz) gamma, have been identified in area CA1 of the rodent hippocampus. Slow gamma is phase-locked to activity in area CA3 and presumably driven by the Schaffer collaterals. We used a combination of computational modeling and in vitro electrophysiology in hippocampal slices of male rats to test whether CA1 neurons responded to Schaffer collateral stimulation selectively at slow gamma frequencies, and to identify the mechanisms involved. Both approaches demonstrated that in response to temporally precise input at Schaffer collaterals, CA1 pyramidal neurons fire preferentially in the slow gamma range regardless of whether the input is at fast or slow gamma frequencies, suggesting frequency selectivity in CA1 output with respect to CA3 input. In addition, phase-locking, assessed by the vector strength, was more precise for slow gamma than fast gamma input. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244416",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ccanav@lsuhsc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Carmen Canavier"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-08-17T22:35:22.283",
+ "ver_number": 10
+ },
+ "244485": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Gleit, Diniz Behn and Booth, J Biol Rhythms 28:339-355, 2013\r\nBooth, Xique and Diniz Behn, SIAM J Appl Dyn Sys 16(2):1089-1112, 2017"
+ },
+ "class_id": 19,
+ "created": "2018-08-18T16:28:23.973",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244485,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244486,
+ "object_name": "Booth, Victoria [vbooth at umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226774,
+ "object_name": "Gleit RD, Diniz Behn CG, Booth V (2013)"
+ },
+ {
+ "object_id": 244488,
+ "object_name": "Booth V, Xique I, Diniz Behn C (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Human sleep-wake regulatory network model (Gleit et al 2013, Booth et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A physiologically-based mathematical model of a sleep-wake regulatory network model for human sleep. The model simulates neurotransmitter-mediated interactions among hypothalamic and brainstem neuronal populations that promote wake, rapid eye movement (REM) sleep and non-REM (NREM) sleep. A neuronal population firing rate model formalism is used. The circadian rhythm pacemaker neuronal population, the suprachiasmatic nucleus (SCN), modulates activity in the wake- and sleep-promoting populations to entrain sleep-wake behavior to the ~24h circadian rhythm. A circadian clock oscillator model drives a 24h variation in the SCN firing rate and can be entrained to an externally imposed light:dark cycle. The default parameters replicate typical human sleep entrained to an external 14h:10h light:dark cycle"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244485",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Booth, Victoria"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vbooth@umich.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Victoria Booth"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2018-08-20T23:00:58.053",
+ "ver_number": 7
+ },
+ "244599": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PubMed: 30104340\r\nDOI:10.1523/JNEUROSCI.0651-18.2018"
+ },
+ "class_id": 19,
+ "created": "2018-08-20T15:28:59.573",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244599,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235324,
+ "object_name": "Lopez-Jury, Luciana [lucianalopezjury at gmail.com]"
+ },
+ {
+ "object_id": 33801,
+ "object_name": "Canavier, CC"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 227131,
+ "object_name": "Pacemaking mechanism"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244658,
+ "object_name": "L\u00f3pez-Jury L, Meza RC, Brown MTC, Henny P, Canavier CC (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Determinants of the intracellular and extracellular waveforms in DA neurons (Lopez-Jury et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To systematically address the contribution of AIS, dendritic and somatic compartments to shaping the two-component action potentials (APs), we modeled APs of male mouse and rat dopaminergic neurons. A parsimonious two-domain model, with high (AIS) and lower (dendro-somatic) Na+ conductance, reproduced the notch in the temporal derivatives, but not in the extracellular APs, regardless of morphology. The notch was only revealed when somatic active currents were reduced, constraining the model to three domains. Thus, an initial AIS spike is followed by an actively generated spike by the axon-bearing dendrite (ABD), in turn followed mostly passively by the soma. Larger AISs and thinner ABD (but not soma-to-AIS distance) accentuate the AIS component."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244599",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lucianalopezjury@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Luciana L\u00f3pez Jury"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2018-08-21T11:43:46.973",
+ "ver_number": 8
+ },
+ "244679": {
+ "class_id": 19,
+ "created": "2018-08-22T02:48:59.117",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244679,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244680,
+ "object_name": "Filipis, Luiza [luizafilipu at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249423,
+ "object_name": "Ait Ouares K, Filipis L, Tzilivaki A, Poirazi P, Canepari M (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cerebellum Purkinje cell: dendritic ion channels activated by climbing fibre (Ait Ouares et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In cerebellar Purkinje neuron (PN) dendrites, the transient\r\ndepolarisation associated with a climbing fibre (CF) EPSP\r\nactivates voltage-gated Ca2+ channels (VGCCs), voltage-gated K+\r\nchannels (VGKCs) and Ca2+ activated SK and BK K+ channels. The\r\nresulting membrane potential (Vm) and Ca2+ transients play a\r\nfundamental role in dendritic integration and synaptic plasticity\r\nof parallel fibre inputs. Here we report a detailed investigation\r\nof the kinetics of dendritic Ca2+ and K+ channels activated by\r\nCF-EPSPs, based on optical measurements of Vm and Ca2+ transients\r\nand on a single-compartment NEURON model reproducing experimental\r\ndata.\r\n... \""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244679",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Luiza Filipis"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "luizafilipu@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "filipis luiza"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-09-23T09:51:40.033",
+ "ver_number": 22
+ },
+ "244684": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Masquelier & Kheradpisheh (2018) Optimal localist and distributed coding of spatiotemporal spike patterns through STDP and coincidence detection. Frontiers in Computational Neuroscience."
+ },
+ "class_id": 19,
+ "created": "2018-08-25T04:09:33.287",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244684,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 123929,
+ "object_name": "Masquelier, Tim [timothee.masquelier at alum.mit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244686,
+ "object_name": "Masquelier T, Saeed Reza Kheradpisheh SR (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Optimal Localist and Distributed Coding Through STDP (Masquelier & Kheradpisheh 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We show how a LIF neuron equipped with STDP can become optimally selective, in an unsupervised manner, to one or several repeating spike patterns, even when those patterns are hidden in Poisson spike trains."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244684",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timothee.masquelier@alum.mit.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tim Masquelier"
+ },
+ "ver_date": "2018-09-13T14:32:06.327",
+ "ver_number": 4
+ },
+ "244687": {
+ "class_id": 19,
+ "created": "2018-08-26T04:56:04.933",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244687,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 225817,
+ "object_name": "Aghvami, S. Sara [ssa.aghvami at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249597,
+ "object_name": "Aghvami SS, M\u00fcller M, Araabi BN, Egger V (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Coincident signals in Olfactory Bulb Granule Cell spines (Aghvami et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 153283,
+ "object_name": "Olfactory bulb main interneuron granule TC GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In the mammalian olfactory bulb, the inhibitory axonless granule cells (GCs) feature reciprocal synapses that interconnect them with the principal neurons of the bulb, mitral, and tufted cells. These synapses are located within large excitable spines that can generate local action potentials (APs) upon synaptic input (\u201cspine spike\u201d). Moreover, GCs can fire global APs that propagate throughout the dendrite. Strikingly, local postsynaptic Ca2+ entry summates mostly linearly with Ca2+ entry due to coincident global APs generated by glomerular stimulation, although some underlying conductances should be inactivated. We investigated this phenomenon by constructing a compartmental GC model to simulate the pairing of local and global signals as a function of their temporal separation ?t. These simulations yield strongly sublinear summation of spine Ca2+ entry for the case of perfect coincidence ?t = 0 ms. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244687",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ssa.aghvami@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "S.Sara Aghvami"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2019-01-27T07:24:51.857",
+ "ver_number": 5
+ },
+ "244688": {
+ "class_id": 19,
+ "created": "2018-08-26T10:15:34.483",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244688,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 170033,
+ "object_name": "Migliore, Rosanna [rosanna.migliore at cnr.it]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245017,
+ "object_name": "Migliore R, Lupascu CA, Bologna LL, Romani A, Courcol JD, Antonel S, Van Geit WAH, Thomson AM, Mercer A, Lange S, Falck J, Roessert CA, Shi Y, Hagens O, Pezzoli M, Freund TF, Kali S, Muller EB, Schuermann F, Markram H, Migliore M (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 245004,
+ "object_name": "BluePyOpt\r\n"
+ }
+ ]
+ },
+ "name": "Channel density variability among CA1 neurons (Migliore et al. 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The peak conductance of many ion channel types measured in any given animal is highly variable across neurons, both within and between neuronal populations. The current view is that this occurs because a neuron needs to adapt its intrinsic electrophysiological properties either to maintain the same operative range in the presence of abnormal inputs or to compensate for the effects of pathological conditions. Limited experimental and modeling evidence suggests this might be implemented via the correlation and/or degeneracy in the function of multiple types of conductances. To study this mechanism in hippocampal CA1 neurons and interneurons, we systematically generated a set of morphologically and biophysically accurate models. We then analyzed the ensembles of peak conductance obtained for each model neuron. The results suggest that the set of conductances expressed in the various neuron types may be divided into two groups: one group is responsible for the major characteristics of the firing behavior in each population and the other more involved with degeneracy. These models provide experimentally testable predictions on the combination and relative proportion of the different conductance types that should be present in hippocampal CA1 pyramidal cells and interneurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244688",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Parameter Optimizations"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I CAT, I CAL"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampus CA1 interneurons"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "BluePyOPt"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@pa.ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Migliore"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2018-09-24T09:55:03.797",
+ "ver_number": 12
+ },
+ "244690": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Smolen P, Baxter DA, Byrne JH (2018). Paradoxical LTP maintenance with inhibition of protein synthesis and the proteasome suggests a novel protein synthesis requirement for early LTP reversal. J. Theor. Biol. (2018). doi: 10.1016/j.jtbi.2018.08.026 ."
+ },
+ "class_id": 19,
+ "created": "2018-08-27T14:26:20.587",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244690,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 149176,
+ "object_name": "Smolen, Paul [paul.d.smolen at uth.tmc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244691,
+ "object_name": "Smolen P, Baxter DA, Byrne JH (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "name": "Long term potentiation, LTP, protein synthesis, proteasome (Smolen et al. 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The transition from early long-term potentiation (E-LTP) to late LTP (L-LTP) involves protein synthesis and degradation. L-LTP is blocked by inhibiting either protein synthesis or proteasome-dependent degradation prior to and during a tetanic stimulus, but paradoxically, L-LTP is not blocked when synthesis and degradation are inhibited simultaneously, suggesting counter-acting positive and negative proteins regulate L-LTP. To investigate this paradox, we modeled LTP at the Schaffer collateral synapse. Nine differential equations describe the levels of positive and negative regulator proteins (PP and NP) and transitions among five discrete synaptic states, a basal state (BAS), three E-LTP states (EP1, EP2, ED), and a L-LTP state (LP). A stimulus initiates the transition from BAS to EP1 and from EP1 to EP2, initiates the synthesis of PP and NP, and activates the ubiquitin-proteasome system (UPS). UPS mediates transitions of EP1 and EP2 to ED and the degradation of NP. The conversion of E-LTP to L-LTP is mediated by a PP-dependent transition from ED to LP. NP mediates reversal of EP2 to BAS. This model simulates empirical observations: 1) normal L-LTP, 2) block by either proteasome inhibitor or protein synthesis inhibitor alone, and 3) preservation of L-LTP when both inhibitors are applied together. Elements of this abstract model can be correlated with specific molecules and processes. Moreover, the model makes testable predictions, such as a unique synaptic state ED that precedes the transition to L-LTP, and a time window for the action of the UPS (during the transitions from EP1 and EP2 to ED). Tests of these predictions will provide insights into the processes of long-term synaptic plasticity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244690",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Paul.D.Smolen@uth.tmc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Paul Smolen"
+ },
+ "ver_date": "2018-09-05T13:39:34.603",
+ "ver_number": 7
+ },
+ "244692": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Appukuttan, S., Sathe, R., & Manchanda, R. (2016, January). Influence of gap junction subtypes on passive and active electrical properties of syncytial tissues. In Systems in Medicine and Biology (ICSMB), 2016 International Conference on (pp. 128-131). IEEE. [DOI: https://doi.org/10.1109/ICSMB.2016.7915104]"
+ },
+ "class_id": 19,
+ "created": "2018-08-30T13:06:52.06",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244692,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 226424,
+ "object_name": "Appukuttan, Shailesh [shailesh.appukuttan at unic.cnrs-gif.fr;\r\nappukuttan.shailesh at gmail.com;]"
+ },
+ {
+ "object_id": 244695,
+ "object_name": "Sathe, Rohan "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244694,
+ "object_name": "Appukuttan S, Sathe R, Manchanda R (2016)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Gap junction subtypes (Appukuttan et al 2016)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Computational models of various gap junction sub-types including accommodating differences in their unitary conductances, voltage sensitivity and gating kinetics."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244692",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rohan Sathe"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shailesh.a@iitb.ac.in"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shailesh Appukuttan"
+ },
+ "ver_date": "2018-09-13T11:23:01.533",
+ "ver_number": 12
+ },
+ "244700": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.biorxiv.org/content/early/2017/05/14/137984"
+ },
+ "class_id": 19,
+ "created": "2018-09-04T07:01:05.057",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244700,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247724,
+ "object_name": "G\u00f3rski, Tomasz [gorski at inaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247723,
+ "object_name": "G\u00f3rski T, Veltz R, Galtier M, Fragnaud H, Goldman JS, Telenczuk B, Destexhe A (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Response to correlated synaptic input for HH/IF point neuron vs with dendrite (G\u00f3rski et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, we study computational models of neurons to investigate the functional effects of dendritic spikes. In agreement with previous studies, we found that point neurons or neurons with passive dendrites increase their somatic firing rate in response to the correlation of synaptic bombardment for a wide range of input conditions, i.e. input firing rates, synaptic conductances, or refractory periods. However, neurons with active dendrites show the opposite behavior: for a wide range of conditions the firing rate decreases as a function of correlation. We found this property in three types of models of dendritic excitability: a Hodgkin-Huxley model of dendritic spikes, a model with integrate and fire dendrites, and a discrete-state dendritic model. We conclude that fast dendritic spikes confer much broader computational properties to neurons, sometimes opposite to that of point neurons.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244700",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tomasz.gorski.14@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tomasz G\u00f3rski"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2018-12-14T12:21:32",
+ "ver_number": 19
+ },
+ "244848": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Basak R, Narayanan R (in Press), Active dendrites regulate the spatiotemporal spread of signaling microdomains, Plos. Comp. Biol"
+ },
+ "class_id": 19,
+ "created": "2018-09-10T04:02:47.887",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244848,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244851,
+ "object_name": "Basak, Reshma [reshmab at iisc.ac.in]"
+ },
+ {
+ "object_id": 147758,
+ "object_name": "Narayanan, Rishikesh [rishi at iisc.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 248776,
+ "object_name": "Basak R, Narayanan R (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Active dendrites shape signaling microdomains in hippocampal neurons (Basak & Narayanan 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The spatiotemporal spread of biochemical signals in neurons and other cells regulate signaling specificity, tuning of signal propagation, along with specificity and clustering of adaptive plasticity. Theoretical and experimental studies have demonstrated a critical role for cellular morphology and the topology of signaling networks in regulating this spread. In this study, we add a significantly complex dimension to this narrative by demonstrating that voltage-gated ion channels (A-type Potassium channels and T-type Calcium channels) on the plasma membrane could actively amplify or suppress the strength and spread of downstream signaling components. We employed a multiscale, multicompartmental, morphologically realistic, conductance-based model that accounted for the biophysics of electrical signaling and the biochemistry of calcium handling and downstream enzymatic signaling in a hippocampal pyramidal neuron. We chose the calcium \u2013 calmodulin \u2013 calcium/calmodulin-dependent protein kinase II (CaMKII) \u2013 protein phosphatase 1 (PP1) signaling pathway owing to its critical importance to several forms of neuronal plasticity, and employed physiologically relevant theta-burst stimulation (TBS) or theta-burst pairing (TBP) protocol to initiate a calcium microdomain through NMDAR activation at a synapse."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244848",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Calcium Microdomain"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Reshma Basak (reshmab@iisc.ac.in),\r\nRishikesh Narayanan (rishi@iisc.ac.in)"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Realistic morphology"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "reshmab@iisc.ac.in"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Reshma Basak"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T13:18:01.07",
+ "ver_number": 13
+ },
+ "244922": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Mukunda, C. L. and Narayanan, R. (2017), Degeneracy in the regulation of short-term plasticity and synaptic filtering by presynaptic mechanisms. J Physiol, 595: 2611-2637. doi:10.1113/JP273482"
+ },
+ "class_id": 19,
+ "created": "2018-09-13T11:03:43.303",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 244922,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245002,
+ "object_name": "Mukunda, Chinmayee L [chinmayeelm at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 245160,
+ "object_name": "Neurotransmitter dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245001,
+ "object_name": "Mukunda CL, Narayanan R (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Conductance based model for short term plasticity at CA3-CA1 synapses (Mukunda & Narayanan 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We develop a new biophysically rooted, physiologically constrained conductance-based synaptic model to mechanistically account for short-term facilitation and depression, respectively through residual calcium and transmitter depletion kinetics. The model exhibits different synaptic filtering profiles upon changing certain parameters in the base model. We show degenercy in achieving similar plasticity profiles with different presynaptic parameters. Finally, by virtually knocking out certain conductances, we show the differential contribution of conductances."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/244922",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Neurotransmitter dynamics"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Na, I CaL"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chinmayee L Mukunda"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "chinmayeelm@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Chinmayee L M"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2018-09-18T14:28:14.2",
+ "ver_number": 13
+ },
+ "245018": {
+ "class_id": 19,
+ "created": "2018-09-17T11:25:25.633",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245018,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 233400,
+ "object_name": "Zannone, Sara [s.zannone14 at imperial.ac.uk]"
+ },
+ {
+ "object_id": 144567,
+ "object_name": "Clopath, Claudia [c.clopath at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 116858,
+ "object_name": "Reward-modulated STDP"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 244600,
+ "object_name": "Zannone S, Brzosko Z, Paulsen O, Clopath C (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Acetylcholine-modulated plasticity in reward-driven navigation (Zannone et al 2018)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neuromodulation plays a fundamental role in the acquisition of new behaviours. In previous\r\nexperimental work, we showed that acetylcholine biases hippocampal synaptic plasticity towards\r\ndepression, and the subsequent application of dopamine can retroactively convert depression into\r\npotentiation. We also demonstrated that incorporating this sequentially neuromodulated Spike-\r\nTiming-Dependent Plasticity (STDP) rule in a network model of navigation yields effective learning\r\nof changing reward locations. Here, we employ computational modelling to further characterize the\r\neffects of cholinergic depression on behaviour. We find that acetylcholine, by allowing learning from\r\nnegative outcomes, enhances exploration over the action space. We show that this results in a variety\r\nof effects, depending on the structure of the model, the environment and the task. Interestingly,\r\nsequentially neuromodulated STDP also yields flexible learning, surpassing the performance of other\r\nreward-modulated plasticity rules.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245018",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sara Zannone, Claudia Clopath"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.zannone14@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sara Zannone"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249926,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:25:41.13",
+ "ver_number": 12
+ },
+ "245071": {
+ "class_id": 19,
+ "created": "2018-09-17T17:59:16.11",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245071,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266512,
+ "object_name": "Berteau, Stefan [berteau at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266511,
+ "object_name": "Berteau S, Bullock D (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 223029,
+ "object_name": "Predictive Coding Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Hippocampal CA1 pyramidal cell demonstrating dynamic mode switching (Berteau & Bullock 2020)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A simulated proposed single-cell mechanism for CA1\u2019s behavior as an associative mismatch detector. Shifts in spiking mode (accomplished via KCNQ interaction with chloride leak currents) signal matches vs. mismatches."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245071",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Associative Mismatch"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Berteau, Stefan"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stefan.berteau@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Stefan Berteau"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-06-03T13:53:47.04",
+ "ver_number": 9
+ },
+ "245409": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Chauhan, T., Masquelier, T., Montlibert, A., & Cottereau, B. R. (2018). Emergence of binocular disparity selectivity through Hebbian learning. Journal of Neuroscience, 1259-18."
+ },
+ "class_id": 19,
+ "created": "2018-09-30T16:42:59.02",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245409,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245410,
+ "object_name": "Chauhan, Tushar [research at tusharchauhan DOT com]"
+ },
+ {
+ "object_id": 245443,
+ "object_name": "Montlibert, Alexandre [Alexandre.Montlibert at cnrs.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245442,
+ "object_name": "Chauhan T, Masquelier T, Montlibert A, Cottereau BR (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hebbian STDP for modelling the emergence of disparity selectivity (Chauhan et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code shows how Hebbian learning mediated by STDP mechanisms could explain the emergence of disparity selectivity in the early visual system. This upload is a snapshot of the code at the time of acceptance of the paper. For a link to a soon-to-come git repository, consult the author's website: www.tusharchauhan.com/research/ .\r\n\r\n\r\nThe datasets used in the paper are not provided due to size, but download links and expected directory-structures are. The user can (and is strongly encouraged to) experiment with their own dataset. Let me know if you find something interesting!\r\n\r\n\r\nFinally, I am very keen on a redesign/restructure/adaptation of the code to more applied problems in AI and robotics (or any other field where a spiking non-linear approach makes sense). If you have a serious proposal, don't hesitate to contact me [research AT tusharchauhan DOT com ]. \r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245409",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "research@tusharchauhan.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tushar Chauhan"
+ },
+ "ver_date": "2018-10-17T17:35:43.337",
+ "ver_number": 8
+ },
+ "245411": {
+ "class_id": 19,
+ "created": "2018-10-01T16:07:02.313",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ },
+ {
+ "object_id": 122811,
+ "object_name": "Cav3.3 CACNA1I"
+ },
+ {
+ "object_id": 122814,
+ "object_name": "Cav1.2 CACNA1C"
+ },
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ },
+ {
+ "object_id": 122820,
+ "object_name": "Cav2.2 CACNA1B"
+ },
+ {
+ "object_id": 112842,
+ "object_name": "Kv4.2 KCND2"
+ },
+ {
+ "object_id": 185462,
+ "object_name": "Kir2.1 KCNJ2"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245411,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189722,
+ "object_name": "Dorman, Daniel B "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246842,
+ "object_name": "Dorman DB, Jedrzejewska-Szmek J, Blackwell KT (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Striatal Spiny Projection Neuron, inhibition enhances spatial specificity (Dorman et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We use a computational model of a striatal spiny projection neuron to investigate dendritic spine calcium dynamics in response to spatiotemporal patterns of synaptic inputs. We show that spine calcium elevation is stimulus-specific, with supralinear calcium elevation in cooperatively stimulated spines. Intermediate calcium elevation occurs in neighboring non-stimulated dendritic spines, predicting heterosynaptic effects. Inhibitory synaptic inputs enhance the difference between peak calcium in stimulated spines, and peak calcium in non-stimulated spines, thereby enhancing stimulus specificity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245411",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ddorman@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniel Dorman"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2018-12-12T16:06:18.857",
+ "ver_number": 15
+ },
+ "245412": {
+ "class_id": 19,
+ "created": "2018-10-02T11:30:16.58",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245412,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245413,
+ "object_name": "Zamora, Criseida [criseida.chimal at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 248648,
+ "object_name": "Zamora Chimal CG, De Schutter E (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 144556,
+ "object_name": "STEPS"
+ }
+ ]
+ },
+ "name": "Ca2+ requirements for Long-Term Depression in Purkinje Cells (Criseida Zamora et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An updated stochastic model of cerebellar Long-Term Depression (LTD) to study the requirements of calcium to induce LTD. Calcium signal is generated as a train of calcium pulses and this can be modulated by its amplitude, frequency, width and number of pulses.\r\nCaMKII activation and its regulatory pathway are added to an earlier published model to study the sensitivity to calcium frequency. The model is useful to investigate systematically the dependence of LTD induction on calcium stimuli parameters."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245412",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zamora Criseida (criseida.chimal at oist.jp)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "criseida.chimal@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Criseida Zamora"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2020-02-27T19:06:47.2",
+ "ver_number": 13
+ },
+ "245415": {
+ "class_id": 19,
+ "created": "2018-10-04T05:24:32.583",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245415,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 185339,
+ "object_name": "Zylbertal, Asaph [asaph.zylbertal at mail.huji.ac.il]"
+ },
+ {
+ "object_id": 245416,
+ "object_name": "Augustin, Hrvoje "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 255584,
+ "object_name": "Augustin H, Zylbertal A, Partridge L (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Escape response latency in the Giant Fiber System of Drosophila melanogastor (Augustin et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The Giant Fiber System (GFS) is a multi-component neuronal pathway mediating rapid escape response in the adult fruit-fly Drosophila melanogaster, usually in the face of a threatening visual stimulus. Two branches of the circuit promote the response by stimulating an escape jump followed by flight initiation. Our recent work demonstrated an age-associated decline in the speed of signal propagation through the circuit, measured as the stimulus-to-muscle depolarization response latency. The decline is likely due to the diminishing number of inter-neuronal gap junctions in the GFS of ageing flies. In this work, we presented a realistic conductance-based, computational model of the GFS that recapitulates our experimental results and identifies some of the critical anatomical and physiological components governing the circuit's response latency. According to our model, anatomical properties of the GFS neurons have a stronger impact on the transmission than neuronal membrane conductance densities. The model provides testable predictions for the effect of experimental interventions on the circuit's performance in young and ageing flies.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245415",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Augustin, Hrvoje"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Drosophila giant fiber, drosophila motoneurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "asaph.zylbertal@mail.huji.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Asaph Zylbertal"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2019-04-05T18:21:35.307",
+ "ver_number": 9
+ },
+ "245417": {
+ "class_id": 19,
+ "created": "2018-10-05T09:23:11.613",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245417,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 253930,
+ "object_name": "Giacalone, Elisabetta [elisabetta.giacalone at pa.ibf.cnr.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259335,
+ "object_name": "Martinello K, Giacalone E, Migliore M, Brown DA, Shah MM (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Hippocampal Mossy Fiber bouton: presynaptic KV7 channel function (Martinello et al 2019)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245417",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampal Mossy-fiber bouton"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Synaptic bouton"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@pa.ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Migliore"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2019-04-24T09:50:02.773",
+ "ver_number": 12
+ },
+ "245424": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Function and energy consumption constrain neuronal biophysics in a canonical computation: coincidence detection\r\nMichiel W.H. Remme, John Rinzel, Susanne Schreiber\r\nPLoS Comp Bio, under review"
+ },
+ "class_id": 19,
+ "created": "2018-10-07T12:12:16.583",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 88118,
+ "object_name": "I_KLT"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245424,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245425,
+ "object_name": "Remme, Michiel [michiel.remme at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249297,
+ "object_name": "Remme MWH, Rinzel J, Schreiber S (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Function and energy constrain neuronal biophysics in coincidence detection (Remme et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88110,
+ "object_name": "Medial Superior Olive (MSO) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We use models of conductance-based neurons constrained by experimentally observed characteristics with parameters varied within a physiologically realistic range. Our study shows that neuronal design of MSO cells does not compromise on function, but favors energetically less costly cell properties where possible without interfering with function.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245424",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Remme, Michiel W.H."
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michiel.remme@hu-berlin.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Remme"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2019-01-09T11:24:24.87",
+ "ver_number": 12
+ },
+ "245427": {
+ "class_id": 19,
+ "created": "2018-10-08T10:05:00.693",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 245427,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 253928,
+ "object_name": "Tell, Fabien [fabien.tell at univ-amu.fr]"
+ },
+ {
+ "object_id": 253929,
+ "object_name": "Moubarak, Estelle "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 227131,
+ "object_name": "Pacemaking mechanism"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259310,
+ "object_name": "Moubarak E, Engel D, Dufour MA, Tapia M, Tell F, Goaillard JM (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dopaminergic subtantia nigra neuron (Moubarak et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Axon initial segment (AIS) geometry critically influences neuronal excitability. Interestingly, the axon of substantia nigra pars compacta (SNc) dopaminergic (DA) neurons displays a highly variable location and most often arises from an axon-bearing dendrite (ABD). We combined current-clamp somatic and dendritic recordings, outside-out recordings of dendritic sodium and potassium currents, morphological reconstructions and multi-compartment modelling to determine cell-to-cell variations in AIS and ABD geometry and their influence on neuronal output (spontaneous pacemaking frequency, AP shape). Both AIS and ABD geometries are highly variable between SNc DA neurons. Surprisingly, we found that AP shape and pacemaking frequency were independent of AIS geometry. Modelling realistic morphological and biophysical variations clarify this result: in SNc DA neurons, the complexity of the ABD combined with its excitability predominantly define pacemaking frequency and AP shape, such that large variations in AIS geometry negligibly affect neuronal output, and are tolerated."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245427",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tell Fabien\r\nMoubarak estelle "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fabien.tell@univ-amu.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "TELL"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2019-03-29T13:55:30.543",
+ "ver_number": 13
+ },
+ "245445": {
+ "citation": {
+ "attr_id": 391,
+ "value": "DOI: 10.1371/journal.pcbi.1006536"
+ },
+ "class_id": 19,
+ "created": "2018-10-10T07:14:05.257",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245445,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245448,
+ "object_name": "Chan, Ho Ka [chanhoka911212 at yahoo.com.hk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 248676,
+ "object_name": "Chan HK, Hersperger F, Marachlian E, Smith BH, Locatelli F, Szyszka P, Nowotny T (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Honey bee receptor and antennal lobe model (Chan et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 268,
+ "object_name": "Olfactory receptor GLU cell"
+ },
+ {
+ "object_id": 3266,
+ "object_name": "Antennal lobe olfactory projection neuron (insect)"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model consists of the full repertoire of honey bees' receptors and glomeruli. It fits to the statistics of data from Galizia et al (1999) and Gremiaux et al (2012). Parameters can be changed to (statistically) fit to other data sets."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245445",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chan, Ho Ka"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "insect olfactory receptor"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "IF neuron network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "chanhoka911212@yahoo.com.hk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ho Ka Chan"
+ },
+ "ver_date": "2018-10-17T16:22:24.033",
+ "ver_number": 9
+ },
+ "245529": {
+ "citation": {
+ "attr_id": 391,
+ "value": "27523748"
+ },
+ "class_id": 19,
+ "created": "2018-10-15T15:15:09.557",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245529,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 231303,
+ "object_name": "Luczak V, Blackwell KT, Abel T, Girault JA, Gervasi N (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "name": "Compartmental differences in cAMP signaling pathways in hippocam. CA1 pyr. cells (Luczak et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of cAMP signaling pathways in hippocampal CA1 pyramidal neurons investigate mechanisms underlying the experimentally observed difference in cAMP and PKA FRET between proximal and distal dendrites. Simulations show that compartmental difference in PKA activity required enrichment of protein phosphatase in small compartments; neither reduced PKA subunits nor increased PKA substrates were sufficient."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245529",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "NeuroRD-3.0.0.8"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kim Blackwell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 215,
+ "object_name": "Adrenergic"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "species": {
+ "attr_id": 689,
+ "value": [
+ {
+ "object_id": 249926,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2019-02-26T10:26:01.88",
+ "ver_number": 10
+ },
+ "245563": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Jedrzejewski-Szmek et al 2018"
+ },
+ "class_id": 19,
+ "created": "2018-10-16T13:48:05.18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245563,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245561,
+ "object_name": "Jedrzejewski-Szmek, Zbigniew "
+ },
+ {
+ "object_id": 189720,
+ "object_name": "Jedrzejewska-Szmek, Joanna "
+ },
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245531,
+ "object_name": "Jedrzejewski-Szmek Z, Abrahao KP, Jedrzejewska-Szmek J, Lovinger DM, Blackwell KT (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 186718,
+ "object_name": "MOOSE/PyMOOSE"
+ }
+ ]
+ },
+ "name": "Parameter optimization using CMA-ES (Jedrzejewski-Szmek et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Computational models in neuroscience can be used to predict causal\r\nrelationships between biological mechanisms in neurons and networks,\r\nsuch as the effect of blocking an ion channel or synaptic connection\r\non neuron activity. Since developing a biophysically realistic, single\r\nneuron model is exceedingly difficult, software has been developed for\r\nautomatically adjusting parameters of computational neuronal\r\nmodels. The ideal optimization software should work with commonly used\r\nneural simulation software; thus, we present software which works with\r\nmodels specified in declarative format for the MOOSE\r\nsimulator. Experimental data can be specified using one of two\r\ndifferent file formats. The fitness function is customizable as a\r\nweighted combination of feature differences. The optimization itself\r\nuses the covariance matrix adaptation-evolutionary strategy, because\r\nit is robust in the face of local fluctuations of the fitness\r\nfunction, and deals well with a high-dimensional and discontinuous\r\nfitness landscape. We demonstrate the versatility of the software by\r\ncreating several model examples of each of four types of neurons (two\r\nsubtypes of spiny projection neurons and two subtypes of globus\r\npallidus neurons) by tuning to current clamp data.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245563",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Avrama Blackwell"
+ },
+ "ver_date": "2019-02-21T17:27:28.983",
+ "ver_number": 5
+ },
+ "245805": {
+ "citation": {
+ "attr_id": 391,
+ "value": "smith sl et al 2013"
+ },
+ "class_id": 19,
+ "created": "2018-10-19T16:59:50.473",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245805,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 245806,
+ "object_name": "Branco, Tiago "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 156249,
+ "object_name": "Smith SL, Smith IT, Branco T, H\u00e4usser M (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Dendritic spikes enhance stimulus selectivity in cortical neurons in vivo (Smith et al 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neuronal dendrites are electrically excitable: they can generate regenerative events such as dendritic spikes in response to sufficiently strong synaptic input. Although such events have been observed in many neuronal types, it is not well understood how active dendrites contribute to the tuning of neuronal output in vivo. Here we show that dendritic spikes increase the selectivity of neuronal responses to the orientation of a visual stimulus (orientation tuning). ...\"."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245805",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-10-19T17:06:05.687",
+ "ver_number": 3
+ },
+ "245818": {
+ "citation": {
+ "attr_id": 391,
+ "value": "M. Chessa and F. Solari. \r\nA Computational Model for the Neural Representation and Estimation of the \r\nBinocular Vector Disparity from Convergent Stereo Image Pairs. \r\nInternational Journal of Neural Systems, 28, art. no. 1850029, 2018\r\nDOI: https://doi.org/10.1142/S0129065718500296"
+ },
+ "class_id": 19,
+ "created": "2018-10-23T08:57:46.287",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245818,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 181037,
+ "object_name": "Solari, Fabio [fabio.solari at unige.it]"
+ },
+ {
+ "object_id": 181036,
+ "object_name": "Chessa, Manuela [manuela.chessa at unige.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ },
+ {
+ "object_id": 245934,
+ "object_name": "Disparity estimation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245819,
+ "object_name": "Chessa M, Solari F (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A Computational Model for the Binocular Vector Disparity Estimation (Chessa & Solari 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A biologically-inspired model of disparity estimation: we consider the disparity patterns that arise when artificial and living beings fixate objects in the surrounding environment, in these situations the disparity is a vector quantity (i.e. vertical and horizontal disparities)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245818",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "disparity estimation"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fabio.solari@unige.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fabio Solari"
+ },
+ "ver_date": "2018-10-23T11:14:00.963",
+ "ver_number": 5
+ },
+ "245879": {
+ "citation": {
+ "attr_id": 391,
+ "value": "ON-OFF receptive fields in auditory cortex diverge during development and contribute to directional sweep selectivity\r\nSollini, Chapuis, Clopath, Chadderton \r\nNature Communications volume 9, Article number: 2084 (2018) \r\n\r\nhttps://www.nature.com/articles/s41467-018-04548-3"
+ },
+ "class_id": 19,
+ "created": "2018-10-23T10:08:27.067",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245879,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144567,
+ "object_name": "Clopath, Claudia [c.clopath at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 245692,
+ "object_name": "Audition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245939,
+ "object_name": "Sollini J, Chapuis GA, Clopath C, Chadderton P (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Plasticity forms non-overlapping adjacent ON and OFF RFs in cortical neurons (Sollini et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Hebbian plasticity of a feedforward network modelling ON-OFF receptive field changes in auditory cortex."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245879",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Rate-based neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "c.clopath@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Claudia Clopath"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-10-23T15:13:18.567",
+ "ver_number": 7
+ },
+ "245926": {
+ "class_id": 19,
+ "created": "2018-10-23T10:52:19.99",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 245926,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144404,
+ "object_name": "Prinz, Astrid [astrid.prinz at emory.edu]"
+ },
+ {
+ "object_id": 245936,
+ "object_name": "Tian, Kun [io.kuntian at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265577,
+ "object_name": "McKinnon ML, Tian K, Li Y, Sokoloff AJ, Galvin ML, Choi MH, Prinz A, Hochman S (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Conductance-based model of rodent thoracic sympathetic postganglionic neuron (McKinnon et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Thoracic sympathetic postganglionic neurons (tSPNs) represent the final neural output for control of vasomotor and thermoregulatory function. We used whole-cell recordings and computational modeling to provide broad insight on intrinsic cellular mechanisms controlling excitability and capacity for synaptic integration. Compared to past intracellular recordings using microelectrode impalement, we observed dramatically higher membrane resistivity with primacy in controlling enhanced tSPN excitability and recruitment via synaptic integration. Compared to reported phasic firing, all tSPNs fire repetitively and linearly encode injected current magnitude to firing frequency over a broad range. Modeling studies suggest microelectrode impalement injury accounts for differences in tSPN properties previously observed. Overall, intrinsic tSPN excitability plays a much greater role in the integration and maintenance of sympathetic output than previously thought.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/245926",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I CaL"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kun Tian (io.kuntian at gmail.com)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Sympathetic postganglionic neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "io.kuntian@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kun Tian"
+ },
+ "ver_date": "2020-05-08T15:04:59.287",
+ "ver_number": 7
+ },
+ "246004": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Jake P. Stroud, Mason A. Porter, Guillaume Hennequin, Tim P. Vogels, Motor primitives in space and time via targeted gain modulation in cortical networks, Nature Neuroscience, 2018."
+ },
+ "class_id": 19,
+ "created": "2018-10-24T05:50:37.353",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 246004,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 246128,
+ "object_name": "Stroud, Jake P [jp.stroud at hotmail.com]"
+ },
+ {
+ "object_id": 246129,
+ "object_name": "Hennequin, Guillaume "
+ },
+ {
+ "object_id": 143822,
+ "object_name": "Vogels, Tim [tim.vogels at epfl.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246013,
+ "object_name": "Stroud JP, Porter MA, Hennequin G, Vogels TP (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Modelling gain modulation in stability-optimised circuits (Stroud et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We supply Matlab code to create 'stability-optimised circuits'. These networks can give rise to rich neural activity transients that resemble primary motor cortex recordings in monkeys during reaching. We also supply code that allows one to learn new network outputs by changing the input-output gain of neurons in a stability-optimised network. Our code recreates the main results of Figure 1 in our related publication."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/246004",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jp.stroud@hotmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jake P Stroud"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 179,
+ "object_name": "M1"
+ }
+ ]
+ },
+ "ver_date": "2018-10-24T11:16:16.693",
+ "ver_number": 6
+ },
+ "246535": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Verhulst, S., Alto\u00e8, A., & Vasilkov, V. (2018). Computational modeling of the human auditory periphery: Auditory-nerve responses, evoked potentials and hearing loss. Hearing research, 360, 55-75.\r\n\r\nAlto\u00e8, A., Pulkki, V., & Verhulst, S. (2018). The effects of the activation of the inner-hair-cell basolateral K+ channels on auditory nerve responses. Hearing research, 364, 68-80.\r\n\r\nAlto\u00e8, A., Pulkki, V., & Verhulst, S. (2014). Transmission line cochlear models: improved accuracy and efficiency. The Journal of the Acoustical Society of America, 136(4), EL302-EL308.\r\n\r\nVerhulst, S., Dau, T., & Shera, C. A. (2012). Nonlinear time-domain cochlear model for transient stimulation and human otoacoustic emission. The Journal of the Acoustical Society of America, 132(6), 3842-3848."
+ },
+ "class_id": 19,
+ "created": "2018-11-04T13:09:56.173",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 246535,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 246539,
+ "object_name": "Verhulst, Sarah [s.verhulst at ugent.be]"
+ },
+ {
+ "object_id": 246540,
+ "object_name": "Alto\u00e9, Alessandro "
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246538,
+ "object_name": "Verhulst S, Alto\u00e8 A, Vasilkov V (2018)"
+ },
+ {
+ "object_id": 246542,
+ "object_name": "Alto\u00e8 A, Pulkki V, Verhulst S (2018)"
+ },
+ {
+ "object_id": 246543,
+ "object_name": "Alto\u00e8 A, Pulkki V, Verhulst S (2014)"
+ },
+ {
+ "object_id": 246544,
+ "object_name": "Verhulst S, Dau T, Shera CA (2012)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Human auditory periphery model: cochlea, IHC-AN, auditory brainstem responses (Verhulst et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 238352,
+ "object_name": "Cochlea hair inner GLU cell"
+ },
+ {
+ "object_id": 273,
+ "object_name": "Cochlear nucleus bushy GLU cell"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ },
+ {
+ "object_id": 185139,
+ "object_name": "Brainstem neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The human auditory periphery model can simulate single-unit response of basilar-membrane vibration, IHC receptor potential, instantaneous AN/CN/IC firing rates, as well as population responses such as otoacoustic emissions, auditory brainstem responses. The neuron models (IHC, AN,CN,IC) can be run independently to relate their responses to electrophysiology, or be simulated as part of the human auditory periphery."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/246535",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Sarah Verhulst\r\nAlessandro Alto\u00e9"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.verhulst@ugent.be"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sarah Verhulst"
+ },
+ "ver_date": "2019-06-04T15:44:12.963",
+ "ver_number": 6
+ },
+ "246546": {
+ "class_id": 19,
+ "created": "2018-11-08T12:03:55.377",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 246546,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206377,
+ "object_name": "Chavlis, Spyridon [schavlis at imbb.forth.gr]"
+ },
+ {
+ "object_id": 249698,
+ "object_name": "Pandi, Ioanna "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249697,
+ "object_name": "Turi GF, Li W, Chavlis S, Pandi I, O\u2019Hare J, Priestley JB, Grosmark AD, Liao Z, Ladow M, Zhang JF, Zemelman BV, Poirazi P, Losonczy A (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ }
+ ]
+ },
+ "name": "CA1 network model for place cell dynamics (Turi et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ },
+ {
+ "object_id": 227332,
+ "object_name": "Hippocampus CA1 basket cell - CCK/VIP"
+ },
+ {
+ "object_id": 151329,
+ "object_name": "Hippocampus CA1 bistratified cell"
+ },
+ {
+ "object_id": 151330,
+ "object_name": "Hippocampus CA1 axo-axonic cell"
+ },
+ {
+ "object_id": 190560,
+ "object_name": "Hippocampus CA1 stratum oriens lacunosum-moleculare interneuron "
+ },
+ {
+ "object_id": 249699,
+ "object_name": "Hippocampal CA1 CR/VIP cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Biophysical model of CA1 hippocampal region. The model simulates place cells/fields and explores the place cell dynamics as function of VIP+ interneurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/246546",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampal CA1 CR/VIP cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "schavlis@imbb.forth.gr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Spyridon Chavlis"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-05-02T14:52:08.907",
+ "ver_number": 9
+ },
+ "246837": {
+ "citation": {
+ "attr_id": 391,
+ "value": "LUBBA ET AL 2018"
+ },
+ "class_id": 19,
+ "created": "2018-11-12T12:22:24.093",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 246837,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 246838,
+ "object_name": "Lubba, Carl Henning [c.lubba15 at imperial.ac.uk]"
+ },
+ {
+ "object_id": 246839,
+ "object_name": "Le Guen, Yann "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246835,
+ "object_name": "Lubba CH, Le Guen Y, Jarvis S, Jones NS, Cork SC, Eftekhar A, Schultz SR (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "PyPNS: Multiscale Simulation of a Peripheral Nerve in Python (Lubba et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... To reduce experimentation load and allow for a faster, more detailed analysis of peripheral nerve stimulation and recording, computational models incorporating experimental insights will be of great help. We present a peripheral nerve simulator that combines biophysical axon models and numerically solved and idealised extracellular space models in one environment. We modelled the extracellular space as a three-dimensional resistive continuum governed by the electro-quasistatic approximation of the Maxwell equations. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/246837",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@YALE.EDU"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom MOrse"
+ },
+ "ver_date": "2018-11-12T14:02:17.153",
+ "ver_number": 5
+ },
+ "247179": {
+ "class_id": 19,
+ "created": "2018-11-15T13:53:39.597",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247179,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 150219,
+ "object_name": "Reliability"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247178,
+ "object_name": "Sadashivaiah V, Sacr\u00e9 P, Guan Y, Anderson WS, Sarma SV (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Stimulated and physiologically induced APs: frequency and fiber diameter (Sadashivaiah et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...\r\nIn this study, we\r\naim to quantify the effects of stimulation frequency and fiber\r\ndiameter on AP (Action Potential) interactions involving collisions and loss of\r\nexcitability. We constructed a mechanistic model of a myelinated nerve\r\nfiber receiving two inputs: the underlying physiological activity at\r\nthe terminal end of the fiber, and an external stimulus applied to the\r\nmiddle of the fiber. We define conduction reliability as the\r\npercentage of physiological APs that make it to the somatic end of the\r\nnerve fiber. At low input frequencies, conduction reliability is\r\ngreater than 95% and decreases with increasing frequency due to an\r\nincrease in AP interactions. Conduction reliability is less sensitive\r\nto fiber diameter and only decreases slightly with increasing fiber\r\ndiameter. Finally, both the number and type of AP interactions\r\nsignificantly vary with both input frequencies and fiber\r\ndiameter.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247179",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-11-15T13:55:32.58",
+ "ver_number": 3
+ },
+ "247188": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Top-down inputs drive neuronal network rewiring and context-enhanced sensory processing in olfaction,\r\nWayne Adams, James N. Graham, Xuchen Han, Hermann Riecke,\r\nPLoS Computational Biology (in print)"
+ },
+ "class_id": 19,
+ "created": "2018-11-18T15:20:07.37",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247188,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247195,
+ "object_name": "Riecke, Hermann [h-riecke at northwestern.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 155599,
+ "object_name": "Neurogenesis"
+ },
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ },
+ {
+ "object_id": 185463,
+ "object_name": "Pattern Separation"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 247213,
+ "object_name": "Top-down input"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 253326,
+ "object_name": "Adams W, Graham JN, Han X, Riecke H (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Neurogenesis in the olfactory bulb controlled by top-down input (Adams et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code implements a model for adult neurogenesis of granule cells in the olfactory system. The granule cells receive sensory input via the mitral cells and top-down input from a cortical area. That cortical area also receives olfactory input from the mitral cells as well as contextual input. This plasticity leads to a network structure consisting of bidirectional connections between bulbar and cortical odor representations. The top-down input enhances stimulus discrimination based on contextual input."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247188",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Top-down input"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Riecke, Hermann"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Neuronal Network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "h-riecke@northwestern.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Hermann Riecke"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ },
+ {
+ "object_id": 115949,
+ "object_name": "Olfactory cortex"
+ }
+ ]
+ },
+ "ver_date": "2018-11-19T22:29:50.453",
+ "ver_number": 7
+ },
+ "247191": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Brette 2013"
+ },
+ "class_id": 19,
+ "created": "2018-11-19T13:09:55.79",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247191,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 184071,
+ "object_name": "Brette R (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 236518,
+ "object_name": "Brian 2 (web link to model)"
+ }
+ ]
+ },
+ "name": "Sharpness of spike initiation in neurons explained by compartmentalization (Brette 2013)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Spike initiation determines how the combined inputs to a neuron are converted to an output. Since the pioneering work of Hodgkin and Huxley, it is known that spikes are generated by the opening of sodium channels with depolarization. According to this standard theory, these channels should open gradually when the membrane potential increases, but spikes measured at the soma appear to suddenly rise from rest. This apparent contradiction has triggered a controversy about the origin of spike \u201csharpness.\u201d This study shows with biophysical modelling that if sodium channels are placed in the axon rather than in the soma, they open all at once when the somatic membrane potential exceeds a critical value. This work explains the sharpness of spike initiation and provides another demonstration that morphology plays a critical role in neural function.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247191",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Mrose"
+ },
+ "ver_date": "2018-11-19T13:25:23.513",
+ "ver_number": 2
+ },
+ "247196": {
+ "citation": {
+ "attr_id": 391,
+ "value": "hindmarsh rose 1984"
+ },
+ "class_id": 19,
+ "created": "2018-11-19T15:08:30.933",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247196,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 117085,
+ "object_name": "Hindmarsh JL, Rose RM (1984)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 236518,
+ "object_name": "Brian 2 (web link to model)"
+ }
+ ]
+ },
+ "name": "A model of neuronal bursting using three coupled first order diff. eqs. (Hindmarsh & Rose 1984)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 188553,
+ "object_name": "Abstract Hindmarsh-Rose neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "R Brette's Brian 2 implementation of the classic Hindmarsh-Rose 1984 dynamical system representing neuronal bursting."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247196",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-11-19T15:29:03.26",
+ "ver_number": 3
+ },
+ "247209": {
+ "class_id": 19,
+ "created": "2018-11-19T15:30:13.14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247209,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83453,
+ "object_name": "Brette R"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4161,
+ "object_name": "Destexhe A, Neubig M, Ulrich D, Huguenard J (1998)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 236518,
+ "object_name": "Brian 2 (web link to model)"
+ }
+ ]
+ },
+ "name": "Low Threshold Calcium Currents in TC cells (Destexhe et al 1998) (Brian)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "R Brette's implementation in Brian 2 of Destexhe et al 1998's model. The author's original code is also available from ModelDB with accession number 279 (yes, was one of the first models in ModelDB)!"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247209",
+ "runprotocols": {
+ "attr_id": 613,
+ "value": [
+ {
+ "object_id": 181344,
+ "object_name": "279_4"
+ },
+ {
+ "object_id": 181345,
+ "object_name": "279_5"
+ },
+ {
+ "object_id": 181346,
+ "object_name": "279_2"
+ },
+ {
+ "object_id": 181347,
+ "object_name": "279_3"
+ },
+ {
+ "object_id": 181348,
+ "object_name": "279_1"
+ }
+ ]
+ },
+ "ver_date": "2018-11-19T15:51:50.83",
+ "ver_number": 7
+ },
+ "247310": {
+ "class_id": 19,
+ "created": "2018-11-26T16:21:01.65",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247310,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 248205,
+ "object_name": "Grado LL, Johnson MD, Netoff TI (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Adaptive dual control of deep brain stimulation in Parkinsons disease simulations (Grado et al 2018)",
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247310",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Mean Field Model"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Mean Field Model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "grado@umn.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Logan Grado"
+ },
+ "ver_date": "2018-11-26T17:10:02.167",
+ "ver_number": 3
+ },
+ "247646": {
+ "citation": {
+ "attr_id": 391,
+ "value": "bertram et al 2008"
+ },
+ "class_id": 19,
+ "created": "2018-11-28T11:20:00.3",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247646,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247222,
+ "object_name": "Bertram R, Rhoads J, Cimbora WP (2008)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ },
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "A phantom bursting mechanism for episodic bursting (Bertram et al 2008)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We describe a novel dynamic mechanism for episodic or compound bursting\r\noscillations, in which bursts of electrical impulses are clustered together into episodes,\r\nseparated by long silent phases. We demonstrate the mechanism for episodic bursting\r\nusing a minimal mathematical model for \u201cphantom bursting.\u201d Depending on the location\r\nin parameter space, this model can produce fast, medium, or slow bursting, or in the\r\npresent case, fast, slow, and episodic bursting. The episodic bursting is modestly robust\r\nto noise and to parameter variation, and the effect that noise has on the episodic bursting\r\npattern is quite different from that of an alternate episodic burst mechanism in which\r\nthe slow envelope is produced by metabolic oscillations. This mechanism could account\r\nfor episodic bursting produced in endocrine cells or neurons, such as pancreatic islets or\r\ngonadotropin releasing neurons of the hypothalamus.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247646",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "leak current with V=-40?"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-11-28T16:50:26.427",
+ "ver_number": 4
+ },
+ "247647": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Butera et al 1999"
+ },
+ "class_id": 19,
+ "created": "2018-11-28T11:57:10.673",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247647,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 28528,
+ "object_name": "Butera RJ, Rinzel J, Smith JC (1999)"
+ }
+ ]
+ },
+ "name": "Respiratory pacemaker neurons (Butera et al 1999)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A network of oscillatory bursting neurons with excitatory coupling is hypothesized to define the primary kernel for respiratory rhythm\r\ngeneration in the pre-Botzinger complex (pre-BotC) in mammals.\r\nTwo minimal models of these neurons are proposed. In model 1, bursting arises via fast activation and slow inactivation of a persistent Na current INaP-h. In model 2, bursting arises via a fast-activating\r\npersistent Na current INaP and slow activation of a K1 current IKS.\r\nIn both models, action potentials are generated via fast Na and K\r\ncurrents. The two models have few differences in parameters to facilitate a rigorous comparison of the two different burst-generating mechanisms. Both models are consistent with many of the dynamic\r\nfeatures of electrophysiological recordings from pre-BotC oscillatory\r\nbursting neurons in vitro, including voltage-dependent activity modes\r\n(silence, bursting, and beating), a voltage-dependent burst frequency\r\nthat can vary from 0.05 to .1 Hz, and a decaying spike frequency\r\nduring bursting. These results are robust and persist across a wide range of parameter values for both models. However, the dynamics of model 1 are more consistent with experimental data in that the burst\r\nduration decreases as the baseline membrane potential is depolarized and the model has a relatively flat membrane potential trajectory during the interburst interval. We propose several experimental tests\r\nto demonstrate the validity of either model and to differentiate between the two mechanisms."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247647",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-11-28T11:58:48.393",
+ "ver_number": 2
+ },
+ "247648": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Cloutier et al 2009"
+ },
+ "class_id": 19,
+ "created": "2018-11-28T17:25:38.75",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247648,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 237616,
+ "object_name": "Cloutier M, Bolger FB, Lowry JP, Wellstead P (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "An integrative dynamic model of brain energy metabolism (Coultier et al 2009)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An integrative, systems approach to the modelling of brain energy metabolism is presented. Mechanisms such as glutamate cycling between neurons and astrocytes and glycogen storage in astrocytes have been implemented. A unique feature of the model is its calibration using in vivo data of brain glucose and lactate from freely moving rats under various stimuli. The model has been used to perform simulated perturbation experiments that show that glycogen breakdown in astrocytes is significantly activated during sensory (tail pinch) stimulation. This mechanism provides an additional input of energy substrate during high consumption phases. By way of validation, data from the perfusion of 50?\u00b5M propranolol in the rat brain was compared with the model outputs. Propranolol affects the glucose dynamics during stimulation, and this was accurately reproduced in the model by a reduction in the glycogen breakdown in astrocytes. The model\u2019s predictive capacity was verified by using data from a sensory stimulation (restraint) that was not used for model calibration. Finally, a sensitivity analysis was conducted on the model parameters, this showed that the control of energy metabolism and transport processes are critical in the metabolic behaviour of cerebral tissue."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247648",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Energy"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "astrocyte"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-11-28T17:26:39.36",
+ "ver_number": 2
+ },
+ "247655": {
+ "citation": {
+ "attr_id": 391,
+ "value": "friel 1995"
+ },
+ "class_id": 19,
+ "created": "2018-11-29T11:46:07.813",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247655,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 28582,
+ "object_name": "Friel DD (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Ca2+ Oscillations in Sympathetic neurons (Friel 1995)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... This\r\nstudy focuses on caffeine-induced [Ca2+]i oscillations in sympathetic\r\nneurons. ... The aim of the study\r\nwas to understand the mechanism responsible for the oscillations. As a\r\nstarting point, [Ca2+]i relaxations were examined after membrane\r\ndepolarization and exposure to caffeine. For both stimuli,\r\npost-stimulus relaxations could be described by the sum of two\r\ndecaying exponential functions, consistent with a one-pool system in\r\nwhich Ca2+ transport between compartments is regulated by linear Ca2+\r\npumps and leaks. After modifying the store to include a\r\n[Ca2+]i-sensitive leak, the model also exhibits oscillations such as\r\nthose observed experimentally.\r\n\r\n\r\n... Thus, a one-pool model with a single\r\n[Ca2+]i-sensitive Ca2+ permeability is adequate to account for many of\r\nthe quantitative properties of steady-state [Ca2+]i oscillations in\r\nsympathetic neurons. ...\"\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247655",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-11-29T13:44:11.9",
+ "ver_number": 2
+ },
+ "247656": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Li et al 1996"
+ },
+ "class_id": 19,
+ "created": "2018-11-29T16:42:36.7",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247656,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 6977,
+ "object_name": "Li YX, Bertram R, Rinzel J (1996)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Bursting in dopamine neurons (Li YX et al 1996)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Burst firing of dopaminergic neurons of the substantia nigra pars\r\ncompacta can be induced in vitro by the glutamate agonist\r\nN-methyl-D-aspartate. It has been suggested that the interburst\r\nhyperpolarization is due to Na+ extrusion by a ouabain-sensitive pump\r\n(Johnson et al. (1992) Science 258, 665-667). We formulate and explore\r\na theoretical model, with a minimal number of currents, for this novel\r\nmechanism of burst generation. This minimal model is further developed\r\ninto a more elaborate model based on observations of additional\r\ncurrents and hypotheses about their spatial distribution in\r\ndopaminergic neurons ... Responses of the model to a number of\r\nelectrophysiological and pharmacological stimuli are consistent with\r\nknown responses observed under similar conditions. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247656",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2018-11-29T16:44:03.937",
+ "ver_number": 3
+ },
+ "247657": {
+ "class_id": 19,
+ "created": "2018-11-29T17:41:57.98",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247657,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151961,
+ "object_name": "\u00d8yehaug L, \u00d8stby I, Lloyd CM, Omholt SW, Einevoll GT (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Dependence of neuronal firing on astroglial membrane transport mechanisms (Oyehaug et al 2012)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Exposed to a sufficiently high extracellular potassium concentration ([K?+?]o), the neuron can fire spontaneous discharges or even become inactivated due to membrane depolarisation (\u2018depolarisation block\u2019). Since these phenomena likely are related to the maintenance and propagation of seizure discharges, it is of considerable importance to understand the conditions under which excess [K?+?]o causes them. To address the putative effect of glial buffering on neuronal activity under elevated [K?+?]o conditions, we combined a recently developed dynamical model of glial membrane ion and water transport with a Hodgkin\u2013Huxley type neuron model. In this interconnected glia-neuron model we investigated the effects of natural heterogeneity or pathological changes in glial membrane transporter density by considering a large set of models with different, yet empirically plausible, sets of model parameters. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247657",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-11-29T17:43:02.287",
+ "ver_number": 2
+ },
+ "247664": {
+ "class_id": 19,
+ "created": "2018-11-30T18:52:45.027",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ },
+ {
+ "object_id": 247662,
+ "object_name": "KCC1"
+ },
+ {
+ "object_id": 247663,
+ "object_name": "NBC"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247664,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 144383,
+ "object_name": "Cellular volume dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 124403,
+ "object_name": "\u00d8stby I, \u00d8yehaug L, Einevoll GT, Nagelhus EA, Plahte E, Zeuthen T, Lloyd CM, Ottersen OP, Omholt SW (2009)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Mechanisms of extraneuronal space shrinkage (Ostby et al 2009)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neuronal stimulation causes ~30% shrinkage of the extracellular space\r\n(ECS) between neurons and surrounding astrocytes in grey and white\r\nmatter under experimental conditions. Despite its possible\r\nimplications for a proper understanding of basic aspects of potassium\r\nclearance and astrocyte function, the phenomenon remains\r\nunexplained. Here we present a dynamic model that accounts for current\r\nexperimental data related to the shrinkage phenomenon in wild-type as\r\nwell as in gene knockout individuals.\r\n...\r\nConsidering the current\r\nstate of knowledge, the model framework appears sufficiently detailed\r\nand constrained to guide future key experiments and pave the way for\r\nmore comprehensive astroglia\u2013neuron interaction models for normal as\r\nwell as pathophysiological situations.\r\n\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247664",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "NaKATPase, I Cl,"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-11-30T18:56:45.403",
+ "ver_number": 2
+ },
+ "247694": {
+ "biosimulations": {
+ "value": "modeldb-247694"
+ },
+ "class_id": 19,
+ "created": "2018-12-04T03:43:32.953",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247694,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247695,
+ "object_name": "Denizot, Audrey [audrey.denizot at inria.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259076,
+ "object_name": "Denizot A, Arizono M, N\u00e4gerl UV, Soula H, Berry H (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 144556,
+ "object_name": "STEPS"
+ },
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Simulation of calcium signaling in fine astrocytic processes (Denizot et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model corresponds to the model presented in Denizot et al, 2019. The model indicates that the frequency of calcium signals crucially depends on the spatial organization of the IP3R channels, including their clustering and co-localization with the other sources of calcium influx to the cytosol. Spontaneous calcium signals generated by the model with realistic PAPs volume and calcium concentration successfully reproduce spontaneous calcium transients that we measured in calcium micro-domains with confocal microscopy. To our knowledge, this model is the first model suited to the investigation of spontaneous calcium dynamics in fine astrocytic processes, a crucial step towards a better understanding of the spatio-temporal integration of astrocyte signals in response to neuronal activity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247694",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Audrey Denizot (audrey.denizot@inria.fr"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "audrey.denizot@inria.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Audrey Denizot"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2019-07-14T19:20:13.733",
+ "ver_number": 12
+ },
+ "247696": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Phillips Johnson 2007"
+ },
+ "class_id": 19,
+ "created": "2018-12-04T14:33:56.913",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247696,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 226757,
+ "object_name": "Phillips AJ, Robinson PA (2007)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Quantitative model of sleep-wake dynamics (Phillips & Robinson 2007)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A quantitative, physiology-based model of the ascending arousal system\r\nis developed, using continuum neuronal population modeling, which\r\ninvolves averaging properties such as firing rates across neurons in\r\neach population. The model includes the ventrolateral preoptic area\r\n(VLPO), where circadian and homeostatic drives enter the system, the\r\nmonoaminergic and cholinergic nuclei of the ascending arousal system,\r\nand their interconnections. The human sleep-wake cycle is governed by\r\nthe activities of these nuclei, which modulate the behavioral state of\r\nthe brain via diffuse neuromodulatory projections.\r\n\r\n...\r\nThe model behavior is robust across\r\nthe constrained parameter ranges, but with sufficient flexibility to\r\ndescribe a wide range of observed phenomena.\r\n\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247696",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-12-04T14:41:31.49",
+ "ver_number": 2
+ },
+ "247698": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Phillips Robinson 2008"
+ },
+ "class_id": 19,
+ "created": "2018-12-04T15:57:00.87",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247698,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247502,
+ "object_name": "Phillips AJ, Robinson PA (2008)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Sleep deprivation in the ascending arousal system (Phillips & Robinson 2008)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A physiologically based quantitative model of the human ascending\r\narousal system is used to study sleep deprivation after being\r\ncalibrated on a small set of experimentally based criteria. The model\r\nincludes the sleep\u2013wake switch of mutual inhibition between nuclei\r\nwhich use monoaminergic neuromodulators, and the ventrolateral\r\npreoptic area. The system is driven by the circadian rhythm and sleep\r\nhomeostasis.\r\nWe use a small number of experimentally derived criteria\r\nto calibrate the model for sleep deprivation, then investigate model\r\npredictions for other experiments, demonstrating the scope of\r\napplication.\r\n\r\n...\r\n\r\nThe form of the homeostatic drive suggests\r\nthat periods of wake during recovery from sleep deprivation are phases\r\nof relative recovery, in the sense that the homeostatic drive\r\ncontinues to converge toward baseline levels.\r\nThis undermines the\r\nconcept of sleep debt, and is in agreement with experimentally\r\nrestricted recovery protocols. Finally, we compare our model to the\r\ntwo-process model, and demonstrate the power of physiologically based\r\nmodeling by correctly predicting sleep latency times following\r\ndeprivation from experimental data.\r\n\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247698",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-12-04T16:01:36.32",
+ "ver_number": 3
+ },
+ "247702": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Purvis Butera 2005"
+ },
+ "class_id": 19,
+ "created": "2018-12-04T17:14:25.26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247702,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 115098,
+ "object_name": "Purvis LK, Butera RJ (2005)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Ionic current model of a Hypoglossal Motoneuron (Purvis & Butera 2005)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 247700,
+ "object_name": "Hypoglossal motor neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We have developed a single-compartment, electrophysiological,\r\nhypoglossal motoneuron (HM) model based primarily on experimental data\r\nfrom neonatal rat HMs. The model is able to reproduce the fine\r\nfeatures of the HM action potential: the fast afterhyperpolarization,\r\nthe afterdepolarization, and the medium-duration\r\nafterhyperpolarization (mAHP). The model also reproduces the\r\nrepetitive firing properties seen in neonatal HMs and replicates the\r\nneuron\u2019s response to pharmacological experiments. The model was used\r\nto study the role of specific ionic currents in HM firing and how\r\nvariations in the densities of these currents may account for\r\nage dependent changes in excitability seen in HMs. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247702",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hypoglossal motor neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-12-05T10:15:45.54",
+ "ver_number": 4
+ },
+ "247704": {
+ "biosimulations": {
+ "value": "modeldb-247704"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Y. Liu, J. Milton and S.A. Campbell (2018) Outgrowing seizures in Childhood Absence Epilepsy: Time delays and bistability."
+ },
+ "class_id": 19,
+ "created": "2018-12-05T09:20:43.717",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247704,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247705,
+ "object_name": "Liu, Yu "
+ },
+ {
+ "object_id": 247706,
+ "object_name": "Campbell, Sue Ann [sacampbell at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249721,
+ "object_name": "Liu Y, Milton J, Campbell SA (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Thalamocortical loop with delay for investigation of absence epilepsy (Liu et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Conductance based network model of one thalamic reticular neuron, one thalamic pyramidal neuron and one cortical pyramidal neuron. Used to show that large delay in the corticothalamic connection can lead to multistability."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247704",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yu Liu\r\nSue Ann Campbell sacampbell at uwaterloo.ca "
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Thalamic relay, cortical pyramidal"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sacampbell@uwaterloo.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sue Ann Campbell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2019-02-15T14:29:43.043",
+ "ver_number": 20
+ },
+ "247707": {
+ "class_id": 19,
+ "created": "2018-12-05T11:34:17.56",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247707,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 227131,
+ "object_name": "Pacemaking mechanism"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 97932,
+ "object_name": "Purvis LK, Smith JC, Koizumi H, Butera RJ (2007)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Pacemaker neurons and respiratory rhythm generation (Purvis et al 2007)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The pre-Botzinger complex (pBC) is a vital subcircuit of the\r\nrespiratory central pattern generator. Although the existence of\r\nneurons with pacemaker-like bursting properties in this network is not\r\nquestioned, their role in network rhythmogenesis is\r\nunresolved.\r\n\r\n...\r\nWe modeled the parameter\r\nvariability of experimental data from pBC bursting pacemaker and\r\nnonpacemaker neurons using a modified version of our previously\r\ndeveloped pBC neuron and network models.\r\n\r\n...\r\n\"\r\nThe paper contains network modeling results that are not represented in this model entry. Only the neuron models are included in this modeldb entry.\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247707",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-12-05T11:46:40.11",
+ "ver_number": 5
+ },
+ "247709": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Tabak"
+ },
+ "class_id": 19,
+ "created": "2018-12-05T16:41:36.583",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247709,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247580,
+ "object_name": "Tabak J, Mascagni M, Bertram R (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Universal feature of developing networks (Tabak et al 2010)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Spontaneous episodic activity is a fundamental mode of operation of\r\ndeveloping networks. Surprisingly, the duration of an episode of\r\nactivity correlates with the length of the silent interval that\r\nprecedes it, but not with the interval that follows. \r\n\r\n... We thus developed simple models\r\nincorporating excitatory coupling between heterogeneous neurons and\r\nactivity-dependent synaptic depression. These models robustly\r\ngenerated episodic activity with the correct correlation pattern.\r\n\r\nThe\r\ncorrelation pattern resulted from episodes being triggered at random\r\nlevels of recovery from depression while they terminated around the\r\nsame level of depression. To explain this fundamental difference\r\nbetween episode onset and termination, we used a mean field model,\r\nwhere only average activity and average level of recovery from\r\nsynaptic depression are considered.\r\n...\r\nThis work further shows that networks with widely different\r\narchitectures, different cell types, and different functions all\r\noperate according to the same general mechanism early in their\r\ndevelopment.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247709",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-12-05T16:42:11.787",
+ "ver_number": 2
+ },
+ "247711": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Tabak"
+ },
+ "class_id": 19,
+ "created": "2018-12-05T16:44:15.15",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247711,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247580,
+ "object_name": "Tabak J, Mascagni M, Bertram R (2010)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "Universal feature of developing networks (Tabak et al 2010) (CellML)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Spontaneous episodic activity is a fundamental mode of operation of\r\ndeveloping networks. Surprisingly, the duration of an episode of\r\nactivity correlates with the length of the silent interval that\r\nprecedes it, but not with the interval that follows. \r\n\r\n... We thus developed simple models\r\nincorporating excitatory coupling between heterogeneous neurons and\r\nactivity-dependent synaptic depression. These models robustly\r\ngenerated episodic activity with the correct correlation pattern.\r\n\r\nThe\r\ncorrelation pattern resulted from episodes being triggered at random\r\nlevels of recovery from depression while they terminated around the\r\nsame level of depression. To explain this fundamental difference\r\nbetween episode onset and termination, we used a mean field model,\r\nwhere only average activity and average level of recovery from\r\nsynaptic depression are considered.\r\n...\r\nThis work further shows that networks with widely different\r\narchitectures, different cell types, and different functions all\r\noperate according to the same general mechanism early in their\r\ndevelopment.\" This modeldb entry only has the mean field model as networks are not implementable currently in CellML."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247711",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2018-12-05T16:48:01.117",
+ "ver_number": 4
+ },
+ "247713": {
+ "class_id": 19,
+ "created": "2018-12-06T17:07:20.93",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247713,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246721,
+ "object_name": "Vasalou C, Henson MA (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 120321,
+ "object_name": "CellML (web link to model)"
+ }
+ ]
+ },
+ "name": "A multiscale approach to analyze circadian rhythms (Vasalou & Henson, 2010) (CellML)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ },
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We developed a firing rate code model to incorporate known\r\nelectrophysiological properties of SCN (suprachiasmatic nucleus)\r\npacemaker cells, including circadian dependent changes in membrane\r\nvoltage and ion conductances. Calcium dynamics were included in the\r\nmodel as the putative link between electrical firing and gene\r\nexpression. Individual ion currents exhibited oscillatory patterns\r\nmatching experimental data both in current levels and phase\r\nrelationships. VIP and GABA neurotransmitters, which encode synaptic\r\nsignals across the SCN, were found to play critical roles in daily\r\noscillations of membrane excitability and gene expression. Blocking\r\nvarious mechanisms of intracellular calcium accumulation by simulated\r\npharmacological agents (nimodipine, IP3- and ryanodine-blockers)\r\nreproduced experimentally observed trends in firing rate dynamics and\r\ncore-clock gene transcription. The intracellular calcium concentration\r\nwas shown to regulate diverse circadian processes such as firing\r\nfrequency, gene expression and system periodicity. The model predicted\r\na direct relationship between firing frequency and gene expression\r\namplitudes, demonstrated the importance of intracellular pathways for\r\nsingle cell behavior and provided a novel multiscale framework which\r\ncaptured characteristics of the SCN at both the electrophysiological\r\nand gene regulatory levels.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247713",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2018-12-06T17:42:10.683",
+ "ver_number": 4
+ },
+ "247719": {
+ "class_id": 19,
+ "created": "2018-12-11T11:11:04.27",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247719,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 246721,
+ "object_name": "Vasalou C, Henson MA (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 125746,
+ "object_name": "SBML (web link to model)"
+ }
+ ]
+ },
+ "name": "A multiscale approach to analyze circadian rhythms (Vasalou & Henson, 2010) (SBML)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ },
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... We developed a firing rate code model to incorporate known\r\nelectrophysiological properties of SCN (suprachiasmatic nucleus)\r\npacemaker cells, including circadian dependent changes in membrane\r\nvoltage and ion conductances. Calcium dynamics were included in the\r\nmodel as the putative link between electrical firing and gene\r\nexpression. Individual ion currents exhibited oscillatory patterns\r\nmatching experimental data both in current levels and phase\r\nrelationships. VIP and GABA neurotransmitters, which encode synaptic\r\nsignals across the SCN, were found to play critical roles in daily\r\noscillations of membrane excitability and gene expression. Blocking\r\nvarious mechanisms of intracellular calcium accumulation by simulated\r\npharmacological agents (nimodipine, IP3- and ryanodine-blockers)\r\nreproduced experimentally observed trends in firing rate dynamics and\r\ncore-clock gene transcription. The intracellular calcium concentration\r\nwas shown to regulate diverse circadian processes such as firing\r\nfrequency, gene expression and system periodicity. The model predicted\r\na direct relationship between firing frequency and gene expression\r\namplitudes, demonstrated the importance of intracellular pathways for\r\nsingle cell behavior and provided a novel multiscale framework which\r\ncaptured characteristics of the SCN at both the electrophysiological\r\nand gene regulatory levels.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247719",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2018-12-12T17:56:52.803",
+ "ver_number": 7
+ },
+ "247848": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Arkhipov et al 2018"
+ },
+ "class_id": 19,
+ "created": "2018-12-19T11:33:38.25",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247848,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 152968,
+ "object_name": "Triggered activity"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247732,
+ "object_name": "Arkhipov A, Gouwens NW, Billeh YN, Gratiy S, Iyer R, Wei Z, Xu Z, Abbasi-Asl R, Berg J, Buice M, Cain N, da Costa N, de Vries S, Denman D, Durand S, Feng D, Jarsky T, Lecoq J, Lee B, Li L, Mihalas S, Ocker GK, Olsen SR, Reid RC, Soler-Llavina G, Sorensen SA, Wang Q, Waters J, Scanziani M, Koch C (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 247847,
+ "object_name": "BioNet (web link to model)"
+ }
+ ]
+ },
+ "name": "Visual physiology of the layer 4 cortical circuit in silico (Arkhipov et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 230185,
+ "object_name": "Neocortex V1 interneuron chandelier SOM GABA cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Despite advances in experimental techniques and accumulation of large datasets concerning\r\nthe composition and properties of the cortex, quantitative modeling of cortical circuits\r\nunder in-vivo-like conditions remains challenging. Here we report and publicly release a biophysically\r\ndetailed circuit model of layer 4 in the mouse primary visual cortex, receiving thalamo-\r\ncortical visual inputs. The 45,000-neuron model was subjected to a battery of visual\r\nstimuli, and results were compared to published work and new in vivo experiments. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247848",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2018-12-21T13:34:39.693",
+ "ver_number": 4
+ },
+ "247968": {
+ "class_id": 19,
+ "created": "2018-12-28T23:44:36.007",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247968,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247969,
+ "object_name": "Feng, Feng [ffvxb at mail.missouri.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 247972,
+ "object_name": "Feng F, Headley DB , Amir A, Kanta V, Chen Z, Pare D, Nair S (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Gamma genesis in the basolateral amygdala (Feng et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using in vitro and in vivo data we develop the first large-scale biophysically and anatomically realistic model of the basolateral amygdala nucleus (BL), which reproduces the dynamics of the in vivo local field potential (LFP). Significantly, it predicts that BL intrinsically generates the transient gamma oscillations observed in vivo. The model permitted exploration of the poorly understood synaptic mechanisms underlying gamma genesis in BL, and the model's ability to compute LFPs at arbitrary numbers of recording sites provided insights into the characteristics of the spatial properties of gamma bursts. Furthermore, we show how gamma synchronizes principal cells to overcome their low firing rates while simultaneously promoting competition, potentially impacting their afferent selectivity and efferent drive, and thus emotional behavior."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247968",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I K-DR"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "ffvxb@mail.missouri.edu"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "basolateral amygdala neurons"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "LFP"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ffvxb@mail.missouri.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Feng Feng"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 142628,
+ "object_name": "Amygdala"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T13:21:49.687",
+ "ver_number": 11
+ },
+ "247970": {
+ "class_id": 19,
+ "created": "2019-01-02T01:10:58.037",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 247970,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 253470,
+ "object_name": "Lian, Yanbo [yanbol at student.unimelb.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 253469,
+ "object_name": "Lian Y, Grayden DB, Kameneva T, Meffin H, Burkitt AN (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Towards a biologically plausible model of LGN-V1 pathways (Lian et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Increasing evidence supports the hypothesis that the visual system\r\nemploys a sparse code to represent visual stimuli, where information\r\nis encoded in an efficient way by a small population of cells that\r\nrespond to sensory input at a given time. This includes simple cells\r\nin primary visual cortex (V1), which are defined by their linear\r\nspatial integration of visual stimuli. Various models of sparse coding\r\nhave been proposed to explain physiological phenomena observed in\r\nsimple cells. However, these models have usually made the simplifying\r\nassumption that inputs to simple cells already incorporate linear\r\nspatial summation. This overlooks the fact that these inputs are known\r\nto have strong non-linearities such as the separation of ON and OFF\r\npathways, or separation of excitatory and inhibitory\r\nneurons. Consequently these models ignore a range of important\r\nexperimental phenomena that are related to the emergence of linear\r\nspatial summation from non-linear inputs, such as segregation of ON\r\nand OFF sub-regions of simple cell receptive fields, the push-pull\r\neffect of excitation and inhibition, and phase-reversed\r\ncortico-thalamic feedback. Here, we demonstrate that a two-layer model\r\nof the visual pathway from the lateral geniculate nucleus to V1 that\r\nincorporates these biological constraints on the neural circuits and\r\nis based on sparse coding can account for the emergence of these\r\nexperimental phenomena, diverse shapes of receptive fields and\r\ncontrast invariance of orientation tuning of simple cells when the\r\nmodel is trained on natural images. The model suggests that sparse\r\ncoding can be implemented by the V1 simple cells using neural circuits\r\nwith a simple biologically plausible architecture.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/247970",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yanbo Lian"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "V1 simple cells"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yanbol@student.unimelb.edu.au"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yanbo Lian"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-03-15T15:04:09.13",
+ "ver_number": 12
+ },
+ "248313": {
+ "class_id": 19,
+ "created": "2019-01-05T15:08:17.32",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 248313,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 253076,
+ "object_name": "Althaf, Athil A Z "
+ },
+ {
+ "object_id": 253077,
+ "object_name": "Mishra, Urvi "
+ },
+ {
+ "object_id": 253078,
+ "object_name": "Konnur, Seeraja [seeraja.dsa at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 225300,
+ "object_name": "Electrical-chemical"
+ },
+ {
+ "object_id": 136106,
+ "object_name": "G-protein coupled"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 252391,
+ "object_name": "Fridlyand LE, Philipson LH (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Pancreatic Beta Cell signalling pathways (Fridlyand & Philipson 2016) (MATLAB)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ },
+ {
+ "object_id": 229,
+ "object_name": "Ephinephrine"
+ },
+ {
+ "object_id": 236,
+ "object_name": "Ions"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a 3rd party implementation of Fridlyand & Philipson 2016 who's abstract begins \"Insulin secretory in pancreatic beta-cells responses to nutrient\r\nstimuli and hormonal modulators include multiple messengers and\r\nsignaling pathways with complex interdependencies. Here we present a\r\ncomputational model that incorporates recent data on glucose\r\nmetabolism, plasma membrane potential, G-protein-coupled-receptors\r\n(GPCR), cytoplasmic and endoplasmic reticulum calcium dynamics, cAMP\r\nand phospholipase C pathways that regulate interactions between second\r\nmessengers in pancreatic beta-cells. The values of key model\r\nparameters were inferred from published experimental data. The model\r\ngives a reasonable fit to important aspects of experimentally measured\r\nmetabolic and second messenger concentrations and provides a framework\r\nfor analyzing the role of metabolic, hormones and neurotransmitters\r\nchanges on insulin secretion. Our analysis of the dynamic data\r\nprovides support for the hypothesis that activation of Ca2+-dependent\r\nadenylyl cyclases play a critical role in modulating the effects of\r\nglucagon-like peptide 1 (GLP-1), glucose-dependent insulinotropic\r\npolypeptide (GIP) and catecholamines. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/248313",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Na+, K+ channels"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Athil Althaf A Z, Urvi Mishra and Seeraja Konnur"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "GLP-1R, GIPR (GPCR)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "seeraja.dsa@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Seeraja Konnur"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 215,
+ "object_name": "Adrenergic"
+ },
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ },
+ {
+ "object_id": 180,
+ "object_name": "M3"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2019-03-11T14:56:31.433",
+ "ver_number": 33
+ },
+ "249404": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Fleidervish IA, Lasser-Ross N, Gutnick MJ, Ross WN (2010) Na+ imaging reveals little difference in action potential-evoked Na+ influx between axon and soma. Nat Neurosci 13:852-60"
+ },
+ "class_id": 19,
+ "created": "2019-01-10T12:41:18.737",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 249404,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 127651,
+ "object_name": "Fleidervish IA, Lasser-Ross N, Gutnick MJ, Ross WN (2010)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Action potential-evoked Na+ influx similar in axon and soma (Fleidervish et al. 2010) (Python)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In cortical pyramidal neurons, the axon initial segment (AIS) is pivotal in synaptic integration. It has been asserted that this is because there is a high density of Na+ channels in the AIS. However, we found that action potential-associated Na+ flux, as measured by high-speed fluorescence Na+ imaging, was about threefold larger in the rat AIS than in the soma. Spike-evoked Na+ flux in the AIS and the first node of Ranvier was similar and was eightfold lower in basal dendrites. ... In computer simulations, these data were consistent with the known features of action potential generation in these neurons.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/249404",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "L5 pyramidal neurons from somatosensory cortex"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "robert.mcdougal@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Robert A McDougal"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-10-10T17:21:30.837",
+ "ver_number": 11
+ },
+ "249405": {
+ "class_id": 19,
+ "created": "2019-01-10T18:29:08.083",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 249405,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249417,
+ "object_name": "Pinto TM, Schilstra MJ, Roque AC, Steuber V (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "A Computational Model of Bidirectional Plasticity Regulation by betaCaMKII (Pinto et al. 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We present a computational model that suggests how calcium-calmodulin dependent protein kinase II can act as a molecular switch in synaptic plasticity induction at an important cerebellar synapse (between parallel fibres and Purkinje cells). Our simulation results provide a potential explanation for experimental data by van Woerden et al (Van Woerden G, Hoebeek F, Gao Z, Nagaraja R, Hoogenraad C, Kushner S, et al. [beta]CaMKII controls the direction of plasticity at parallel fiber-Purkinje cell synapses. Nat Neurosci. 2009;12(7):823-825). These experiments were performed in the lab led by Professor Chris De Zeeuw."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/249405",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "thiago.pinto@ifrj.edu.br"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Thiago Matos Pinto"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2019-01-14T12:25:12.163",
+ "ver_number": 5
+ },
+ "249408": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 30414556"
+ },
+ "class_id": 19,
+ "created": "2019-01-11T09:34:36.687",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 249408,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 249412,
+ "object_name": "Suryanarayana, Shreyas [shreyas.suryanarayana at ki.se]"
+ },
+ {
+ "object_id": 33786,
+ "object_name": "Gurney, Kevin [K.Gurney at shef.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249401,
+ "object_name": "Suryanarayana SM, Hellgren Kotaleski J, Grillner S, Gurney KN (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A computational model of action selection in the basal ganglia (Suryanarayana et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, we incorporate newly revealed subgroups of neurons\r\nwithin the GPe into an existing computational model of the basal\r\nganglia, and investigate their role in action selection. Three\r\nmain results ensued. First, using previously used metrics for\r\nselection, the new extended connectivity improved the action\r\nselection performance of the model. Second, low frequency theta\r\noscillations were observed in the subpopulation of the GPe (the\r\nTA or \u2018arkypallidal\u2019 neurons) which project exclusively to the\r\nstriatum. These oscillations were suppressed by increased\r\ndopamine activity \u2014 revealing a possible link with symptoms of\r\nParkinson\u2019s disease. Third, a new phenomenon was observed in\r\nwhich the usual monotonic relationship between input to the basal\r\nganglia and its output within an action \u2018channel\u2019 was, under some\r\ncircumstances, reversed.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/249408",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shreyas.suryanarayana@ki.se"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shreyas Suryanarayana"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 249414,
+ "object_name": "Globus pallidus externa (GPe)"
+ }
+ ]
+ },
+ "ver_date": "2019-01-12T10:30:38.237",
+ "ver_number": 9
+ },
+ "249463": {
+ "class_id": 19,
+ "created": "2019-01-17T11:12:58.1",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 249463,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258952,
+ "object_name": "M\u00e4ki-Marttunen T, Devor A, Phillips WA, Dale AM, Andreassen OA, Einevoll GT (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Layer V pyramidal cell functions and schizophrenia genetics (M\u00e4ki-Marttunen et al 2019)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Study on how GWAS-identified risk genes of shizophrenia affect excitability and integration of inputs in thick-tufted layer V pyramidal cells"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/249463",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tuomo@simula.no"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tuomo M\u00e4ki-Marttunen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-01-27T10:37:21.41",
+ "ver_number": 11
+ },
+ "249589": {
+ "citation": {
+ "attr_id": 391,
+ "value": "J. F. Mejias, J. D. Murray, H. Kennedy and X.-J Wang, Feedforward and feedback frequency-dependent interactions in a large-scale laminar network of the primate cortex, Science Advances, 2, e1601335, 2016."
+ },
+ "class_id": 19,
+ "created": "2019-01-24T11:39:40.743",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 249589,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 249591,
+ "object_name": "Mejias, Jorge [j.f.mejias at uva.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249590,
+ "object_name": "Mejias JF, Murray JD, Kennedy H, Wang XJ (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Large-scale laminar model of macaque cortex (Mejias et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code reproduces the large-scale cortical model with laminar structure presented in Mejias et al., Science Advances 2016. The model includes different scales (intra-laminar, inter-laminar, inter-areal and large-scale) across macaque neocortex and reproduces experimentally observed dynamics of gamma and alpha/beta oscillations across these scales. It makes use of real anatomical data from the macaque cortex. Some parts of the code require external packages or data (see readme file for details)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/249589",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Jorge Mejias"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "j.f.mejias@uva.nl"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jorge Mejias"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-01-28T15:22:47.053",
+ "ver_number": 4
+ },
+ "249705": {
+ "class_id": 19,
+ "created": "2019-02-08T17:15:02.497",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 249705,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33780,
+ "object_name": "Antic, Srdjan [antic at neuron.uchc.edu]"
+ },
+ {
+ "object_id": 249707,
+ "object_name": "Gao, Peng [peng at uchc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 169987,
+ "object_name": "Dendritic Bistability"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266826,
+ "object_name": "Gao PP, Graham JW, Zhou WL, Jang J, Angulo SL, Dura-Bernal S, Hines ML, Lytton W, Antic SD (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Glutamate mediated dendritic and somatic plateau potentials in cortical L5 pyr cells (Gao et al '20)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Our model was built on a reconstructed Layer 5 pyramidal neuron of the rat medial prefrontal cortex, and constrained by 4 sets of experimental data: (i) voltage waveforms obtained at the site of the glutamatergic input in distal basal dendrite, including initial sodium spikelet, fast rise, plateau phase and abrupt collapse of the plateau; (ii) a family of voltage traces describing dendritic membrane responses to gradually increasing intensity of glutamatergic stimulation; (iii) voltage waveforms of backpropagating action potentials in basal dendrites (Antic, 2003); and (iv) the change of backpropagating action potential amplitude in response to drugs that block Na+ or K+ channels (Acker and Antic, 2009). Both, synaptic AMPA/NMDA and extrasynaptic NMDA inputs were placed on basal dendrites to model the induction of local regenerative potentials termed \"glutamate-mediated dendritic plateau potentials\". The active properties of the cell were tuned to match the voltage waveform, amplitude and duration of experimentally observed plateau potentials. The effects of input location, receptor conductance, channel properties and membrane time constant during plateau were explored. The new model predicted that during dendritic plateau potential the somatic membrane time constant is reduced. This and other model predictions were then tested in real neurons. Overall, the results support our theoretical framework that dendritic plateau potentials bring neuronal cell body into a depolarized state (\"UP state\"), which lasts 200 - 500 ms, or more. Plateau potentials profoundly change neuronal state -- a plateau potential triggered in one basal dendrite depolarizes the soma and shortens membrane time constant, making the cell more susceptible to action potential firing triggered by other afferent inputs. Plateau potentials may allow cortical pyramidal neurons to tune into ongoing network activity and potentially enable synchronized firing, to form active neural ensembles."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/249705",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gao, Peng [penggao.1987 at mail.com]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "penggao.1987@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Peng Penny Gao"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-10-28T12:26:49.15",
+ "ver_number": 10
+ },
+ "249706": {
+ "class_id": 19,
+ "created": "2019-02-09T16:07:29.21",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 249706,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 253378,
+ "object_name": "Bono J, Clopath C (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Inhibitory neuron plasticity as a mechanism for ocular dominance plasticity (Bono & Clopath 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Ocular dominance plasticity is a well-documented phenomenon\r\nallowing us to study properties of cortical\r\nmaturation. Understanding this maturation might be an important\r\nstep towards unravelling how cortical circuits function. However,\r\nit is still not fully understood which mechanisms are responsible\r\nfor the opening and closing of the critical period for ocular\r\ndominance and how changes in cortical responsiveness arise after\r\nvisual deprivation. In this article, we present a theory of\r\nocular dominance plasticity. Following recent experimental work,\r\nwe propose a framework where a reduction in inhibition is\r\nnecessary for ocular dominance plasticity in both juvenile and\r\nadult animals. In this framework, two ingredients are crucial to\r\nobserve ocular dominance shifts: a sufficient level of inhibition\r\nas well as excitatory-to-inhibitory synaptic plasticity. In our\r\nmodel, the former is responsible for the opening of the critical\r\nperiod, while the latter limits the plasticity in adult\r\nanimals. Finally, we also provide a possible explanation for the\r\nvariability in ocular dominance shifts observed in individual\r\nneurons and for the counter-intuitive shifts towards the closed\r\neye.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/249706",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jacopobono@hotmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jacopo Bono"
+ },
+ "ver_date": "2019-03-14T12:20:27",
+ "ver_number": 5
+ },
+ "249847": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Solbra et al"
+ },
+ "class_id": 19,
+ "created": "2019-02-13T13:54:13.14",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 249847,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 249827,
+ "object_name": "Solbr\u00e5 A, Bergersen AW, van den Brink J, Malthe-S\u00f8renssen A, Einevoll GT, Halnes G (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 249848,
+ "object_name": "KNPsim (web link to method)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Modelling large scale electrodiffusion near morphologically detailed neurons (Solbra et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Here, we present the 3-D Kirchhoff-Nernst-Planck (KNP) framework, tailored to explore electrodiffusive effects on large spatiotemporal scales. By assuming electroneutrality, the KNP-framework circumvents charge-relaxation processes on the spatiotemporal scales of nanometers and nanoseconds, and makes it feasible to run simulations on the spatiotemporal scales of millimeters and seconds on a standard desktop computer. In the present work, we use the 3-D KNP framework to simulate the dynamics of ion concentrations and the electrical potential surrounding a morphologically detailed pyramidal cell. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/249847",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "KNPsim"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2019-02-13T14:31:01.057",
+ "ver_number": 3
+ },
+ "251493": {
+ "class_id": 19,
+ "created": "2019-03-05T11:36:30.043",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 251493,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261589,
+ "object_name": "Ebner, Christian [ebner at fias.uni-frankfurt.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261588,
+ "object_name": "Ebner C, Clopath C, Jedlicka P, Cuntz H (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Four-pathway phenomenological synaptic plasticity model (Ebner et al. 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 227971,
+ "object_name": "Neocortex V1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/251493",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ebner@fias.uni-frankfurt.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Christian Ebner"
+ },
+ "ver_date": "2020-01-16T18:31:36.46",
+ "ver_number": 13
+ },
+ "251881": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Iavarone, Elisabetta, Jane Yi, Ying Shi, Bas-Jan Zandt, Christian O'reilly, Werner Van Geit, Christian R\u00f6ssert, Henry Markram, and Sean L. Hill. \"Experimentally-constrained biophysical models of tonic and burst firing modes in thalamocortical neurons.\" BioRxiv (2019)."
+ },
+ "class_id": 19,
+ "created": "2019-03-06T04:33:26.46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 251881,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 256561,
+ "object_name": "Iavarone, Elisabetta [elisabetta.iavarone01 at ateneopv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259033,
+ "object_name": "Iavarone E, Yi J, Shi Y, Zandt BJ, O'Reilly C, Van Geit W, R\u00f6ssert C, Markram H, Hill SL (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 245004,
+ "object_name": "BluePyOpt\r\n"
+ }
+ ]
+ },
+ "name": "Thalamocortical relay neuron models constrained by experiment and optimization (Iavarone et al 2019)",
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/251881",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Rat"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I K,Ca SK-type"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Iavarone, Elisabetta [elisabetta.iavarone01 at ateneopv.it]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Thalamus ventrobasal nucleus neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "elisabetta.iavarone@epfl.ch"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Elisabetta Iavarone"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2019-05-03T07:24:21.813",
+ "ver_number": 27
+ },
+ "253369": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A Lombardi, P Jedlicka, HJ Luhmann, W Kilb\r\nInteractions between membrane resistance, GABA-A receptor properties, bicarbonate dynamics and Cl--transport shape activity-dependent changes of intra-cellular Cl- concentration.\r\nINt J Mol Sci (2019) in revision"
+ },
+ "class_id": 19,
+ "created": "2019-03-14T05:58:48.69",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 253369,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 253492,
+ "object_name": "Lombardi A, Jedlicka P, Luhmann HJ, Kilb W (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Factors contribution to GDP-induced [Cl-]i transients (Lombardi et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This models are used to evaluate which factors influence the GDP (giant depolarizing potential) induced [Cl-]I transients based on a initial model of P. Jedlicka"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/253369",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ionic plasticity, [Cl-]i-"
+ },
+ "other_gene": {
+ "attr_id": 477,
+ "value": "NKCC1 (SLC12A2)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wkilb@uni-mainz.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Werner Kilb"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ },
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2019-03-19T17:45:41.087",
+ "ver_number": 5
+ },
+ "253624": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Bittner SR, Williamson RC, Snyder AC, Litwin-Kumar A, Doiron B, Chase SM, Smith MA, Yu BM (2017) Population activity structure of excitatory and inhibitory neurons. PLoS One 12:e0181773"
+ },
+ "class_id": 19,
+ "created": "2019-03-22T15:50:05.793",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 253624,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 253612,
+ "object_name": "Bittner SR, Williamson RC, Snyder AC, Litwin-Kumar A, Doiron B, Chase SM, Smith MA, Yu BM (2017)"
+ },
+ {
+ "object_id": 155094,
+ "object_name": "Litwin-Kumar A, Doiron B (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 253623,
+ "object_name": "Julia (web link to model)"
+ }
+ ]
+ },
+ "name": "Excitatory and inhibitory population activity (Bittner et al 2017) (Litwin-Kumar & Doiron 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Many studies use population analysis approaches, such as\r\ndimensionality reduction, to characterize the activity of large groups\r\nof neurons. To date, these methods have treated each neuron equally,\r\nwithout taking into account whether neurons are excitatory or\r\ninhibitory. We studied population activity structure as a function of\r\nneuron type by applying factor analysis to spontaneous activity from\r\nspiking networks with balanced excitation and inhibition.\r\nThroughout\r\nthe study, we characterized population activity structure by measuring\r\nits dimensionality and the percentage of overall activity variance\r\nthat is shared among neurons. First, by sampling only excitatory or\r\nonly inhibitory neurons, we found that the activity structures of\r\nthese two populations in balanced networks are measurably\r\ndifferent. We also found that the population activity structure is\r\ndependent on the ratio of excitatory to inhibitory neurons\r\nsampled. Finally we classified neurons from extracellular recordings\r\nin the primary visual cortex of anesthetized macaques as putative\r\nexcitatory or inhibitory using waveform classification, and found\r\nsimilarities with the neuron type-specific population activity\r\nstructure of a balanced network with excitatory clustering. These\r\nresults imply that knowledge of neuron type is important, and allows\r\nfor stronger statistical tests, when interpreting population activity\r\nstructure.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/253624",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2019-03-22T16:24:32.067",
+ "ver_number": 5
+ },
+ "253991": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Djurisic et al 2004"
+ },
+ "class_id": 19,
+ "created": "2019-03-29T17:33:38.613",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 253991,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 64427,
+ "object_name": "Djurisic M, Antic S, Chen WR, Zecevic D (2004)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "name": "Voltage imaging calibration in tuft dendrites of mitral cells (Djurisic et al 2004)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A detailed morphology of a tuft is provided in a reconstruction of a mitral cell that was used to place simulated estimates on for the calibration of EPSPs as recorded in voltage imaging in the real cells (estimated to be within +12% to -18% of the actual amplitude)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/253991",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2019-03-29T17:40:02.77",
+ "ver_number": 4
+ },
+ "254217": {
+ "class_id": 19,
+ "created": "2019-04-01T20:12:54.59",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 254217,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155061,
+ "object_name": "Papoutsi, Athanasia [athpapoutsi at gmail.com]"
+ },
+ {
+ "object_id": 261222,
+ "object_name": "Gidon, Albert [agidon20 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261480,
+ "object_name": "Gidon A, Zolnik TA, Fidzinski P, Bolduan F, Papoutsi A, Poirazi P, Holtkamp M, Vida I, Larkum ME (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dendritic action potentials and computation in human layer 2/3 cortical neurons (Gidon et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code reproduces figs 3 and S9 in Dendritic action potentials in layer 2/3 pyramidal neurons of the human neocortex.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/254217",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gidon Albert [agidon20@gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex layer 2/3 pyramidal neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "agidon20@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Athanasia Papoutsi and Albert Gidon"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-01-08T14:47:50.383",
+ "ver_number": 19
+ },
+ "255569": {
+ "biosimulations": {
+ "value": "modeldb-255569"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Ratte et al 2018"
+ },
+ "class_id": 19,
+ "created": "2019-04-05T16:54:22.827",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 255569,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53570,
+ "object_name": "Prescott, Steven [steve.prescott at sickkids.ca]]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 185343,
+ "object_name": "Persistent activity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 253999,
+ "object_name": "Ratt\u00e9 S, Karnup S, Prescott SA (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Persistent Spiking in ACC Neurons (Ratte et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neurons use action potentials, or spikes, to encode information. Some neurons can store information for short periods (seconds to minutes) by continuing to spike after a stimulus ends, thus enabling working memory. This so-called \u201cpersistent\u201d spiking occurs in many brain areas and has been linked to activation of canonical transient receptor potential (TRPC) channels. However, TRPC activation alone is insufficient to explain many aspects of persistent spiking such as resumption of spiking after periods of imposed quiescence. Using experiments and simulations, we show that calcium influx caused by spiking is necessary and sufficient to activate TRPC channels and that the ensuing positive feedback interaction between intracellular calcium and TRPC channel activation can account for many hitherto unexplained aspects of persistent spiking.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/255569",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "ACC neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2019-04-05T18:00:28.543",
+ "ver_number": 10
+ },
+ "256021": {
+ "class_id": 19,
+ "created": "2019-04-08T16:33:13.853",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 88212,
+ "object_name": "KCNQ1"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 88117,
+ "object_name": "I_KHT"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256021,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33781,
+ "object_name": "Manis, Paul B [PManis at med.unc.edu]"
+ },
+ {
+ "object_id": 256022,
+ "object_name": "Compagnola, Luke "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 255940,
+ "object_name": "Manis PB, Campagnola L (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Modelling platform of the cochlear nucleus and other auditory circuits (Manis & Compagnola 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 274,
+ "object_name": "Cochlear nucleus pyramidal/fusiform GLU cell"
+ },
+ {
+ "object_id": 277,
+ "object_name": "Cochlear nucleus octopus GLU cell"
+ },
+ {
+ "object_id": 273,
+ "object_name": "Cochlear nucleus bushy GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Models of the auditory brainstem have been an invaluable tool for testing hypotheses about auditory information processing and for highlighting the most important gaps in the experimental literature. Due to the complexity of the auditory brainstem, and indeed most brain circuits, the dynamic behavior of the system may be difficult to predict without a detailed, biologically realistic computational model. Despite the sensitivity of models to their exact construction and parameters, most prior models of the cochlear nucleus have incorporated only a small subset of the known biological properties. This confounds the interpretation of modelling results and also limits the potential future uses of these models, which require a large effort to develop. To address these issues, we have developed a general purpose, bio-physically detailed model of the cochlear nucleus for use both in testing hypotheses about cochlear nucleus function and also as an input to models of downstream auditory nuclei. The model implements conductance-based Hodgkin-Huxley representations of cells using a Python-based interface to the NEURON simulator. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256021",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ },
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "ver_date": "2019-04-08T16:41:52.12",
+ "ver_number": 3
+ },
+ "256024": {
+ "class_id": 19,
+ "created": "2019-04-08T22:47:29.087",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256024,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 240367,
+ "object_name": "Dewell, Richard Burkett [dewell at bcm.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258232,
+ "object_name": "Dewell RB, Gabbiani F (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "LGMD impedance (Dewell & Gabbiani 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116948,
+ "object_name": "Locust Lobula Giant Movement Detector (LGMD) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"How neurons filter and integrate their complex patterns of synaptic inputs is central to their role in neural information processing . Synaptic filtering and integration are shaped by the frequency-dependent neuronal membrane impedance. Using single and dual dendritic recordings in vivo, pharmacology, and computational modeling, we characterized the membrane impedance of a collision detection neuron in the grasshopper, Schistocerca americana. This neuron, the lobula giant movement detector (LGMD), exhibits consistent impedance properties across frequencies and membrane potentials. Two common active conductances gH and gM, mediated respectively by hyperpolarization-activated cyclic nucleotide gated (HCN) channels and by muscarine sensitive M-type K+ channels, promote broadband integration with high temporal precision over the LGMD's natural range of membrane potentials and synaptic input frequencies. Additionally, we found that a model based on the LGMD's branching morphology increased the gain and decreased the delay associated with the mapping of synaptic input currents to membrane potential. More generally, this was true for a wide range of model neuron morphologies, including those of neocortical pyramidal neurons and cerebellar Purkinje cells. These findings show the unexpected role played by two widespread active conductances and by dendritic morphology in shaping synaptic integration.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256024",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "inductive leak"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dewell@bcm.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Dewell"
+ },
+ "ver_date": "2019-08-15T16:03:40.203",
+ "ver_number": 14
+ },
+ "256028": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Telenczuk M, Fontaine B, Brette R (2017) The basis of sharp spike onset in standard biophysical models. PLoS One 12:e0175362"
+ },
+ "class_id": 19,
+ "created": "2019-04-09T15:51:37.597",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256028,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 241794,
+ "object_name": "Telenczuk, Maria [mtelenczuk at unic.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 256032,
+ "object_name": "Fontaine, Bertrand "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 241823,
+ "object_name": "Telenczuk M, Fontaine B, Brette R (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "The basis of sharp spike onset in standard biophysical models (Telenczuk et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In most vertebrate neurons, spikes initiate in the axonal initial segment (AIS). When recorded in the soma, they have a surprisingly sharp onset, as if sodium (Na) channels opened abruptly. The main view stipulates that spikes initiate in a conventional manner at the distal end of the AIS, then progressively sharpen as they backpropagate to the soma. We examined the biophysical models used to substantiate this view, and we found that spikes do not initiate through a local axonal current loop that propagates along the axon, but through a global current loop encompassing the AIS and soma, which forms an electrical dipole. Therefore, the phenomenon is not adequately modeled as the backpropagation of an electrical wave along the axon, since the wavelength would be as large as the entire system. Instead, in these models, we found that spike initiation rather follows the critical resistive coupling model proposed recently, where the Na current entering the AIS is matched by the axial resistive current flowing to the soma. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256028",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2019-04-09T17:40:23",
+ "ver_number": 5
+ },
+ "256140": {
+ "class_id": 19,
+ "created": "2019-04-15T14:44:20.257",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256140,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150226,
+ "object_name": "Luque, Niceto R. [nluque at ugr.es]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 245693,
+ "object_name": "Vestibular"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 256062,
+ "object_name": "Luque NR, Naveros F, Carrillo RR, Ros E, Arleo A (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150203,
+ "object_name": "EDLUT"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spike burst-pause dynamics of Purkinje cells regulate sensorimotor adaptation (Luque et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 139834,
+ "object_name": "Vestibular neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Cerebellar Purkinje cells mediate accurate eye movement\r\ncoordination. However, it remains unclear how oculomotor\r\nadaptation depends on the interplay between the characteristic\r\nPurkinje cell response patterns, namely tonic, bursting, and\r\nspike pauses. Here, a spiking cerebellar model assesses the role\r\nof Purkinje cell firing patterns in vestibular ocular\r\nreflex (VOR) adaptation. The model captures the cerebellar\r\nmicrocircuit properties and it incorporates spike-based synaptic\r\nplasticity at multiple cerebellar sites. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256140",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2019-04-22T10:57:22.16",
+ "ver_number": 8
+ },
+ "256311": {
+ "class_id": 19,
+ "created": "2019-04-25T07:24:41.113",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256311,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206377,
+ "object_name": "Chavlis, Spyridon [schavlis at imbb.forth.gr]"
+ },
+ {
+ "object_id": 249698,
+ "object_name": "Pandi, Ioanna "
+ },
+ {
+ "object_id": 33746,
+ "object_name": "Poirazi, Panayiota [poirazi at imbb.forth.gr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261938,
+ "object_name": "Shuman T, Aharoni D, Cai DJ, Lee CR, Chavlis S, Page-Harley L, Vetere LM, Feng Y, Yang CY, Mollinedo-Gajate I, Chen L, Pennington ZT, Taxidis J, Flores SE, Cheng K, Javaherian M, Kaba CC, Rao N, La-Vu M, Pandi I, Shtrahman M, Bakhurin KI, Masmanidis SC, Khakh BS, Poirazi P, Silva AJ, Golshani P (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 113733,
+ "object_name": "Brian"
+ }
+ ]
+ },
+ "name": "CA1 network model: interneuron contributions to epileptic deficits (Shuman et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 249699,
+ "object_name": "Hippocampal CA1 CR/VIP cell"
+ },
+ {
+ "object_id": 151330,
+ "object_name": "Hippocampus CA1 axo-axonic cell"
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ },
+ {
+ "object_id": 227332,
+ "object_name": "Hippocampus CA1 basket cell - CCK/VIP"
+ },
+ {
+ "object_id": 190560,
+ "object_name": "Hippocampus CA1 stratum oriens lacunosum-moleculare interneuron "
+ },
+ {
+ "object_id": 151329,
+ "object_name": "Hippocampus CA1 bistratified cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Temporal lobe epilepsy causes significant cognitive deficits in both humans and rodents, yet the specific circuit mechanisms underlying these deficits remain unknown. There are profound and selective interneuron death and axonal reorganization within the hippocampus of both humans and animal models of temporal lobe epilepsy.\r\nTo assess the specific contribution of these mechanisms on spatial coding, we developed a biophysically constrained network model of the CA1 region that consists of different subtypes of interneurons. More specifically, our network consists of 150 cells, 130 excitatory pyramidal cells and 20 interneurons (Fig. 1A). To simulate place cell formation in the network model, we generated grid cell and place cell inputs from the Entorhinal Cortex (ECLIII) and CA3 regions, respectively, activated in a realistic manner as observed when an animal transverses a linear track. Realistic place fields emerged in a subpopulation of pyramidal cells (40-50%), in which similar EC and CA3 grid cell inputs converged onto distal/proximal apical and basal dendrites. The tuning properties of these cells are very similar to the ones observed experimentally in awake, behaving animals\r\nTo examine the role of interneuron death and axonal reorganization in the formation and/or tuning properties of place fields we selectively varied the contribution of each interneuron type and desynchronized the two excitatory inputs. We found that desynchronized inputs were critical in reproducing the experimental data, namely the profound reduction in place cell numbers, stability and information content. These results demonstrate that the desynchronized firing of hippocampal neuronal populations contributes to poor spatial processing in epileptic mice, during behavior. Given the lack of experimental data on the selective contributions of interneuron death and axonal reorganization in spatial memory, our model findings predict the mechanistic effects of these alterations at the cellular and network levels."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256311",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "schavlis@ics.forth.gr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Spyridon Chavlis"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-01-30T10:48:53.72",
+ "ver_number": 9
+ },
+ "256370": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Masse et al 2018"
+ },
+ "class_id": 19,
+ "created": "2019-04-25T11:33:38.52",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256370,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 256368,
+ "object_name": "Masse, Nicolas Y [masse at uchicago.edu]"
+ },
+ {
+ "object_id": 256369,
+ "object_name": "Grant, Gregory D [dfreedman at uchicago.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 256314,
+ "object_name": "Masse NY, Grant GD, Freedman DJ (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Alleviating catastrophic forgetting: context gating and synaptic stabilization (Masse et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Artificial neural networks can suffer from catastrophic forgetting, in which learning a new task causes the network to forget how to perform previous tasks. While previous studies have proposed various methods that can alleviate forgetting over small numbers (<10) of tasks, it is uncertain whether they can prevent forgetting across larger numbers of tasks. In this study, we propose a neuroscience-inspired scheme, called \u201ccontext-dependent gating,\u201d in which mostly nonoverlapping sets of units are active for any one task. Importantly, context-dependent gating has a straightforward implementation, requires little extra computational overhead, and when combined with previous methods to stabilize connection weights, can allow networks to maintain high performance across large numbers of sequentially presented tasks.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256370",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2019-04-25T11:44:45.967",
+ "ver_number": 3
+ },
+ "256388": {
+ "class_id": 19,
+ "created": "2019-04-29T05:01:23.753",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256388,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143720,
+ "object_name": "Bianchi, Daniela [danielabianchi12 -at- gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 260767,
+ "object_name": "Pousinha PA, Mouska X, Bianchi D, Temido-Ferreira M, Raj\u00e3o-Saraiva J, Gomes R, Fernandez SP, Salgueiro-Pereira AR, Gandin C, Raymond EF, Barik J, Goutagny R, Bethus I, Lopes LV, Migliore M, Marie H (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "The APP in C-terminal domain alters CA1 neuron firing (Pousinha et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The amyloid precursor protein (APP) is central to AD pathogenesis and we recently showed that its intracellular domain (AICD) could modify synaptic signal integration. We now hypothezise that AICD modifies neuron firing activity, thus contributing to the disruption of memory processes. Using cellular, electrophysiological and behavioural techniques, we showed that pathological AICD levels weakens CA1 neuron firing activity through a gene transcription-dependent mechanism. Furthermore, increased AICD production in hippocampal neurons modifies oscillatory activity, specifically in the gamma frequency range, and disrupts spatial memory task. Collectively, our data suggest that AICD pathological levels, observed in AD mouse models and in human patients, might contribute to progressive neuron homeostatic failure, driving the shift from normal ageing to AD.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256388",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "danielabianchi12@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniela Bianchi"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-05-27T15:26:16.007",
+ "ver_number": 8
+ },
+ "256610": {
+ "class_id": 19,
+ "created": "2019-05-03T12:38:35.327",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256610,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261492,
+ "object_name": "Ibanez, Sara [sibanezs at bu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263611,
+ "object_name": "Iba\u00f1ez S, Luebke JI, Chang W, Draguljic D, Weaver CM (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Bump Attractor Models: Delayed Response & Recognition Span - spatial condition (Ibanez et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The archive contains examples of two spatial working memory tasks: the Delayed Response Task (DRT) or oculomotor task & the Delayed Recognition Span Task in the spatial condition (DRSTsp).\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256610",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sibanezs@bu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sara Ibanez"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2020-04-01T17:26:22.867",
+ "ver_number": 16
+ },
+ "256624": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Tabas A, Andermann M, Schuberth V, Riedel H, Balaguer-Ballester E, Rupp A (2019) Modeling and MEG evidence of early consonance processing in auditory cortex. PLoS Comput Biol 15:e1006820"
+ },
+ "class_id": 19,
+ "created": "2019-05-07T17:10:51.85",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256624,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 256625,
+ "object_name": "Tabas, Alejandro [tabas at cbs.mpg.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 113742,
+ "object_name": "Magnetoencephalography"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 254079,
+ "object_name": "Tabas A, Andermann M, Schuberth V, Riedel H, Balaguer-Ballester E, Rupp A (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Modeling and MEG evidence of early consonance processing in auditory cortex (Tabas et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Pitch is a fundamental attribute of auditory perception. The interaction of concurrent pitches gives rise to a sensation that can be characterized by its degree of consonance or dissonance. In this work, we propose that human auditory cortex (AC) processes pitch and consonance through a common neural network mechanism operating at early cortical levels. First, we developed a new model of neural ensembles incorporating realistic neuronal and synaptic parameters to assess pitch processing mechanisms at early stages of AC. Next, we designed a magnetoencephalography (MEG) experiment to measure the neuromagnetic activity evoked by dyads with varying degrees of consonance or dissonance. MEG results show that dissonant dyads evoke a pitch onset response (POR) with a latency up to 36 ms longer than consonant dyads. Additionally, we used the model to predict the processing time of concurrent pitches; here, consonant pitch combinations were decoded faster than dissonant combinations, in line with the experimental observations. Specifically, we found a striking match between the predicted and the observed latency of the POR as elicited by the dyads. These novel results suggest that consonance processing starts early in human auditory cortex and may share the network mechanisms that are responsible for (single) pitch processing."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256624",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "ver_date": "2019-05-14T15:57:40.727",
+ "ver_number": 6
+ },
+ "256627": {
+ "biosimulations": {
+ "value": "modeldb-256627"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Ratte et al 2014"
+ },
+ "class_id": 19,
+ "created": "2019-05-10T17:40:46.867",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256627,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 254354,
+ "object_name": "Ratt\u00e9 S, Zhu Y, Lee KY, Prescott SA (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Criticality,degeneracy in injury-induced changes in primary afferent excitability (Ratte et al 2014)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ },
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neuropathic pain remains notoriously difficult to treat despite numerous drug targets. Here, we offer a novel explanation for this intractability. Computer simulations predicted that qualitative changes in primary afferent excitability linked to neuropathic pain arise through a switch in spike initiation dynamics when molecular pathologies reach a tipping point (criticality), and that this tipping point can be reached via several different molecular pathologies (degeneracy). ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256627",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "pain"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom MOrse"
+ },
+ "ver_date": "2019-05-10T23:15:43.56",
+ "ver_number": 3
+ },
+ "256628": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Balachandar and Prescott 2018"
+ },
+ "class_id": 19,
+ "created": "2019-05-10T18:38:15.477",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256628,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 254219,
+ "object_name": "Balachandar A, Prescott SA (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Origin of heterogeneous spiking patterns in spinal dorsal horn neurons (Balachandar & Prescott 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ },
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neurons are often classified by spiking pattern. Yet, some\r\nneurons exhibit distinct patterns under subtly different test\r\nconditions, which suggests that they operate near an abrupt\r\ntransition, or bifurcation. A set of such neurons may exhibit\r\nheterogeneous spiking patterns not because of qualitative\r\ndifferences in which ion channels they express, but rather\r\nbecause quantitative differences in expression levels cause\r\nneurons to operate on opposite sides of a bifurcation. Neurons in\r\nthe spinal dorsal horn, for example, respond to somatic current\r\ninjection with patterns that include tonic, single, gap, delayed\r\nand reluctant spiking. It is unclear whether these patterns\r\nreflect five cell populations (defined by distinct ion channel\r\nexpression patterns), heterogeneity within a single population,\r\nor some combination thereof. We reproduced all five spiking\r\npatterns in a computational model by varying the densities of a\r\nlow-threshold (KV1-type) potassium conductance and an\r\ninactivating (A-type) potassium conductance and found that\r\nsingle, gap, delayed and reluctant spiking arise when the joint\r\nprobability distribution of those channel densities spans two\r\nintersecting bifurcations that divide the parameter space into\r\nquadrants, each associated with a different spiking\r\npattern.\r\n...\r\n\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256628",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "tom morse"
+ },
+ "ver_date": "2019-05-10T18:39:35.367",
+ "ver_number": 2
+ },
+ "256632": {
+ "class_id": 19,
+ "created": "2019-05-12T17:39:15.053",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ },
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ },
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ },
+ {
+ "object_id": 92089,
+ "object_name": "Nav1.8 SCN10A"
+ },
+ {
+ "object_id": 122326,
+ "object_name": "Kv1.1 KCNA1"
+ },
+ {
+ "object_id": 122327,
+ "object_name": "Kv1.2 KCNA2"
+ },
+ {
+ "object_id": 122816,
+ "object_name": "Kv2.1 KCNB1"
+ },
+ {
+ "object_id": 122817,
+ "object_name": "Kv3.1 KCNC1"
+ },
+ {
+ "object_id": 122808,
+ "object_name": "Kv3.3 KCNC3"
+ },
+ {
+ "object_id": 123580,
+ "object_name": "Kv3.4 KCNC4"
+ },
+ {
+ "object_id": 122803,
+ "object_name": "Kv4.3 KCND3"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 256632,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 257396,
+ "object_name": "Zheng, Yang [zylittlep at gmail.com]"
+ },
+ {
+ "object_id": 48423,
+ "object_name": "Bean, Bruce [bruce_bean at hms.harvard.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 257395,
+ "object_name": "Zheng Y, Liu P, Bai L, Trimmer JS, Bean BP, Ginty DD (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 150209,
+ "object_name": "R"
+ }
+ ]
+ },
+ "name": "DRG neuron models investigate how ion channel levels regulate firing properties (Zheng et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We present computational models for an Abeta-LTMR (low-threshold mechanoreceptor) and a C-LTMR expressing four Na channels and four K channels to investigate how the expression level of Kv1 and Kv4 regulate number of spikes (repetitive firing) and onset latency to action potentials in Abeta-LTMRs and C-LTMRs, respectively. \r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/256632",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "KCNC2; KCNA6"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yang Zheng\r\nBruce P. Bean"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zylittlep@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yang Zheng"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2019-06-24T17:07:51.94",
+ "ver_number": 13
+ },
+ "257027": {
+ "class_id": 19,
+ "created": "2019-05-30T05:55:08.503",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257027,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 170033,
+ "object_name": "Migliore, Rosanna [rosanna.migliore at cnr.it]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266924,
+ "object_name": "McCauley JP, Petroccione MA, D'Brant LY, Todd GC, Affinnih N, Wisnoski JJ, Zahid S, Shree S, Sousa AA, De Guzman RM, Migliore R, Brazhe A, Leapman RD, Khmaladze A, Semyanov A, Zuloaga DG, Migliore M, Scimemi A (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Circadian rhythmicity shapes astrocyte morphology and neuronal function in CA1 (McCauley et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Most animal species operate according to a 24-hour period set by the suprachiasmatic nucleus (SCN) of the hypothalamus. The rhythmic activity of the SCN modulates hippocampal-dependent memory, but the molecular and cellular mechanisms that account for this effect remain largely unknown. In McCauley et al. 2020 [1], we identify cell-type specific structural and functional changes that occur with circadian rhythmicity in neurons and astrocytes in hippocampal area CA1. Pyramidal neurons change the surface expression of NMDA receptors. Astrocytes change their proximity clustered excitatory synaptic inputs, ultimately shaping hippocampal-dependent learning in vivo. We identify to synapses. Together, these phenomena alter glutamate clearance, receptor activation and integration of temporally corticosterone as a key contributor to changes in synaptic strength. These findings highlight important mechanisms through which neurons and astrocytes modify the molecular composition and structure of the synaptic environment, contribute to the local storage of information in the hippocampus and alter the temporal dynamics of cognitive processing. \r\n\r\n[1] \"Circadian modulation of neurons and astrocytes controls synaptic plasticity in hippocampal area CA1\" by J.P. McCauley, M.A. Petroccione, L.Y. D\u2019Brant, G.C. Todd, N. Affinnih, J.J. Wisnoski, S. Zahid, S. Shree, A.A. Sousa, R.M. De Guzman, R. Migliore, A. Brazhe, R.D. Leapman, A. Khmaladze, A. Semyanov, D.G. Zuloaga, M. Migliore and A. Scimemi. \r\nCell Reports (2020), https://doi.org/10.1016/j.celrep.2020.108255\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257027",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "CIRCADIAN RHYTHMICITY"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@pa.ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Migliore"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-10-14T12:50:47.717",
+ "ver_number": 19
+ },
+ "257028": {
+ "citation": {
+ "attr_id": 391,
+ "value": "X. Zhang and S. Santaniello, Role of cerebellar GABAergic dysfunctions in the origins of essential tremor, Proc. Nat. Acad. Sci. USA (2019, in press)"
+ },
+ "class_id": 19,
+ "created": "2019-06-04T20:55:07.47",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 257028,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 257222,
+ "object_name": "Zhang X, Santaniello S (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A cortico-cerebello-thalamo-cortical loop model under essential tremor (Zhang & Santaniello 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ },
+ {
+ "object_id": 144503,
+ "object_name": "Inferior olive neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We investigated the origins of oscillations under essential tremor (ET) by building a computational model of the cortico-cerebello-thalamo-cortical loop. It showed that an alteration of amplitudes and decay times of the GABAergic currents to the dentate nucleus can facilitate sustained oscillatory activity at tremor frequency throughout the network as well as a robust bursting activity in the thalamus, which is consistent with observations of thalamic tremor cells in ET patients. Tremor-related oscillations initiated in small neural populations and spread to a larger network as the \r\nsynaptic dysfunction increased, while thalamic high-frequency stimulation suppressed tremor-related activity in thalamus but increased the oscillation frequency in the olivocerebellar loop."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257028",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Thalamocortical neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "xu.3.zhang@uconn.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Xu Zhang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2019-06-20T15:56:50.627",
+ "ver_number": 22
+ },
+ "257608": {
+ "biosimulations": {
+ "value": "modeldb-257608"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "J.E. Rubin and J.C. Smith, \"Robustness of respiratory rhythm generation across dynamic regimes\", PLoS Computational Biology, 2019"
+ },
+ "class_id": 19,
+ "created": "2019-07-03T12:20:44.227",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257608,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 125612,
+ "object_name": "Rubin, Jonathan E [jonrubin at pitt.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 232102,
+ "object_name": "Respiratory control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259059,
+ "object_name": "Rubin JE, Smith JC (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Respiratory central pattern generator (mammalian brainstem) (Rubin & Smith 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 232103,
+ "object_name": "PreBotzinger complex neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model includes a conditional respiratory pacemaker unit (representing the pre-Botzinger Complex), which can be tuned across oscillatory and non-oscillatory dynamic regimes in isolation, embedded into a full respiratory network. The work shows that under this embedding, the pacemaker unit's dynamics become masked: the network exhibits similar dynamical properties regardless of the conditional pacemaker node's tuning, and that node's outputs are dominated by\r\nnetwork influences."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257608",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "rhythm generation"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "adaptation current"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Respiratory rhythm generator neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jonrubin@pitt.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jonathan Rubin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2019-07-14T23:03:38.517",
+ "ver_number": 7
+ },
+ "257609": {
+ "class_id": 19,
+ "created": "2019-07-04T14:14:16.637",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257609,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261615,
+ "object_name": "Maes, Amadeus [amadeus.maes at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261804,
+ "object_name": "Maes A, Barahona M, Clopath C (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 253622,
+ "object_name": "Julia"
+ }
+ ]
+ },
+ "name": "Learning spatiotemporal sequences using recurrent spiking NN that discretizes time (Maes et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Learning to produce spatiotemporal sequences is a common task that the brain has to solve. The same neural substrate may be used by the brain to produce different sequential behaviours. The way the brain learns and encodes such tasks remains unknown as current computational models do not typically use realistic biologically-plausible learning. Here, we propose a model where a spiking recurrent network of excitatory and inhibitory biophysical neurons drives a read-out layer: the dynamics of the driver recurrent network is trained to encode time which is then mapped through the read-out neurons to encode another dimension, such as space or a phase. Different spatiotemporal patterns can be learned and encoded through the synaptic weights to the read-out neurons that follow common Hebbian learning rules. We demonstrate that the model is able to learn spatiotemporal dynamics on time scales that are behaviourally relevant and we show that the learned sequences are robustly replayed during a regime of spontaneous activity.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257609",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "amadeus.maes@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Amadeus Maes"
+ },
+ "ver_date": "2020-02-05T17:25:40.8",
+ "ver_number": 5
+ },
+ "257610": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Brette, R. and Gerstner, W. (2005). Adaptive exponential integrate-and-fire model\r\nas an effective description of neuronal activity. Journal of Neurophysiology,\r\n94(5):3637\u20133642. PMID: 16014787.\r\n\r\nDeFelipe, J., Ballesteros-Y\u00e1\u00f1ez, I., Inda, M. C., and Mu\u00f1oz, A. (2006). Double-bouquet\r\ncells in the monkey and human cerebral cortex with special reference to areas 17\r\nand 18. Progress in brain research, 154:15\u201332.\r\n\r\nDeFelipe, J., Hendry, S., and Jones, E. (1989). Synapses of double bouquet cells in\r\nmonkey cerebral cortex visualized by calbindin immunoreactivity. Brain research,\r\n503(1):49\u201354.\r\n\r\nFiebig, F. and Lansner, A. (2017). A spiking working memory model based on hebbian\r\nshort-term potentiation. Journal of Neuroscience, 37(1):83\u201396.\r\n\r\nGewaltig, M.-O. and Diesmann, M. (2007). Nest (neural simulation tool). Scholarpedia, 2(4):1430.\r\n\r\nKawaguchi, Y. and Kubota, Y. (1996). Physiological and morphological identification \r\nof somatostatin-or vasoactive intestinal polypeptide-containing cells among\r\ngabaergic cell subtypes in rat frontal cortex. Journal of Neuroscience, 16(8):2701\u2013\r\n2715.\r\n\r\nKawaguchi, Y. and Kubota, Y. (1997). Gabaergic cell subtypes and their synaptic connections \r\nin rat frontal cortex. Cerebral cortex, 7 (6):476\u201386.\r\n\r\nKelsom, C. and Lu, W. (2013). Development and specification of gabaergic cortical\r\ninterneurons. Cell & Bioscience, 3(1):19.\r\n\r\nKrimer, L. S., Zaitsev, A. V., Czanner, G., Kroner, S., Gonz\u00e1lez-Burgos, G., Povysheva,\r\nN. V., Iyengar, S., Barrionuevo, G., and Lewis, D. A. (2005). Cluster analysis\u2013based \r\nphysiological classification and morphological properties of inhibitory neurons in layers 2\u20133 of monkey dorsolateral prefrontal cortex. Journal of neurophysiology, 94(5):3009\u20133022.\r\n\r\nLansner, A. (2009). Associative memory models: from the cell-assembly theory to\r\nbiophysically detailed cortex simulations. Trends in neurosciences, 32 (3):178\u2013\r\n186.\r\n\r\nMari\u00b4a, R. and DeFelipe, J. (1995). A light and electron microscopic study of calbindin\r\nd-28k immunoreactive double bouquet cells in the human temporal cortex. Brain\r\nresearch, 690(1):133\u2013140.\r\n\r\nMarkram, H., Toledo-Rodriguez, M., Wang, Y., Gupta, A., Silberberg, G., and Wu,\r\nC. (2004). Interneurons of the neocortical inhibitory system. Nature Reviews\r\nNeuroscience, 5(10):793\u2013807.\r\n\r\nSilberberg, G. and Markram, H. (2007). Disynaptic inhibition between neocortical\r\npyramidal cells mediated by martinotti cells. Neuron, 53(5):735\u2013746.\r\n\r\nStrata, P. and Harvey, R. (1999). Dales principle. Brain research bulletin, 50(5-6):349\u2013\r\n350.\r\n\r\nTamas, G., Buhl, E., and Somogyi, P. (1997). Fast ipsps elicited via multiple synaptic\r\nrelease sites by different types of gabaergic neurone in the cat visual cortex. The\r\nJournal of physiology, 500(3):715\u2013738.\r\n\r\nTsodyks, M. V. and Markram, H. (1997). The neural code between neocortical pyra-\r\nmidal neurons depends on neurotransmitter release probability. Proceedings of the\r\nNational Academy of Sciences, 94(2):719-723.\r\n\r\nTully, P. J., Hennig, M. H., and Lansner, A. (2014). Synaptic and nonsynaptic plasticity\r\napproximating probabilistic inference. Frontiers in Synaptic Neuroscience, (6):8.\r\n\r\nTully, P. J., Lind\u00e9n, H., Hennig, M. H., and Lansner, A. (2016). Spike-based bayesian-\r\nhebbian learning of temporal sequences. PLoS computational biology, 12(5):1\u201335.\r\n\r\nY\u00e1\u00f1ez, I. B., Mu\u00f1oz, A., Contreras, J., Gonzalez, J., Rodri\u00b4guez-Veiga, E., and DeFelipe,\r\nJ. (2005). Double bouquet cell in the human cerebral cortex and a comparison with\r\nother mammals. The Journal of comparative neurology, 486 (4):344\u2013360.\r\n\r\nZaitsev, A. V., Povysheva, N. V., Gonzalez-Burgos, G., Rotaru, D., Fish, K. N., Krimer,\r\nL. S., and Lewis, D. A. (2008). Interneuron diversity in layers 2\u20133 of monkey\r\nprefrontal cortex. Cerebral cortex, 19(7):1597\u20131615.\r\n\r\nWulfram Gerstner and Richard Naud. How good are neuron models? Science,\r\n326(5951):379\u2013380, 2009.\r\n\r\nSandberg, A., Lansner, A., Petersson, K. M., and Ekeberg. (2002). A bayesian attractor \r\nnetwork with incremental learning. Network: Computation in neural systems,\r\n13(2):179\u2013194.\r\n\r\nMuir, D. R., Da Costa, N. M., Girardin, C. C., Naaman, S., Omer, D. B., Ruesch, E.,\r\nGrinvald, A., and Douglas, R. J. (2011). Embedding of cortical representations by\r\nthe superficial patch system. Cerebral Cortex, 21(10):2244\u20132260.\r\n\r\nYoshimura, Y. and Callaway, E. M. (2005). Fine-scale specificity of cortical networks\r\ndepends on inhibitory cell type and connectivity. Nature neuroscience, 8(11):1552.\r\n\r\nStettler, D. D., Das, A., Bennett, J., and Gilbert, C. D. (2002). Lateral connectivity and\r\ncontextual interactions in macaque primary visual cortex. Neuron, 36(4):739\u2013750.\r\n\r\nBinzegger, T., Douglas, R., and Martin, K. (2009). Topology and dynamics of the\r\ncanonical circuit of cat v1. Neural Networks, 22(8):1071 \u2013 1078. Cortical Microcircuits.\r\n\r\nThomson, A. M., West, D. C., Wang, Y., and Bannister, A. P. (2002). Synaptic \r\nConnections and Small Circuits Involving Excitatory and Inhibitory Neurons in Layers\r\n25 of Adult Rat and Cat Neocortex: Triple Intracellular Recordings and Biocytin\r\nLabelling In Vitro. Cerebral Cortex, 12(9):936\u2013953.\r\n\r\nLansner, A. and Ekeberg, . (1989). A one-layer feedback artificial neural network with\r\na bayesian learning rule.\r\n\r\nCaporale, N. and Dan, Y. (2008). Spike timing\u2013dependent plasticity: a hebbian learning\r\nrule. Annu. Rev. Neurosci., 31:25\u201346. International Journal of Neural Systems,\r\n01(01):77\u201387.\r\n\r\nRobert A. McDougal, Thomas M. Morse, Ted Carnevale, Luis Marenco, Rixin Wang,\r\nMichele Migliore, Perry L. Miller, Gordon M. Shepherd, and Michael L. Hines.\r\nTwenty years of modeldb and beyond: building essential modeling tools for the\r\nfuture of neuroscience. Journal of Computational Neuroscience, 42(1):1\u201310, Feb\r\n2017."
+ },
+ "class_id": 19,
+ "created": "2019-07-04T21:02:59.283",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257610,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258851,
+ "object_name": "Chrysanthidis, Nikolaos [nchr at kth.se]"
+ },
+ {
+ "object_id": 258852,
+ "object_name": "Fiebig, Florian [fiebig at kth.se]"
+ },
+ {
+ "object_id": 83465,
+ "object_name": "Lansner, Anders [ala at kth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258850,
+ "object_name": "Chrysanthidis N, Fiebig F, Lansner A (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "An electrophysiological model of GABAergic double bouquet cells (Chrysanthidis et al. 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 230198,
+ "object_name": "Neocortex U1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ },
+ {
+ "object_id": 93384,
+ "object_name": "Neocortex bitufted interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We present an electrophysiological model of double bouquet cells (DBCs) and integrate them into an established cortical columnar microcircuit model that implements a BCPNN (Bayesian Confidence Propagation Neural Network) learning rule. The proposed architecture effectively solves the problem of duplexed learning of inhibition and excitation by replacing recurrent inhibition between pyramidal cells in functional columns of different stimulus selectivity with a plastic disynaptic pathway. The introduction of DBCs improves the biological plausibility of our model, without affecting the model's spiking activity, basic operation, and learning abilities."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257610",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chrysanthidis, Nikolaos [nchr at kth.se]; Fiebig, Florian [fiebig at kth.se]; Lansner, Anders [ala at kth.se]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "GABAergic interneuron;"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nchr@kth.se"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Nikolaos Chrysanthidis"
+ },
+ "ver_date": "2019-09-11T15:25:32.197",
+ "ver_number": 9
+ },
+ "257631": {
+ "class_id": 19,
+ "created": "2019-07-08T18:03:21.04",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257631,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 257630,
+ "object_name": "Keane, Adam "
+ },
+ {
+ "object_id": 257629,
+ "object_name": "Gong, Pulin [pulin.gong at sydney.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 257620,
+ "object_name": "Keane A, Henderson JA, Gong P (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Dynamical patterns underlying response properties of cortical circuits (Keane et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Recent experimental studies show cortical circuit responses to external stimuli display varied dynamical properties. These include stimulus strength-dependent population response patterns, a shift from synchronous to asynchronous states and a decline in neural variability. To elucidate the mechanisms underlying these response properties and explore how they are mechanistically related, we develop a neural circuit model that incorporates two essential features widely observed in the cerebral cortex. The first feature is a balance between excitatory and inhibitory inputs to individual neurons; the second feature is distance-dependent connectivity. We show that applying a weak external stimulus to the model evokes a wave pattern propagating along lateral connections, but a strong external stimulus triggers a localized pattern; these stimulus strength-dependent population response patterns are quantitatively comparable with those measured in experimental studies. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257631",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2019-07-08T18:05:10.37",
+ "ver_number": 2
+ },
+ "257747": {
+ "class_id": 19,
+ "created": "2019-07-17T03:39:22.247",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92086,
+ "object_name": "Nav1.5 SCN5A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257747,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261314,
+ "object_name": "Carannante, Ilaria [ilariac at kth.se]"
+ },
+ {
+ "object_id": 151444,
+ "object_name": "Balbi, Pietro [piero.balbi at fsm.it]"
+ },
+ {
+ "object_id": 261315,
+ "object_name": "Andreozzi, Emilio [emilio.andreozzi at unina.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261320,
+ "object_name": "Andreozzi E, Carannante I, D'Addio G, Cesarelli M, Balbi P (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Phenomenological models of NaV1.5: Hodgkin-Huxley and kinetic formalisms (Andreozzi et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Computational models of ion channels represent the building blocks of conductance-based, biologically inspired models of neurons and neural networks. Ion channels are still widely modelled by means of the formalism developed by the seminal work of Hodgkin and Huxley (HH), although the electrophysiological features of the channels are currently known to be better fitted by means of kinetic Markov-type models. The present study is aimed at showing why simplified Markov-type kinetic models are more suitable for ion channels modelling as compared to HH ones, and how a manual optimization process can be rationally carried out for both. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257747",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Carannante, Ilaria [ilariac at kth.se]\r\nBalbi, Pietro [piero.balbi at icsmaugeri.it]\r\nAndreozzi, Emilio [emilio.andreozzi at unina.it]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ilariac@kth.se"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ilaria Carannante"
+ },
+ "ver_date": "2019-11-26T13:25:07.477",
+ "ver_number": 5
+ },
+ "257877": {
+ "class_id": 19,
+ "created": "2019-07-22T05:48:02.737",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257877,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262030,
+ "object_name": "Assisi C, Stopfer M, Bazhenov M (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Optimal sparse olfactory representations persist in a plastic network (Assisi et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 261422,
+ "object_name": "Abstract Rulkov-Bazhenov map neurons"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Kenyon cells (KCs) of the mushroom body represent odors as a sparse code. When viewed from the perspective of follower neurons, mushroom body output neurons (MBONs) reveal an optimal level of coding sparseness that maximally separates the representations of odors. However, the KC\u2013MBON synapse is highly plastic and may be potentiated or depressed by odor\u2013driven experience that could, in turn, disrupt the optimality formed by pre\u2013synaptic circuits. Contrary to this expectation, we show that synaptic plasticity based on spike timing of pre- and postsynaptic neurons improves the ability of the system to distinguish between the representations of similar odors while preserving the optimality determined by pre\u2013synaptic circuits.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257877",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Abstract Rulkov-Bazhenov map neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "collins@iiserpune.ac.in"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Collins Assisi"
+ },
+ "ver_date": "2020-05-13T09:40:17.507",
+ "ver_number": 6
+ },
+ "257940": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Cleland, TA., and Linster C. (2012) On-center/inhibitory surround decorrelation vai intraglomerular inhibition in the olfactory bulb glomerular layer. Front Integr Neurosc. 6:5. \r\n\r\nLinster, C. Nai, Q. and Ennis, M. (2011) Non-linear effects of noradrenergic modulation of olfactory bulb function in adult rodents. J. Neurophysiol. 105(4):1432-43. \r\n\r\nLinster, C. and Cleland, TA. (2011) Decorrelation of odor respresentations via spike timing dependent plasticity. Frontiers in Computational Neuroscience. 4: 157. \r\n\r\nEscanilla, O., Arrellanos, A., Karnow, A., Ennis, M. and Linster, C. (2010) Noradrenergic modulation of odor detection and discrimination thresholds. Eur J Neuroscience 32(3):458-68. \r\n\r\nLinster, C., Menon, AV, Singh, CY, Wilson, DA (2009) Odor specific habituation arises from interaction of afferent synaptic adaptation and intrinsic synaptic potentiation in olfactory cortex. Learn Mem. 16)7): 452-9 \r\n\r\nLinster and Cleland (2004) Configurational and elemental olfactory mixture perception can arise from lateral inhibition J Comput Neurosci. 16(1):39-47."
+ },
+ "class_id": 19,
+ "created": "2019-07-23T14:21:09.563",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257940,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258741,
+ "object_name": "Linster, Christiane [cl243 at cornell.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258740,
+ "object_name": "Linster C, Kelsch W (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A computational model of oxytocin modulation of olfactory recognition memory (Linster & Kelsch 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3978,
+ "object_name": "Olfactory bulb main interneuron periglomerular GABA cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ },
+ {
+ "object_id": 153283,
+ "object_name": "Olfactory bulb main interneuron granule TC GABA cell"
+ },
+ {
+ "object_id": 207694,
+ "object_name": "Olfactory bulb main tufted cell external"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of olfactory bulb (OB) and anterior olfactory nucleus (AON) pyramidal cells. Includes olfactory sensory neurons, mitral cells, periglomerular, external tufted and granule interneurons and pyramidal cells. Can be built to include a feedback loop between OB and AON. Output consists of voltage and spikes over time in all neurons. Model can be stimulated with simulated odorants. The code submitted here has served for a number of modeling explorations of olfactory bulb and cortex. \r\nThe model architecture is defined in \"bulb.dat\" with synapses defined in \"channels.dat\". The main function to run the model can be found in \"neuron.c\". Model architecture is constructed in \"set.c\" from types defined in \"sim.c\". A make file to create an executable is located in \"neuron.mak\"."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257940",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Christiane Linster"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cl243@cornell.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Christiane Linster"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2019-10-09T17:43:08.71",
+ "ver_number": 9
+ },
+ "257965": {
+ "class_id": 19,
+ "created": "2019-07-24T17:39:31.88",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 257965,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258230,
+ "object_name": "Bell, Miriam "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 257879,
+ "object_name": "Bell M, Bartol T, Sejnowski T, Rangamani P (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 147741,
+ "object_name": "COMSOL (web link to model)"
+ }
+ ]
+ },
+ "name": "Dendritic spine geometry, spine apparatus organization: spatiotemporal Ca dynamics (Bell et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... we systematically investigated the relationship between the shape and size of both the spine head and spine apparatus, a specialized endoplasmic reticulum compartment within the spine head, in modulating rapid calcium dynamics using mathematical modeling. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/257965",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2019-07-25T18:19:28.17",
+ "ver_number": 3
+ },
+ "258234": {
+ "biosimulations": {
+ "value": "modeldb-258234"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Modulation of inhibitory strength and kinetics facilitates regulation of persistent inward currents and motoneuron excitability following spinal cord injury.\r\nVenugopal S, Hamm TM, Crook SM, Jung R.\r\nJ Neurophysiol. 2011 Nov;106(5):2167-79. doi: 10.1152/jn.00359.2011. Epub 2011 Jul 20.\r\nPMID: 21775715"
+ },
+ "class_id": 19,
+ "created": "2019-07-27T00:59:39.96",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258234,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258326,
+ "object_name": "Venugopal, Sharmila [vsharmila at g.ucla.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 188674,
+ "object_name": "Venugopal S, Hamm TM, Crook SM, Jung R (2011)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Inhibitory control of motoneuron excitability (Venugopal et al 2011)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A two-compartment model for a motor neuron following chronic spinal cord injury with excessive dendritic persistent Ca2+ current."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258234",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "XPPAUT"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vsharmila@g.ucla.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sharmila Venugopal"
+ },
+ "ver_date": "2019-07-29T17:34:39.17",
+ "ver_number": 9
+ },
+ "258235": {
+ "citation": {
+ "attr_id": 391,
+ "value": "S Venugopal*, S Seki, DH Terman, A Pantazis, R Olcese, M Wiedau-Pazos, SH Chandler, \u201cResurgent Na+ current offers noise modulation in bursting neurons\u201d, PLoS Computational Biology, June 2019, 15(6): e1007154. doi: 10.1371/journal.pcbi.1007154."
+ },
+ "class_id": 19,
+ "created": "2019-07-27T02:26:11.673",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258235,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258326,
+ "object_name": "Venugopal, Sharmila [vsharmila at g.ucla.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258238,
+ "object_name": "Venugopal S, Seki S, Terman DH, Pantazis A, Olcese R, Wiedau-Pazos M, Chandler SH (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Resurgent Na+ current offers noise modulation in bursting neurons (Venugopal et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neurons utilize bursts of action potentials as an efficient and reliable way to encode information. It is likely that the intrinsic membrane properties of neurons involved in burst generation may also participate in preserving its temporal features. Here we examined the contribution of the persistent and resurgent components of voltage-gated Na+ currents in modulating the burst discharge in sensory neurons. Using mathematical modeling, theory and dynamic-clamp electrophysiology, we show that, distinct from the persistent Na+ component which is important for membrane resonance and burst generation, the resurgent Na+ can help stabilize burst timing features including the duration and intervals. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258235",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vsharmila@g.ucla.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sharmila Venugopal"
+ },
+ "ver_date": "2019-07-29T17:33:14.613",
+ "ver_number": 7
+ },
+ "258478": {
+ "class_id": 19,
+ "created": "2019-08-01T14:46:48.467",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258478,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258479,
+ "object_name": "Burka, D\u00e1vid "
+ },
+ {
+ "object_id": 258480,
+ "object_name": "Emri, Zsuzsa "
+ },
+ {
+ "object_id": 258481,
+ "object_name": "K\u00e1li, Szabolcs "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258361,
+ "object_name": "Csernai M, Borb\u00e9ly S, Kocsis K, Burka D, Fekete Z, Balogh V, K\u00e1li S, Emri Z, Barth\u00f3 P (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Dynamics of sleep oscillations coupled to brain temperature on multiple scales (Csernai et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Every form of neural activity depends on temperature, yet its\r\nrelationship to brain rhythms is poorly understood. In this work we\r\nexamined how sleep spindles are influenced by changing brain\r\ntemperatures and how brain temperature is influenced by sleep\r\noscillations. We employed a novel thermoelectrode designed for\r\nmeasuring temperature while recording neural activity. We found that\r\nspindle frequency is positively correlated and duration negatively\r\ncorrelated with brain temperature. Local heating of the thalamus\r\nreplicated the temperature dependence of spindle parameters in the\r\nheated area only, suggesting biophysical rather than global modulatory\r\nmechanisms, a finding also supported by a thalamic network\r\nmodel. Finally, we show that switches between oscillatory states also\r\ninfluence brain temperature on a shorter and smaller scale. Epochs of\r\nparadoxical sleep as well as the infra-slow oscillation were\r\nassociated with brain temperature fluctuations below 0.2\u00b0C. Our\r\nresults highlight that brain temperature is massively intertwined with\r\nsleep oscillations on various time scales.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258478",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2019-08-01T17:07:10.267",
+ "ver_number": 6
+ },
+ "258631": {
+ "class_id": 19,
+ "created": "2019-08-09T00:54:29.75",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258631,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 266891,
+ "object_name": "Paranoia"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266887,
+ "object_name": "Reed EJ, Uddenberg S, Suthaharan P, Mathys CD, Taylor JR, Groman SM, Corlett PR (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 266894,
+ "object_name": "Multilayer Hierarchical Gaussian filter (HGF)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150209,
+ "object_name": "R"
+ }
+ ]
+ },
+ "name": "Paranoia as a deficit in non-social belief updating (Reed et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Model fit to human and rodent data showing effects of paranoia and methamphetamine on behavior and model parameters."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258631",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "erin.reed@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Erin Reed"
+ },
+ "ver_date": "2022-10-10T10:08:16.85",
+ "ver_number": 23
+ },
+ "258643": {
+ "class_id": 19,
+ "created": "2019-08-13T16:36:31.3",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258643,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258644,
+ "object_name": "Rumbell, Tim [timrumbell at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 227131,
+ "object_name": "Pacemaking mechanism"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 260749,
+ "object_name": "Rumbell T, Kozloski J (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Control of oscillations and spontaneous firing in dopamine neurons (Rumbell & Kozloski 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of Substantia Nigra pars Compacta Dopamine Neuron.\r\n'Toy' morphology with 4 dendrites, one of which is the axon-bearing dendrite, with an axon branching from it. The axon is a short 'axon initial segment' compartment, followed by a longer 'axon'.\r\n727 parameter sets for ion channel conductance and kinetic parameters were found using evolutionary optimization, all of which are viable candidates representing a plausible model of a SNc DA."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258643",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tim Rumbell (timrumbell@gmail.com)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timrumbell@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tim Rumbell"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2019-09-13T16:26:29.26",
+ "ver_number": 9
+ },
+ "258738": {
+ "class_id": 19,
+ "created": "2019-08-20T10:58:25.467",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122826,
+ "object_name": "NR2A GRIN2A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258738,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 168951,
+ "object_name": "Sherif, Mohamed [mohamed.sherif.md at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112853,
+ "object_name": "Schizophrenia"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267080,
+ "object_name": "Sherif MA, Neymotin SA, Lytton WW (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "In silico hippocampal modeling for multi-target pharmacotherapy in schizophrenia (Sherif et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154093,
+ "object_name": "Hippocampus CA3 interneuron basket GABA cell"
+ },
+ {
+ "object_id": 139885,
+ "object_name": "Hippocampus CA3 stratum oriens lacunosum-moleculare interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Using a hippocampal CA3 computer model with 1200 neurons, we examined the effects of alterations in NMDAR, HCN (Ih current), and GABAAR on information flow (measured with normalized transfer entropy), and in gamma activity in local field potential (LFP). We found that altering NMDARs, GABAAR, Ih, individually or in combination, modified information flow in an inverted-U shape manner, with information flow reduced at low and high levels of these parameters. Theta-gamma phase-amplitude coupling also had an inverted-U shape relationship with NMDAR augmentation. The strong information flow was associated with an intermediate level of synchrony, seen as an intermediate level of gamma activity in the LFP, and an intermediate level of pyramidal cell excitability\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258738",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mohamed.sherif.md@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mohamed A. Sherif"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-06T10:43:55.13",
+ "ver_number": 11
+ },
+ "258807": {
+ "citation": {
+ "attr_id": 391,
+ "value": "\"Reconstructing Neuronal Circuitry from Parallel Spike Trains\" by Ryota Kobayashi,\r\nShuhei Kurita, Anno Kurth, Katsunori Kitano, Kenji Mizuseki, Markus Diesmann, Barry J. Richmond\r\n and Shigeru Shinomoto to appear in Nature Communications in 2019"
+ },
+ "class_id": 19,
+ "created": "2019-08-28T15:49:28.493",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258807,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258811,
+ "object_name": "Kurth, Anno [a.kurth at fz-juelich.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 260903,
+ "object_name": "Kobayashi R, Kurita S, Kurth A, Kitano K, Mizuseki K, Diesmann M, Richmond BJ, Shinomoto S (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "GLMCC validation neural network model (Kobayashi et al. 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 258847,
+ "object_name": "Abstract integrate-and-fire leaky neuron with exponential post-synaptic current"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Network model of two populations of randomly connected inhibitory and excitatory neurons to validate method for reconstructing the neural circuitry developed in \"Reconstructing Neuronal Circuitry from Parallel Spike Trains\" by Ryota Kobayashi, Shuhei Kurita, Anno Kurth, Katsunori Kitano, Kenji Mizuseki, Markus Diesmann, Barry J. Richmond and Shigeru Shinomoto."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258807",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Anno Kurth (a.kurht@fz-juelich.de)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "LIF-neuron with exponential post-synaptic current"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "a.kurth@fz-juelich.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Anno Kurth"
+ },
+ "ver_date": "2019-09-06T16:11:21.49",
+ "ver_number": 6
+ },
+ "258844": {
+ "class_id": 19,
+ "created": "2019-09-01T20:21:53.883",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258844,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261909,
+ "object_name": "Tanaka T, Nakamura KC (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 144398,
+ "object_name": "LFPy"
+ }
+ ]
+ },
+ "name": "LFP in striatum (Tanaka & Nakamura 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The numerical simulations of LFP generation by cortical pyramidal neuron and medium-sized spiny neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258844",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "LFPy"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tanaka.takuma@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Takuma Tanaka"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2019-11-21T14:31:43.66",
+ "ver_number": 6
+ },
+ "258846": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Crevecoeur F., Scott S. H., Cluff T., 2019, \"Robust control of human reaching movements: a model-free strategy to compensate for unpredictable disturbances\"\r\nJournal of Neuroscience, DOI: https://doi.org/10.1523/JNEUROSCI.0770-19.2019"
+ },
+ "class_id": 19,
+ "created": "2019-09-06T04:48:13.843",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258846,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 259370,
+ "object_name": "Crevecoeur, Fr\u00e9d\u00e9ric "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259369,
+ "object_name": "Crevecoeur F, Scott SH, Cluff T (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Reaching movements with robust or stochastic optimal control models (Crevecoeur et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We explored the hypothesis that compensation for unmodelled disturbances was supported\r\nby a robust neural control strategy. We studied the predictions of stochastic optimal control (LQG) (Linear Quadratic Gaussian) (Todorov, 2005) and a robust control design that can equivalently be described as a \u201cmin-max\u201d or\r\nworst-case strategy (Basar and Bernhard, 1991) applied to linear models of planar reaching\r\nmovements. The robust controller displayed an increase in control gains, resulting in faster\r\nmovements towards the target and more vigorous responses to perturbations. Our experimental\r\nresults supported these predictions: the occurrence of unexpected force field disturbances evoked\r\nboth faster movements and more vigorous responses to perturbations. Thus, the neural controller\r\nwas more robust in the sense that the feedback responses reduced the impact of the perturbations\r\n(step and force field). Thus the compensation for disturbances involved a \u201cmodel-free\u201d component.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258846",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Fr\u00e9d\u00e9ric Crevecoeur "
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Reaching Control"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "frederic.crevecoeur@uclouvain.be"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Crevecoeur"
+ },
+ "ver_date": "2019-09-24T15:43:13.897",
+ "ver_number": 9
+ },
+ "258854": {
+ "class_id": 19,
+ "created": "2019-09-10T10:45:23.17",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 263960,
+ "object_name": "I C"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 258854,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263954,
+ "object_name": "Navas-Olive, Andrea [acnavasolive at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266759,
+ "object_name": "Navas-Olive A, Valero M, Jurado-Parras T, de Salas-Quiroga A, Averkin RG, Gambino G, Cid E, de la Prida LM (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "LCN-HippoModel: model of CA1 PCs deep-superficial theta firing dynamics (Navas-Olive et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using a biophysically realistic model of CA1 pyramidal cells together with a combination of single-cell and multisite electrophysiological recordings, we have studied factors underlying the internal theta phase preference of identified cell types from the dorsal CA1.\r\nWe found that perisomatic inhibition delivered by complementary populations of basket cells interacts with input pathways to shape phase-locked specificity of deep and superficial CA1 pyramidal cells. Somatodendritic integration of fluctuating glutamatergic inputs defined cycle-by-cycle by nested waveforms demonstrated that firing selection is tuneable across sublayers under the relevant influence of intrinsic factors. Our data identify a set of testable physiological mechanisms underlying a phase specific firing reservoir that can be repurposed for high-level flexible dynamical representations. Documentation in https://acnavasolive.github.io/LCN-HippoModel/. More info: http://hippo-circuitlab.es/"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258854",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I AHPs, I C, I Ca L, iCa T, I KDR"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Andrea Navas-Olive"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "acnavasolive@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Andrea Navas-Olive"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-04-14T12:14:37.203",
+ "ver_number": 18
+ },
+ "258867": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Schulz JM, Knoflach F, Hernandez MC, Bischofberger J.\r\nDendrite-targeting interneurons control synaptic NMDA-receptor activation via nonlinear a5-GABAA receptors.\r\nNat Commun. 2018 Sep 3;9(1):3576. doi: 10.1038/s41467-018-06004-8.\r\n\r\nPMID: 30177704"
+ },
+ "class_id": 19,
+ "created": "2019-09-11T16:02:23.86",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258867,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258947,
+ "object_name": "Schulz, Jan M [j.schulz at unibas.ch]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258870,
+ "object_name": "Schulz JM, Knoflach F, Hernandez MC, Bischofberger J (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal neuron: nonlinear a5-GABAAR controls synaptic NMDAR activation (Schulz et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The study shows that IPSCs mediated by a5-subunit containing GABAA receptors are strongly outward-rectifying generating 4-fold larger conductances above -50?mV than at rest. Experiments and modeling show that synaptic activation of these receptors can very effectively control voltage-dependent NMDA-receptor activation in a spatiotemporally controlled manner in fine dendrites of CA1 pyramidal cells.\r\n\r\nThe files contain the NEURON code for Fig.8, Fig.S8 and Fig.S9 of the paper. The model is based on the model published by Bloss et al., 2017. Physiological properties of GABA synapses were modified as determined by optogenetic activation of inputs during voltage-clamp recordings in Schulz et al. 2018. Other changes include stochastic synaptic release and short-term synaptic plasticity. All changes of mechanisms and parameters are detailed in the Methods of the paper.\r\n\r\nSimulation can be run by starting start_simulation.hoc after running mknrndll. The files that model the individual figures have to be uncommented in start_simulation.hoc beforehand."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258867",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "inhibition of NMDA spikes"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "j.schulz@unibas.ch"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jan M Schulz"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2019-09-13T18:25:30.233",
+ "ver_number": 7
+ },
+ "258946": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Schulz JM, Knoflach F, Hernandez MC, Bischofberger J.\r\nDendrite-targeting interneurons control synaptic NMDA-receptor activation via nonlinear a5-GABAA receptors.\r\nNat Commun. 2018 Sep 3;9(1):3576. doi: 10.1038/s41467-018-06004-8.\r\n\r\nPMID: 30177704"
+ },
+ "class_id": 19,
+ "created": "2019-09-12T06:05:49.673",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258946,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258947,
+ "object_name": "Schulz, Jan M [j.schulz at unibas.ch]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 258870,
+ "object_name": "Schulz JM, Knoflach F, Hernandez MC, Bischofberger J (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Single compartment: nonlinear a5-GABAAR controls synaptic NMDAR activation (Schulz et al 2018)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This study shows that IPSCs mediated by a5-subunit containing GABAA receptors are strongly outward-rectifying generating 4-fold larger conductances above -50?mV than at rest. This model shows that synaptic activation of these receptors can very effectively control voltage-dependent NMDA-receptor activation.\r\n\r\nThe files contain the NEURON code for Fig.6 and Fig.7. The model is a single dendritic compartment with one glutamatergic and GABAergic synapse. Physiological properties of GABA synapses were modeled as determined by optogenetic activation of inputs during voltage-clamp recordings in Schulz et al. 2018. "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258946",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "j.schulz@unibas.ch"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jan M Schulz"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2019-09-12T18:49:42.727",
+ "ver_number": 7
+ },
+ "258949": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://arxiv.org/ftp/arxiv/papers/1703/1703.01357.pdf"
+ },
+ "class_id": 19,
+ "created": "2019-09-12T22:25:19.497",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 258949,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239548,
+ "object_name": "Helfer, Peter [peter.helfer at mail.mcgill.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262031,
+ "object_name": "Helfer P, Shultz TR (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A computational model of systems memory consolidation and reconsolidation (Helfer & Shultz 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A neural-network framework for modeling systems memory consolidation and reconsolidation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/258949",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "peter.helfer@mail.mcgill.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Peter Helfer"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-12-06T16:49:08.7",
+ "ver_number": 6
+ },
+ "259261": {
+ "class_id": 19,
+ "created": "2019-09-17T18:58:50.603",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 259261,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 260748,
+ "object_name": "Muller, Salomon Z [szm2106 at columbia.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261229,
+ "object_name": "Muller SZ, Zadina AN, Abbott LF, Sawtell NB (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "ELL Medium Ganglion cell (Muller et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 260746,
+ "object_name": "ELL Medium Ganglion cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Distributing learning across multiple layers has proven extremely powerful in artificial neural networks. However, little is known about how multi-layer learning is implemented in the brain. Here, we provide an account of learning across multiple processing layers in the electrosensory lobe (ELL) of mormyrid fish and report how it solves problems well known from machine learning. Because the ELL operates and learns continuously, it must reconcile learning and signaling functions without switching its mode of operation. We show that this is accomplished through a functional compartmentalization within intermediate layer neurons in which inputs driving learning differentially affect dendritic and axonal spikes. We also find that connectivity based on learning rather than sensory response selectivity assures that plasticity at synapses onto intermediate-layer neurons is matched to the requirements of output neurons. The mechanisms we uncover have relevance to learning in the cerebellum, hippocampus, and cerebral cortex, as well as in artificial systems.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/259261",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Separation of responses"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Muller, Salomon Z (szm2106@columbia.edu)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "ELL Medium Ganglion cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "szm2106@columbia.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Salomon Muller"
+ },
+ "ver_date": "2019-11-12T15:44:37.863",
+ "ver_number": 22
+ },
+ "259366": {
+ "class_id": 19,
+ "created": "2019-09-20T10:53:32.907",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 259366,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 186894,
+ "object_name": "Tikidji-Hamburyan, Ruben [ruben.tikidji.hamburyan at gmail.com] "
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263161,
+ "object_name": "Tikidji-Hamburyan RA, Canavier CC (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cycle skipping in ING Type 1 / Type 2 networks (Tikidji-Hamburyan & Canavier 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"All-to-all homogeneous networks of inhibitory neurons synchronize completely under the right conditions; however, many modeling studies have shown that biological levels of heterogeneity disrupt synchrony. Our fundamental scientific question is \u201chow can neurons maintain partial synchrony in the presence of heterogeneity and noise?\u201d A particular subset of strongly interconnected interneurons, the PV+ fast spiking basket neurons, are strongly implicated in gamma oscillations and in phase locking of nested gamma oscillations to theta. Their excitability type apparently varies between brain regions: in CA1 and the dentate gyrus they have type 1 excitability, meaning that they can fire arbitrarily slowly, whereas in the striatum and cortex they have type 2 excitability, meaning that there is a frequency threshold below which they cannot sustain repetitive firing. We constrained the models to study the effect of excitability type (more precisely bifurcation type) in isolation from all other factors. We use sparsely connected, heterogeneous, noisy networks with synaptic delays to show that synchronization properties, namely the resistance to suppression and the strength of theta phase to gamma amplitude coupling, are strongly dependent on the pairing of excitability type with the type of inhibition. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/259366",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ruben.tikidji.hamburyan@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ruben Tikidji-Hamburyan"
+ },
+ "ver_date": "2022-05-27T15:33:06.343",
+ "ver_number": 14
+ },
+ "259542": {
+ "class_id": 19,
+ "created": "2019-09-27T16:07:30.147",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 259542,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 259543,
+ "object_name": "Kim, Jimin "
+ },
+ {
+ "object_id": 259544,
+ "object_name": "Leahy, William "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259484,
+ "object_name": "Kim J, Leahy W, Shlizerman E (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "name": "Neural Interactome: interactive simulation of a neuronal system (Kim et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"\"Connectivity and biophysical processes determine the functionality of\r\nneuronal networks. We, therefore, developed a real-time framework,\r\ncalled Neural Interactome, to simultaneously visualize and interact\r\nwith the structure and dynamics of such networks. Neural Interactome\r\nis a cross-platform framework, which combines graph visualization with\r\nthe simulation of neural dynamics, or experimentally recorded multi\r\nneural time series, to allow application of stimuli to neurons to\r\nexamine network responses. In addition, Neural Interactome supports\r\nstructural changes, such as disconnection of neurons from the network\r\n(ablation feature). Neural dynamics can be explored on a single neuron\r\nlevel (using a zoom feature), back in time (using a review feature),\r\nand recorded (using presets feature). The development of the Neural\r\nInteractome was guided by generic concepts to be applicable to\r\nneuronal networks with different neural connectivity and dynamics. We\r\nimplement the framework using a model of the nervous system of\r\nCaenorhabditis elegans (C. elegans) nematode, a model organism with\r\nresolved connectome and neural dynamics. We show that Neural\r\nInteractome assists in studying neural response patterns associated\r\nwith locomotion and other stimuli. In particular, we demonstrate how\r\nstimulation and ablation help in identifying neurons that shape\r\nparticular dynamics. We examine scenarios that were experimentally\r\nstudied, such as touch response circuit, and explore new scenarios\r\nthat did not undergo elaborate experimental studies.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/259542",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2019-09-27T16:14:04.297",
+ "ver_number": 4
+ },
+ "259546": {
+ "class_id": 19,
+ "created": "2019-09-30T12:33:03.643",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 259546,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234245,
+ "object_name": "Wilmes, Katharina A. [katharina.wilmes at googlemail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 264841,
+ "object_name": "Wilmes KA, Clopath C (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Inhibitory microcircuits for top-down plasticity of sensory representations (Wilmes & Clopath 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 230185,
+ "object_name": "Neocortex V1 interneuron chandelier SOM GABA cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 230183,
+ "object_name": "Neocortex V1 interneuron bipolar VIP/CR GABA cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Rewards influence plasticity of early sensory representations, but the underlying changes in circuitry are unclear. Recent experimental findings suggest that inhibitory circuits regulate learning. In addition, inhibitory neurons are highly modulated by diverse long-range inputs, including reward signals. We, therefore, hypothesise that inhibitory plasticity plays a major role in adjusting stimulus representations. We investigate how top-down modulation by rewards interacts with local plasticity to induce long-lasting changes in circuitry. Using a computational model of layer 2/3 primary visual cortex, we demonstrate how interneuron circuits can store information about rewarded stimuli to instruct long-term changes in excitatory connectivity in the absence of further reward. In our model, stimulus-tuned somatostatin-positive interneurons develop strong connections to parvalbumin-positive interneurons during reward such that they selectively disinhibit the pyramidal layer henceforth. This triggers excitatory plasticity, leading to increased stimulus representation. We make specific testable predictions and show that this two-stage model allows for translation invariance of the learned representation.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/259546",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "katharina.wilmes@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Katharina Anna Wilmes"
+ },
+ "ver_date": "2020-04-24T11:56:08.74",
+ "ver_number": 7
+ },
+ "259620": {
+ "class_id": 19,
+ "created": "2019-10-01T10:59:10.17",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 259620,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182782,
+ "object_name": "Sadeh, Sadra [s.sadeh at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261906,
+ "object_name": "Sadeh S, Clopath C (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Inhibition perturbations reveals dynamical structure of neural processing (Sadeh & Clopath 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Perturbation of neuronal activity is key to understanding the brain's functional properties, however, intervention studies typically perturb neurons in a nonspecific manner. Recent optogenetics techniques have enabled patterned perturbations, in which specific patterns of activity can be invoked in identified target neurons to reveal more specific cortical function. Here, we argue that patterned perturbation of neurons is in fact necessary to reveal the specific dynamics of inhibitory stabilization, emerging in cortical networks with strong excitatory and inhibitory functional subnetworks, as recently reported in mouse visual cortex. We propose a specific perturbative signature of these networks and investigate how this can be measured under different experimental conditions. Functionally, rapid spontaneous transitions between selective ensembles of neurons emerge in such networks, consistent with experimental results. Our study outlines the dynamical and functional properties of feature-specific inhibitory-stabilized networks, and suggests experimental protocols that can be used to detect them in the intact cortex.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/259620",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.sadeh@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sadra Sadeh"
+ },
+ "ver_date": "2020-02-19T17:20:39.433",
+ "ver_number": 8
+ },
+ "259732": {
+ "citation": {
+ "attr_id": 391,
+ "value": "31558617"
+ },
+ "class_id": 19,
+ "created": "2019-10-07T13:36:13.727",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 259732,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 124046,
+ "object_name": "Polsky, Alon [alonpol at tx.technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259733,
+ "object_name": "Poleg-Polsky A (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Distinct integration properties of noisy inputs in active dendritic subunits (Poleg-Polsky 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 217749,
+ "object_name": "Neocortex primary motor area pyramidal layer 5 corticospinal cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The brain operates surprisingly well despite the noisy nature of individual neurons. The central mechanism for noise mitigation in the nervous system is thought to involve averaging over multiple noise-corrupted inputs. Subsequently, there has been considerable interest recently to identify noise structures that can be integrated linearly in a way that preserves reliable signal encoding. By analyzing realistic synaptic integration in biophysically accurate neuronal models, I report a complementary de-noising approach that is mediated by focal dendritic spikes. Dendritic spikes might seem to be unlikely candidates for noise reduction due to their miniscule integration compartments and poor averaging abilities. Nonetheless, the extra thresholding step introduced by dendritic spike generation increases neuronal tolerance for a broad category of noise structures, some of which cannot be resolved well with averaging. This property of active dendrites compensates for compartment size constraints and expands the repertoire of conditions that can be processed by neuronal populations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/259732",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Poleg-Polsky, Alon"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex layer 2-3 pyramidal"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ALON.POLEG-POLSKY@UCDENVER.EDU"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alon Poleg-Polsky"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-10-10T17:20:49.837",
+ "ver_number": 5
+ },
+ "259786": {
+ "biosimulations": {
+ "value": "modeldb-259786"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Wittman, S., Abdala, A. P., & Rubin, J. E. (2019). Reduced computational modelling of K\u00f6lliker-Fuse contributions to breathing patterns in Rett syndrome. The Journal of Physiology, 597(10), 2651-2672."
+ },
+ "class_id": 19,
+ "created": "2019-10-07T22:09:27.397",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 259786,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 259789,
+ "object_name": "Wittman, Samuel [swittman52 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 232102,
+ "object_name": "Respiratory control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259788,
+ "object_name": "Wittman S, Abdala AP, Rubin JE (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Respiratory central pattern generator including Kolliker-Fuse nucleus (Wittman et al 2019)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 214,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We present three highly reduced conductance-based models for the core of the respiratory CPG. All successfully simulate respiratory outputs across eupnoeic and vagotomized conditions and show that loss of inhibition to the pontine Kolliker-Fuse nucleus reproduces the key respiratory alterations associated with Rett syndrome."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/259786",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Rhythm generation"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Wittman, Samuel"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Respiratory CPG"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Rhythmic network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jonrubin@pitt.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jonathan Rubin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2019-10-15T15:19:52.33",
+ "ver_number": 7
+ },
+ "260015": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Dura-Bernal S, Neymotin SA, Suter BA, Shepherd GMG, Lytton WW (2018) Long-range inputs and H-current regulate different modes of operation in a multiscale model of mouse M1 microcircuits. bioRxiv, 201707 [Preprint]"
+ },
+ "class_id": 19,
+ "created": "2019-10-14T15:39:29.627",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 266958,
+ "object_name": "TASK channel"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260015,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182905,
+ "object_name": "Dura-Bernal, Salvador [salvadordura at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ },
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ },
+ {
+ "object_id": 150701,
+ "object_name": "Posture and locomotion"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267759,
+ "object_name": "Dura-Bernal S, Neymotin SA, Suter BA, Dacre J, Schiemann J, Duguid I, Shepherd GMG, Lytton WW (accepted)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 195884,
+ "object_name": "NetPyNE"
+ }
+ ]
+ },
+ "name": "Multiscale model of primary motor cortex circuits predicts in vivo dynamics (Dura-Bernal et al 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 230188,
+ "object_name": "Neocortex M1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 230212,
+ "object_name": "Neocortex M1 interneuron chandelier SOM GABA cell"
+ },
+ {
+ "object_id": 227711,
+ "object_name": "Neocortex M1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 227970,
+ "object_name": "Neocortex M1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 227830,
+ "object_name": "Neocortex M1 L6 pyramidal corticothalamic GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 217749,
+ "object_name": "Neocortex primary motor area pyramidal layer 5 corticospinal cell"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Understanding cortical function requires studying multiple scales: molecular, cellular, circuit and behavior. We developed a multiscale biophysically-detailed model of mouse primary motor cortex (M1) with over 10,000 neurons and 30 million synapses. Neuron types, densities, spatial distributions, morphologies, biophysics, connectivity and dendritic synapse locations were constrained by experimental data. The model includes long-range inputs from seven thalamic and cortical regions, and noradrenergic inputs. Connectivity depends on cell class and cortical depth at sublaminar resolution.\r\nThe model accurately predicted in vivo layer- and cell type-specific responses (firing rates and LFP) associated with behavioral states (quiet wakefulness and movement) and experimental manipulations (noradrenaline receptor blockade and thalamus inactivation). We generated mechanistic hypotheses underlying the observed activity and analyzed low-dimensional population latent dynamics.\r\nThis quantitative theoretical framework can be used to integrate and interpret M1 experimental data and sheds light on the cell type-specific multiscale dynamics associated with several experimental conditions and behaviors.\r\n\r\nPublication: Dura-Bernal S, Neymotin SA, Suter BA, Dacre J, Moreira JVS, Urdapilleta E, Schiemann J, Duguid I, Shepherd GMG, Lytton WW. \"Multiscale model of primary motor cortex circuits predicts in vivo cell type-specific, behavioral state-dependent dynamics.\" Cell Reports (In Press) \r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260015",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "HCN"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "salvadordura@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Salvador Dura-Bernal"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-06-08T17:09:10.87",
+ "ver_number": 4
+ },
+ "260178": {
+ "class_id": 19,
+ "created": "2019-10-15T21:33:16.383",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260178,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 155061,
+ "object_name": "Papoutsi, Athanasia [athpapoutsi at gmail.com]"
+ },
+ {
+ "object_id": 261222,
+ "object_name": "Gidon, Albert [agidon20 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261480,
+ "object_name": "Gidon A, Zolnik TA, Fidzinski P, Bolduan F, Papoutsi A, Poirazi P, Holtkamp M, Vida I, Larkum ME (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dendritic action potentials and computation in human layer 2/3 cortical neurons (Gidon et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Code for supplemental figure 12 in the paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260178",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Ca HVA"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gidon, Albert [agidon20@gmail.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex L2/3 pyramidal"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "agidon20@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Albert Gidon"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-01-08T15:46:33.2",
+ "ver_number": 25
+ },
+ "260190": {
+ "biosimulations": {
+ "value": "modeldb-260190"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "http://jn.physiology.org/content/early/2017/10/27/jn.00624.2017.abstract"
+ },
+ "class_id": 19,
+ "created": "2019-10-16T15:07:26.013",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 240,
+ "object_name": "I Chloride"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260190,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234452,
+ "object_name": "Terman, David [terman at math.ohio-state.edu]"
+ },
+ {
+ "object_id": 260973,
+ "object_name": "Boxwell, Alison "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 242018,
+ "object_name": "Synaptic Convergence"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 260080,
+ "object_name": "Boxwell A, Terman D, Frank M, Yanagawa Y, Travers JB (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Signal fidelity in the rostral nucleus of the solitary tract (Boxwell et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neurons in the rostral nucleus of the solitary tract (rNST) convey taste information to both local circuits and pathways destined for forebrain structures. This nucleus is more than a simple relay, however, because rNST neurons differ in response rates and tuning curves relative to primary afferent fibers. To systematically study the impact of convergence and inhibition on firing frequency and breadth of tuning (BOT) in rNST, we constructed a mathematical model of its two major cell types: projection neurons and inhibitory neurons. First, we fit a conductance-based neuronal model to data derived from whole cell patch-clamp recordings of inhibitory and noninhibitory neurons in a mouse expressing Venus under the control of the VGAT promoter. We then used in vivo chorda tympani (CT) taste responses as afferent input to modeled neurons and assessed how the degree and type of convergence influenced model cell output frequency and BOT for comparison with in vivo gustatory responses from the rNST. Finally, we assessed how presynaptic and postsynaptic inhibition impacted model cell output. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260190",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "rNST neurons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 70"
+ },
+ "ver_date": "2019-11-13T13:50:59.333",
+ "ver_number": 10
+ },
+ "260192": {
+ "class_id": 19,
+ "created": "2019-10-21T13:46:23.147",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260192,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261487,
+ "object_name": "Sudhakar, Shyam Kumar [shyamk at umich.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262960,
+ "object_name": "Brennan EKW, Sudhakar SK, Jedrasiak-Cape I, John TT, Ahmed OJ (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Two populations of excitatory neurons in the superficial retrosplenial cortex (Brennan et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Hyperexcitable neurons enable precise and persistent information encoding in the superficial retrosplenial cortex"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260192",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shyamk@umich.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shyam Kumar Sudhakar"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-01-21T17:41:23.937",
+ "ver_number": 43
+ },
+ "260210": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Karthik Soman, Srinivasa Chakravarthy, Michael M Yartsev, \"A hierarchical anti-Hebbian network model for the formation of spatial cells in three-dimensional space\", Nature Communications (2018) 9:4046 DOI: 10.1038/s41467-018-06441-5"
+ },
+ "class_id": 19,
+ "created": "2019-10-23T08:19:27.98",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260210,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258745,
+ "object_name": "Soman, Karthik [karthi.soman at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 260211,
+ "object_name": "Soman K, Chakravarthy S, Yartsev MM (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hierarchical anti-Hebbian network model for the formation of spatial cells in 3D (Soman et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model shows how spatial representations in 3D space could emerge using unsupervised neural networks. Model is a hierarchical one which means that it has multiple layers, where each layer has got a specific function to achieve. This architecture is more of a generalised one i.e. it gives rise to different kinds of spatial representations after training. "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260210",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "karthi.soman@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Karthik Soman"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2019-10-25T07:59:46.567",
+ "ver_number": 10
+ },
+ "260267": {
+ "class_id": 19,
+ "created": "2019-10-24T18:31:53.38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260267,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261134,
+ "object_name": "Crone, J "
+ },
+ {
+ "object_id": 261135,
+ "object_name": "Vindiola, MM "
+ },
+ {
+ "object_id": 261136,
+ "object_name": "Yu, AB "
+ },
+ {
+ "object_id": 261137,
+ "object_name": "Boothe, DL "
+ },
+ {
+ "object_id": 83455,
+ "object_name": "Beeman, Dave"
+ },
+ {
+ "object_id": 261138,
+ "object_name": "Oie, KS "
+ },
+ {
+ "object_id": 261139,
+ "object_name": "Franaszczuk, PJ "
+ },
+ {
+ "object_id": 206242,
+ "object_name": "Anderson, WS "
+ },
+ {
+ "object_id": 206243,
+ "object_name": "Kudela, Pawel "
+ },
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261132,
+ "object_name": "Crone JC, Vindiola MM, Yu AB, Boothe DL, Beeman D, Oie KS, Franaszczuk PJ (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 140257,
+ "object_name": "PGENESIS"
+ },
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "Large scale neocortical model for PGENESIS (Crone et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is model code for a large scale neocortical model based on Traub et al. (2005), modified to run on PGENESIS on supercomputing resources. \"In this paper (Crone et al 2019), we evaluate the computational performance of the GEneral NEural SImulation System (GENESIS) for large scale simulations of neural networks. While many benchmark studies have been performed for large scale simulations with leaky integrate-and-fire neurons or neuronal models with only a few compartments, this work focuses on higher fidelity neuronal models represented by 50\u201374 compartments per neuron. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260267",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Crone, J; Vindiola, MM; Yu, AB; Boothe, DL; Oie, KS; Franaszczuk, PJ"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "alfred.b.yu.civ@mail.mil"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alfred Yu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-11-18T17:19:44.577",
+ "ver_number": 4
+ },
+ "260596": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Franci et al 2018"
+ },
+ "class_id": 19,
+ "created": "2019-10-30T16:28:59.7",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260596,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 245212,
+ "object_name": "Franci A, Drion G, Sepulchre R (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 253623,
+ "object_name": "Julia (web link to model)"
+ }
+ ]
+ },
+ "name": "Robust and tunable bursting requires slow positive feedback (Franci et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We highlight that the robustness and tunability of a bursting model critically rely on currents that provide slow positive feedback to the membrane potential. Such currents have the ability to make the total conductance of the circuit negative in a timescale that is termed \u201cslow\u201d because it is intermediate between the fast timescale of the spike upstroke and the ultraslow timescale of even slower adaptation currents. We discuss how such currents can be assessed either in voltage-clamp experiments or in computational models. We show that, while frequent in the literature, mathematical and computational models of bursting that lack the slow negative conductance are fragile and rigid. Our results suggest that modeling the slow negative conductance of cellular models is important when studying the neuromodulation of rhythmic circuits at any broader scale.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260596",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2019-10-30T16:33:51.843",
+ "ver_number": 2
+ },
+ "260653": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.nature.com/articles/s41598-017-14357-1"
+ },
+ "class_id": 19,
+ "created": "2019-10-31T14:21:21.407",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260653,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262111,
+ "object_name": "Tsai, David [d.tsai at unsw.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262388,
+ "object_name": "Guo T, Tsai D, Morley JW, Suaning GJ, Kameneva T, Lovell NH, Dokos S (2016)"
+ },
+ {
+ "object_id": 262387,
+ "object_name": "Tsai D, Chen S, Protti DA, Morley JW, Suaning GJ, Lovell NH (2012)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Retinal ganglion cells responses and activity (Tsai et al 2012, Guo et al 2016)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "From the abstracts: \"Retinal ganglion cells (RGCs), which survive in large numbers following neurodegenerative diseases, could be stimulated with extracellular electric pulses to elicit artificial percepts. How do the RGCs respond to electrical stimulation at the sub-cellular level under different stimulus configurations, and how does this influence the whole-cell response? At the population level, why have experiments yielded conflicting evidence regarding the extent of passing axon activation? We addressed these questions through simulations of morphologically and biophysically detailed computational RGC models on high performance computing clusters. We conducted the analyses on both large-field RGCs and small-field midget RGCs. ...\", \"... In this study, an existing RGC ionic model was extended by including a hyperpolarization activated non-selective cationic current as well as a T-type calcium current identified in recent experimental findings. Biophysically-defined model parameters were simultaneously optimized against multiple experimental recordings from ON and OFF RGCs. ..."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260653",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2020-03-02T19:10:47.587",
+ "ver_number": 9
+ },
+ "260730": {
+ "biosimulations": {
+ "value": "modeldb-260730"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "https://mathematical-neuroscience.springeropen.com/articles/10.1186/s13408-017-0047-3"
+ },
+ "class_id": 19,
+ "created": "2019-11-04T10:49:59.467",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260730,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262615,
+ "object_name": "Sherman, Arthur [arthurs at niddk.nih.gov]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262614,
+ "object_name": "Sherman AS, Ha J (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "How adaptation makes low firing rates robust (Sherman & Ha 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ },
+ {
+ "object_id": 188553,
+ "object_name": "Abstract Hindmarsh-Rose neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Low frequency firing is modeled by Type 1 neurons with a SNIC (saddle node on an invariant circle), but, because of the vertical slope of the square-root-like f\u2013I curve, low f only occurs over a narrow range of I. When an adaptive current is added, however, the f\u2013I curve is linearized, and low f occurs robustly over a large I range. Ermentrout (Neural Comput. 10(7):1721-1729, 1998) showed that this feature of adaptation paradoxically arises from the SNIC that is responsible for the vertical slope. We show, using a simplified Hindmarsh\u2013Rose neuron with negative feedback acting directly on the adaptation current, that whereas a SNIC contributes to linearization, in practice linearization over a large interval may require strong adaptation strength. We also find that a type 2 neuron with threshold generated by a Hopf bifurcation can also show linearization if adaptation strength is strong. Thus, a SNIC is not necessary. More fundamental than a SNIC is stretching the steep region near threshold, which stems from sufficiently strong adaptation, though a SNIC contributes if present. In a more realistic conductance-based model, Morris\u2013Lecar, with negative feedback acting on the adaptation conductance, an additional assumption that the driving force of the adaptation current is independent of I is needed. If this holds, strong adaptive conductance is both necessary and sufficient for linearization of f\u2013I curves of type 2 f\u2013I curves.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260730",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Arthur Sherman"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-03-25T11:40:47.85",
+ "ver_number": 14
+ },
+ "260740": {
+ "class_id": 19,
+ "created": "2019-11-05T16:16:37.007",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260740,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 260739,
+ "object_name": "Rankin, James [james.rankin at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 260599,
+ "object_name": "Rankin J, Chavane F (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Neural field model to reconcile structure with function in V1 (Rankin & Chavane 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Voltage-sensitive dye imaging experiments in primary visual cortex (V1) have shown that local, oriented visual stimuli elicit stable orientation-selective activation within the stimulus retinotopic footprint. The cortical activation dynamically extends far beyond the retinotopic footprint, but the peripheral spread stays non-selective\u2014a surprising finding given a number of anatomo-functional studies showing the orientation specificity of long-range connections. Here we use a computational model to investigate this apparent discrepancy by studying the expected population response using known published anatomical constraints. The dynamics of input-driven localized states were simulated in a planar neural field model with multiple sub-populations encoding orientation. The realistic connectivity profile has parameters controlling the clustering of long-range connections and their orientation bias. We found substantial overlap between the anatomically relevant parameter range and a steep decay in orientation selective activation that is consistent with the imaging experiments. In this way our study reconciles the reported orientation bias of long-range connections with the functional expression of orientation selective neural activity. Our results demonstrate this sharp decay is contingent on three factors, that long-range connections are sufficiently diffuse, that the orientation bias of these connections is in an intermediate range (consistent with anatomy) and that excitation is sufficiently balanced by inhibition. Conversely, our modelling results predict that, for reduced inhibition strength, spurious orientation selective activation could be generated through long-range lateral connections. Furthermore, if the orientation bias of lateral connections is very strong, or if inhibition is particularly weak, the network operates close to an instability leading to unbounded cortical activation. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260740",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2019-11-05T16:48:07.347",
+ "ver_number": 4
+ },
+ "260949": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0182884"
+ },
+ "class_id": 19,
+ "created": "2019-11-08T11:37:13.863",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260949,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263444,
+ "object_name": "Velarde, Osva [osva.m.velarde at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263443,
+ "object_name": "Velarde OM, Mato G, Dellavale D (2017)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Mechanisms for pattern specificity of DBS in Parkinson's disease (Velarde et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260949",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2020-06-13T11:09:57.937",
+ "ver_number": 12
+ },
+ "260960": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1005879"
+ },
+ "class_id": 19,
+ "created": "2019-11-08T12:23:20.557",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260960,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263030,
+ "object_name": "Soplata AE, McCarthy MM, Sherfey J, Lee S, Purdon PL, Brown EN, Kopell N (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 239393,
+ "object_name": "DynaSim"
+ }
+ ]
+ },
+ "name": "Thalamocortical control of propofol phase-amplitude coupling (Soplata et al 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The anesthetic propofol elicits many different spectral properties on the EEG, including alpha oscillations (8-12 Hz), Slow Wave Oscillations (SWO, 0.1-1.5 Hz), and dose-dependent phase-amplitude coupling (PAC) between alpha and SWO. Propofol is known to increase GABAA inhibition and decrease H-current strength, but how it generates these rhythms and their interactions is still unknown. To investigate both generation of the alpha rhythm and its PAC to SWO, we simulate a Hodgkin-Huxley network model of a hyperpolarized thalamus and corticothalamic inputs. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260960",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Thalamocortical cell, Thalamic Reticular Nucleus c"
+ },
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "AMPA"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2020-03-12T13:30:33.54",
+ "ver_number": 5
+ },
+ "260967": {
+ "class_id": 19,
+ "created": "2019-11-11T09:01:17.97",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260967,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261475,
+ "object_name": "Cohen, Charles CH [c.cohen at gmx.com]"
+ },
+ {
+ "object_id": 114397,
+ "object_name": "Kole, Maarten [m.kole at nin.knaw.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 243515,
+ "object_name": "Conductances estimation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ },
+ {
+ "object_id": 52406,
+ "object_name": "Multiple sclerosis"
+ },
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 261476,
+ "object_name": "Double cable"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261474,
+ "object_name": "Cohen CCH, Popovic MA, Klooster J, Weil M, M\u00f6bius W, Nave K, Kole MHP (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Double cable myelinated axon (Layer 5 pyramidal neuron; Cohen et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The periaxonal space in myelinated axons is conductive (~50 ohm cm). Together with a rapidly charging myelin sheath and relatively sealed paranodes, periaxonal conduction shapes the saltating voltage profiles of transaxonal (Vm), transmyelin (Vmy) and transfibre (Vmym) potentials. This model exemplifies double cable saltatory conduction across both time and space, and is the same cell (#6) as seen in Movie S4 of Cohen et al. 2020. This model version allows one to visualize and manipulate the controlling parameters of a propagating action potential.\r\n\r\nFurther notes: The corresponding potentials in NEURON to those named above are v, vext (or vext[0]) and v+vext, respectively. The loaded biophysical parameters were those optimized for this cell (Cohen et al. 2020)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260967",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Double Cable"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Ca (LVA), I Ca (HVA), I Kv7, I Kv1"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Cohen, Charles CH [c.cohen at gmx.com]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Layer 5/6 pyramidal neuron (S1)"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "periaxonal space, myelin"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "c.cohen@gmx.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Charles C.H. Cohen"
+ },
+ "ver_date": "2023-04-05T13:27:09.987",
+ "ver_number": 28
+ },
+ "260971": {
+ "class_id": 19,
+ "created": "2019-11-13T06:05:21.087",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260971,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266768,
+ "object_name": "M\u00e4ki-Marttunen T, Iannella N, Edwards AG, Einevoll GT, Blackwell KT (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 139757,
+ "object_name": "NeuroRD"
+ }
+ ]
+ },
+ "name": "Biochemically detailed model of LTP and LTD in a cortical spine (Maki-Marttunen et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 230,
+ "object_name": "Norephinephrine"
+ },
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Signalling pathways leading to post-synaptic plasticity have been examined in many types of experimental studies, but a unified picture on how multiple biochemical pathways collectively shape neocortical plasticity is missing. We built a biochemically detailed model of post-synaptic plasticity describing CaMKII, PKA, and PKC pathways and their contribution to synaptic potentiation or depression. We developed a statistical AMPA-receptor-tetramer model, which permits the estimation of the AMPA-receptor-mediated maximal synaptic conductance based on numbers of GluR1s and GluR2s predicted by the biochemical signalling model. We show that our model reproduces neuromodulator-gated spike-timing-dependent plasticity as observed in the visual cortex and can be fit to data from many cortical areas, uncovering the biochemical contributions of the pathways pinpointed by the underlying experimental studies. Our model explains the dependence of different forms of plasticity on the availability of different proteins and can be used for the study of mental disorder-associated impairments of cortical plasticity.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260971",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tuomo@simula.no"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tuomo M\u00e4ki-Marttunen"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-08-09T12:48:47.21",
+ "ver_number": 9
+ },
+ "260972": {
+ "class_id": 19,
+ "created": "2019-11-13T12:11:37.157",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 260972,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266748,
+ "object_name": "Demaegd, Maggie [mdemaeg at ilstu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267632,
+ "object_name": "DeMaegd ML, Stein W (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Temperature sensitive axon models (DeMaegd & Stein 2020)",
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/260972",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mdemaeg@ilstu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Margaret DeMaegd"
+ },
+ "ver_date": "2023-02-09T09:37:50.597",
+ "ver_number": 4
+ },
+ "261078": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID:31720999"
+ },
+ "class_id": 19,
+ "created": "2019-11-14T20:59:09.693",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261078,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 238732,
+ "object_name": "Hoshino, Osamu [osamu.hoshino.507 at vc.ibaraki.ac.jp]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261080,
+ "object_name": "Hoshino O, Kameno R, Watanabe K (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Reducing variability in motor cortex activity by GABA (Hoshino et al. 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 230188,
+ "object_name": "Neocortex M1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 217749,
+ "object_name": "Neocortex primary motor area pyramidal layer 5 corticospinal cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Interaction between sensory and motor cortices is crucial for perceptual decision-making, in which intracortical inhibition might have an important role. We simulated a neural network model consisting of a sensory network (NS) and a motor network (NM) to elucidate the significance of their interaction in perceptual decision-making in association with the level of GABA in extracellular space: extracellular GABA concentration. Extracellular GABA molecules acted on extrasynaptic receptors embedded in membranes of pyramidal cells and suppressed them. A reduction in extracellular GABA concentration either in NS or NM increased the rate of errors in perceptual decision-making, for which an increase in ongoing-spontaneous fluctuations in subthreshold neuronal activity in NM prior to sensory stimulation was responsible. Feedback (NM-to-NS) signaling enhanced selective neuronal responses in NS, which in turn increased stimulus-evoked neuronal activity in NM. We suggest that GABA in extracellular space contributes to reducing variability in motor cortex activity at a resting state\r\nand thereby the motor cortex can respond correctly to a subsequent sensory stimulus. Feedback signaling from the motor cortex improves the selective responsiveness of the sensory cortex, which ensures the fidelity of information transmission to the motor cortex, leading to reliable perceptual decision-making."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261078",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "motor performance"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "osamu.hoshino.507@vc.ibaraki.ac.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "osamu hoshino"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2019-12-16T11:10:01.613",
+ "ver_number": 15
+ },
+ "261423": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Beeman D, Yu A, Crone J (2019) Studying evoked potentials in large cortical\r\nnetworks with PGENESIS 2.4. BMC Neuroscience 2019, 20(Suppl 1):P46\r\nhttps://bmcneurosci.biomedcentral.com/articles/10.1186/s12868-019-0538-0#Sec281\r\n\r\nCrone JC, Vindiola MM, Yu AB, Boothe DL, Beeman D, Oie KS, Franaszczuk PJ (2019)\r\nEnabling Large-Scale Simulations With the GENESIS Neuronal Simulator.\r\nFront. Neuroinform. 13:69. doi: 10.3389/fninf.2019.00069\r\n(Model available from ModelDB, Accession number: 260267)"
+ },
+ "class_id": 19,
+ "created": "2019-12-06T14:13:19.017",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261423,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 83455,
+ "object_name": "Beeman, Dave"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261425,
+ "object_name": "Beeman D, Yu A, Crone J (2019)"
+ },
+ {
+ "object_id": 261132,
+ "object_name": "Crone JC, Vindiola MM, Yu AB, Boothe DL, Beeman D, Oie KS, Franaszczuk PJ (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 140257,
+ "object_name": "PGENESIS"
+ },
+ {
+ "object_id": 1883,
+ "object_name": "GENESIS"
+ }
+ ]
+ },
+ "name": "ACnet23 primary auditory cortex model (Beeman et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These scripts were used to model a patch of layer 2/3 primary auditory cortex,\r\nmaking use of the the improvements to PGENESIS by Crone, et al. (2019).\r\nThis single layer model contains a 48 x 48 grid of pyramidal cells (PCs)\r\nand a 24 x 24 grid of basket cells (BCs). The reduced PC models have 17\r\ncompartments with dimensions and passive properties that were fit to human\r\ncortical PC reconstructions. This parallel version of the simulation was used\r\nby Beeman, et al. (2019) to understand the effects of inhibition of PCs by\r\nBCs on auditory evoked potentials.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261423",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dbeeman@colorado.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "David Beeman"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ }
+ ]
+ },
+ "ver_date": "2019-12-08T16:05:07.523",
+ "ver_number": 6
+ },
+ "261435": {
+ "class_id": 19,
+ "created": "2019-12-09T20:18:10.347",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261435,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267722,
+ "object_name": "Knowlton CJ, Baxter DA, Byrne JH., Canavier CC (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Repetitive Action Potential Firing (Knowlton et al. 2020)",
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261435",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cknow1@lsuhsc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Christopher Knowlton"
+ },
+ "ver_date": "2023-04-26T11:27:15.803",
+ "ver_number": 5
+ },
+ "261436": {
+ "citation": {
+ "attr_id": 391,
+ "value": "7675638"
+ },
+ "class_id": 19,
+ "created": "2019-12-11T10:20:13.69",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261436,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261455,
+ "object_name": "Zeberg, Hugo [hugo.zeberg at ki.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 5558,
+ "object_name": "Schwarz JR, Reid G, Bostock H (1995)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Peripheral nerve:Morris-Lecar implementation of (Schwarz et al 1995)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a Morris-Lecar version of the model in Schwarz et al 1995. The original model in the paper was implemented in the Hodgkin-Huxley style."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261436",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hugo.zeberg@ki.se"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Hugo Zeberg"
+ },
+ "ver_date": "2019-12-11T17:38:23.267",
+ "ver_number": 8
+ },
+ "261460": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.biorxiv.org/content/10.1101/395384v1.abstract"
+ },
+ "class_id": 19,
+ "created": "2019-12-14T08:23:34.817",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 261460,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 231429,
+ "object_name": "Doron, Michael [michael.doron at mail.huji.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143085,
+ "object_name": "Synaptic-input statistic"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263064,
+ "object_name": "Iascone DM, Li Y, S\u00fcmb\u00fcl U, Doron M, Chen H, Andreu V, Goudy F, Blockus H, Abbott LF, Segev I, Peng H, Polleux F (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Mice Somatosensory L2/3 Pyramidal cells (Iascone et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Mice L2/3 pyramidal cells with full excitatory and inhibitory synaptic maps (Models used in Whole-neuron synaptic mapping reveals local balance between excitatory and inhibitory synapse organization - Iascone et at 2020)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261460",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.doron@mail.huji.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michael Doron"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-04-01T11:00:59.28",
+ "ver_number": 10
+ },
+ "261461": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A biophysical model of striatal microcircuits suggests theta-rhythmically interleaved gamma and beta oscillations mediate periodicity in motor control\r\nJulia A. K. Chartove, Michelle M. McCarthy, Benjamin R. Pittman-Polletta, Nancy J. Kopell\r\nbioRxiv 725416; doi: https://doi.org/10.1101/725416"
+ },
+ "class_id": 19,
+ "created": "2019-12-16T21:52:33.29",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261461,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261869,
+ "object_name": "Chartove, Julia A K [chartove at bu dot edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 249458,
+ "object_name": "Theta oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263616,
+ "object_name": "Chartove JA, McCarthy MM, Pittman-Polletta BR, Kopell NJ (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 239393,
+ "object_name": "DynaSim"
+ }
+ ]
+ },
+ "name": "Striatal FSI and SPN oscillation model (Chartove et al. 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Our model consists of three interconnected populations of single or double compartment Hodgkin-Huxley neurons: a feedforward network of FSIs, and two networks of SPNs (the D1 receptor-expressing \"direct pathway\" subnetwork and the D2 receptor-expressing \"indirect pathway\" subnetwork)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261461",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Delta oscillations"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "D-type potassium current, M-type potassium current"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Chartove, Julia A K [chartove at bu dot edu]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "chartove@bu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Julia Chartove"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2020-02-06T23:01:21.533",
+ "ver_number": 6
+ },
+ "261466": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.biorxiv.org/content/10.1101/269134v5\r\nA very fast timescale of human motor adaptation: within movements adjustments of internal representations during reaching. To appear at eNeuro"
+ },
+ "class_id": 19,
+ "created": "2019-12-23T04:38:59.93",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261466,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 259370,
+ "object_name": "Crevecoeur, Fr\u00e9d\u00e9ric "
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263610,
+ "object_name": "Crevecoeur F, Thonnard JL, Lef\u00e8vre P (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Within movement adjustments of internal representations during reaching (Crevecoeur et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"An important function of the nervous system is to adapt motor commands in anticipation of predictable disturbances, which supports motor learning when we move in novel environments such as force fields (FFs). Here, we show that movement control when exposed to unpredictable disturbances exhibit similar traits: motor corrections become tuned to the FF, and they evoke after effects within an ongoing sequence of movements. We propose and discuss the framework of adaptive control to explain these results: a real-time learning algorithm, which complements feedback control in the presence of model errors. This candidate model potentially links movement control and trial-by-trial adaptation of motor commands.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261466",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "frederic.crevecoeur@uclouvain.be"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Frederic Crevecoeur"
+ },
+ "ver_date": "2020-04-01T17:15:27.76",
+ "ver_number": 8
+ },
+ "261483": {
+ "class_id": 19,
+ "created": "2020-01-06T15:48:36.783",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 261483,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261885,
+ "object_name": "Eckmann, Samuel [ec.sam at outlook.com]"
+ },
+ {
+ "object_id": 261886,
+ "object_name": "Klimmasch, Lukas [klimmasch at fias.uni-frankfurt.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 83538,
+ "object_name": "Unsupervised Learning"
+ },
+ {
+ "object_id": 262441,
+ "object_name": "Amblyopia"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262440,
+ "object_name": "Eckmann S, Klimmasch L, Shi BE, Triesch J (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 223029,
+ "object_name": "Predictive Coding Network"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Coding explains development of binocular vision and its failure in Amblyopia (Eckmann et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is the MATLAB code for the Active Efficient Coding model introduced in Eckmann et al 2020.\r\nIt simulates an agent that self-calibrates vergence and accommodation eye movements in a simple visual environment. All algorithms are explained in detail in the main manuscript and the supplementary material of the paper."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261483",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Eckmann, Samuel [ec.sam at outlook.com]\r\nKlimmasch, Lukas [klimmasch at fias.uni-frankfurt.de]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ec.sam@outlook.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Samuel Eckmann"
+ },
+ "ver_date": "2020-03-04T11:53:55.88",
+ "ver_number": 10
+ },
+ "261489": {
+ "class_id": 19,
+ "created": "2020-01-09T15:28:51.913",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261489,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 265917,
+ "object_name": "Costa, Renan M "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265918,
+ "object_name": "Costa RM, Baxter DA, Byrne JH (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33983,
+ "object_name": "SNNAP"
+ }
+ ]
+ },
+ "name": "Computational model of the distributed representation of operant reward memory (Costa et al. 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 65418,
+ "object_name": "Aplysia feeding CPG neurons"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Operant reward learning of feeding behavior in Aplysia increases the frequency and regularity of biting, as well as biases\r\nbuccal motor patterns (BMPs) toward ingestion-like BMPs (iBMPs). The engram underlying this memory comprises cells\r\nthat are part of a central pattern generating (CPG) circuit and includes increases in the intrinsic excitability of identified\r\ncells B30, B51, B63, and B65, and increases in B63\u2013B30 and B63\u2013B65 electrical synaptic coupling. To examine the ways in\r\nwhich sites of plasticity (individually and in combination) contribute to memory expression, a model of the CPG was developed.\r\nThe model included conductance-based descriptions of cells CBI-2, B4, B8, B20, B30, B31, B34, B40, B51, B52, B63,\r\nB64, and B65, and their synaptic connections. The model generated patterned activity that resembled physiological BMPs,\r\nand implementation of the engram reproduced increases in frequency, regularity, and bias. Combined enhancement of\r\nB30, B63, and B65 excitabilities increased BMP frequency and regularity, but not bias toward iBMPs. Individually, B30 increased\r\nregularity and bias, B51 increased bias, B63 increased frequency, and B65 decreased all three BMP features.\r\nCombined synaptic plasticity contributed primarily to regularity, but also to frequency and bias. B63\u2013B30 coupling contributed\r\nto regularity and bias, and B63\u2013B65 coupling contributed to all BMP features. Each site of plasticity altered multiple\r\nBMP features simultaneously. Moreover, plasticity loci exhibited mutual dependence and synergism. These results indicate\r\nthat the memory for operant reward learning emerged from the combinatoric engagement of multiple sites of plasticity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261489",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Costa, Renan M"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "renan.murillo.costa@uth.tmc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Renan M. Costa"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2020-05-15T14:24:14.027",
+ "ver_number": 5
+ },
+ "261585": {
+ "class_id": 19,
+ "created": "2020-01-15T16:53:06.367",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261585,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261586,
+ "object_name": "Kim, Sung Soo [sungsoo at ucsb.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261495,
+ "object_name": "Kim SS, Hermundstad AM, Romani S, Abbott LF, Jayaraman V (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Generation of stable heading representations in diverse visual scenes (Kim et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Many animals rely on an internal heading representation when\r\nnavigating in varied environments. How this\r\nrepresentation is linked to the sensory cues that define different\r\nsurroundings is unclear. In the fly brain, heading is represented by\r\n\u2018compass\u2019 neurons that innervate a ring-shaped structure known as the\r\nellipsoid body. Each compass neuron receives inputs from \u2018ring\u2019\r\nneurons that are selective for particular visual features;\r\nthis combination provides an ideal substrate for the extraction of\r\ndirectional information from a visual scene. Here we combine\r\ntwo-photon calcium imaging and optogenetics in tethered flying flies\r\nwith circuit modelling, and show how the correlated activity of\r\ncompass and visual neurons drives plasticity, which\r\nflexibly transforms two-dimensional visual cues into a stable heading\r\nrepresentation. ... \"\r\nSee the supplementary information for model details."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261585",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2020-01-15T17:37:10.597",
+ "ver_number": 7
+ },
+ "261616": {
+ "citation": {
+ "attr_id": 391,
+ "value": "G. Mulcahy, B. Atwood and A. Kuznetsov. Basal Ganglia role in learning rewarded actions and executing previously learned choices: healthy and diseased states. PLoS ONE 2019. In press."
+ },
+ "class_id": 19,
+ "created": "2020-01-22T05:35:35.253",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261616,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ },
+ {
+ "object_id": 261622,
+ "object_name": "Huntington's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263612,
+ "object_name": "Mulcahy G, Atwood B, Kuznetsov A (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Cortico - Basal Ganglia Loop (Mulcahy et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model represents learning and reversal tasks and shows performance in control, Parkinsonian and Huntington disease conditions"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261616",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "askuznet@iupui.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alexey Kuznetsov"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2020-01-22T11:58:06.373",
+ "ver_number": 7
+ },
+ "261623": {
+ "citation": {
+ "attr_id": 391,
+ "value": "30446533"
+ },
+ "class_id": 19,
+ "created": "2020-01-23T10:57:20.127",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261623,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261707,
+ "object_name": "Jacob, Theju "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261631,
+ "object_name": "Jacob T, Lillis KP, Wang Z, Swiercz W, Rahmati N, Staley KJ (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A NN with synaptic depression for testing the effects of connectivity on dynamics (Jacob et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we used a 10,000 neuron model. The neurons are a mixture of excitatory and inhibitory integrate-and-fire neurons connected with synapses that exhibit synaptic depression. Three different connectivity paradigms were tested to look for spontaneous transition between interictal spiking and seizure: uniform, small-world network, and scale-free. All three model types are included here."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261623",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Seizure"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Jacob, Theju"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "klillis@mgh.harvard.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kyle Lillis"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ },
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-02-04T13:56:26.96",
+ "ver_number": 5
+ },
+ "261624": {
+ "citation": {
+ "attr_id": 391,
+ "value": "\"MATHEMATICAL MODELING AND PARAMETER ESTIMATION OF LEVODOPA MOTOR RESPONSE IN PATIENTS WITH PARKINSON DISEASE\" by Ursino M., Magosso E., et al., accepted with revision by Plos One."
+ },
+ "class_id": 19,
+ "created": "2020-01-29T08:23:00.027",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261624,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239531,
+ "object_name": "Ursino, Mauro [mauro.ursino at unibo.it]"
+ },
+ {
+ "object_id": 261628,
+ "object_name": "Magosso, Elisa [elisa.magosso at unibo.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263614,
+ "object_name": "Ursino M, Magosso E, Lopane G, Calandra-Buonaura G, Cortelli P, Contin M (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Basal Ganglia and Levodopa Pharmacodynamics model for parameter estimation in PD (Ursino et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Parkinson disease (PD) is characterized by a clear beneficial motor response to levodopa (LD) treatment. However, with disease progression and longer LD exposure, drug-related motor fluctuations usually occur. Recognition of the individual relationship between LD concentration and its effect may be difficult, due to the complexity and variability of the mechanisms involved. This work proposes an innovative procedure for the automatic estimation of LD pharmacokinetics and pharmacodynamics parameters, by a biologically-inspired mathematical model. An original issue, compared with previous similar studies, is that the model comprises not only a compartmental description of LD pharmacokinetics in plasma and its effect on the striatal neurons, but also a neurocomputational model of basal ganglia action selection. Parameter estimation was achieved on 26 patients (13 with stable and 13 with fluctuating LD response) to mimic plasma LD concentration and alternate finger tapping frequency along four hours after LD administration, automatically minimizing a cost function of the difference between simulated and clinical data points. Results show that individual data can be satisfactorily simulated in all patients and that significant differences exist in the estimated parameters between the two groups. Specifically, the drug removal rate from the effect compartment, and the Hill coefficient of the concentration-effect relationship were significantly higher in the fluctuating than in the stable group. \r\nThe model, with individualized parameters, may be used to reach a deeper comprehension of the PD mechanisms, mimic the effect of medication, and, based on the predicted neural responses, plan the correct management and design innovative therapeutic procedures."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261624",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Magosso Elisa (elisa.magosso at unibo.it)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mauro.ursino@unibo.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mauro Ursino"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2020-01-31T17:23:23.423",
+ "ver_number": 6
+ },
+ "261709": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Int J Mol Sci. 2019 Dec 27;21(1). pii: E206"
+ },
+ "class_id": 19,
+ "created": "2020-01-31T05:40:11.247",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261709,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261712,
+ "object_name": "Gall, David "
+ },
+ {
+ "object_id": 261713,
+ "object_name": "Dupont, Genevi\u00e8ve "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261710,
+ "object_name": "Gall D, Dupont G (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Tonic activation of extrasynaptic NMDA-R promotes bistability (Gall & Dupont 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Our theoretical model provides a simple description of neuronal electrical activity that takes into account the tonic activity of extrasynaptic NMDA receptors and a cytosolic calcium compartment. We show that calcium influx mediated by the tonic activity of NMDA-R can be coupled directly to the activation of calcium-activated potassium channels, resulting in an overall inhibitory effect on neuronal excitability. Furthermore, the presence of tonic NMDA-R activity promotes bistability in electrical activity by dramatically increasing the stimulus interval where both a stable steady state and repetitive firing can coexist. These results could provide an intrinsic mechanism for the constitution of memory traces in neuronal circuits."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261709",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "David Gall & Genevi\u00e8ve Dupont"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dgall@ulb.ac.be"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "David Gall"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2020-02-05T16:11:43.883",
+ "ver_number": 8
+ },
+ "261714": {
+ "class_id": 19,
+ "created": "2020-02-01T13:35:42.063",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 261714,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 149383,
+ "object_name": "Drug binding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266418,
+ "object_name": "Neumaier F, Apldogan S, Hescheler J and Schneider T (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A Markov model of human Cav2.3 channels and their modulation by Zn2+ (Neumaier et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The Markov model for Cav2.3 channel gating in the absence of trace metals was developed based on channel structure, previous modeling studies and the ability to fit the data. Model parameters were optimized by fitting the model to macroscopic currents recorded with various electrophysiological protocols from HEK-293 cells stably transfected with human Cav2.3+\u00df3 channel subunits. The effects of Zn2+ were implemented by assuming that Zn2+ binding to a first site (KZn=0.003 mM) leads to electrostatic modification and mechanical slowing of one of the voltage-sensors while Zn2+-binding to a second, intra-pore site (KZn=0.1 mM) blocks the channel and modifies the opening and closing transitions."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261714",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Cav2.3 CACNA1E"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Felix Neumaier [felix at neumaier-net.de]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "felix@neumaier-net.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Felix Neumaier"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2020-06-10T09:31:55.673",
+ "ver_number": 43
+ },
+ "261864": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Imam N, Cleland TA (2020) Rapid learning and robust recall in a neuromorphic olfactory circuit. Nature Machine Intelligence (in press)."
+ },
+ "class_id": 19,
+ "created": "2020-02-06T11:04:52.997",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 261864,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261866,
+ "object_name": "Imam, Nabil "
+ },
+ {
+ "object_id": 261867,
+ "object_name": "Cleland, Thomas [tac29 at cornell.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 155599,
+ "object_name": "Neurogenesis"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ },
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3542,
+ "object_name": "Pattern Recognition"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263615,
+ "object_name": "Imam N, Cleland TA (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Online learning model of olfactory bulb external plexiform layer network (Imam & Cleland 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 267,
+ "object_name": "Olfactory bulb main mitral GLU cell"
+ },
+ {
+ "object_id": 3979,
+ "object_name": "Olfactory bulb main interneuron granule MC GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model illustrates the rapid online learning of odor representations, and their recognition despite high levels of interference (other competing odorants), in a model of the olfactory bulb external plexiform layer (EPL) network. The computational principles embedded in this model are based on the those developed in the biophysical models of Li and Cleland (2013, 2017). \r\n\r\nThis is a standard Python version of a model written for Intel's Loihi neuromorphic hardware platform (The Loihi code is available at https://github.com/intel-nrc-ecosystem/models/tree/master/official/epl)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261864",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Online learning"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Imam, Nabil\r\nClelalnd, Thomas"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Neuromorphic network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tac29@cornell.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Thomas Cleland"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2020-02-06T12:36:00.033",
+ "ver_number": 3
+ },
+ "261873": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Farokhniaee, A., & McIntyre, C. C. (2019). Theoretical principles of deep brain stimulation induced synaptic suppression. Brain Stimulation, 12(6), 1402\u20131409. https://doi.org/10.1016/j.brs.2019.07.005"
+ },
+ "class_id": 19,
+ "created": "2020-02-08T14:03:50.463",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261873,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261880,
+ "object_name": "Farokhniaee, AmirAli [aafarokh at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261855,
+ "object_name": "Farokhniaee A, McIntyre CC (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Theoretical principles of DBS induced synaptic suppression (Farokhniaee & McIntyre 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Deep brain stimulation (DBS) is a successful clinical therapy for a wide range of neurological disorders; however, the physiological mechanisms of DBS remain unresolved. While many different hypotheses currently exist, our analyses suggest that high frequency (~100?Hz) stimulation-induced synaptic suppression represents the most basic concept that can be directly reconciled with experimental recordings of spiking activity in neurons that are being driven by DBS inputs.\r\n\r\nObjective\r\nThe goal of this project was to develop a simple model system to characterize the excitatory post-synaptic currents (EPSCs) and action potential signaling generated in a neuron that is strongly connected to pre-synaptic glutamatergic inputs that are being directly activated by DBS.\r\n\r\nMethods\r\nWe used the Tsodyks-Markram (TM) phenomenological synapse model to represent depressing, facilitating, and pseudo-linear synapses driven by DBS over a wide range of stimulation frequencies. The EPSCs were then used as inputs to a leaky integrate-and-fire neuron model and we measured the DBS-triggered post-synaptic spiking activity.\r\n\r\nResults\r\nSynaptic suppression was a robust feature of high frequency stimulation, independent of the synapse type. As such, the TM equations were used to define alternative DBS pulsing strategies that maximized synaptic suppression with the minimum number of stimuli.\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261873",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "aafarokh@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "AmirAli Farokhniaee"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-02-12T17:57:44.637",
+ "ver_number": 6
+ },
+ "261877": {
+ "class_id": 19,
+ "created": "2020-02-10T20:44:53.907",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261877,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 265590,
+ "object_name": "Rajagopalan, Adithya [adiraj95 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265589,
+ "object_name": "Rajagopalan A, Assisi C (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Effect of circuit structure on odor representation in insect olfaction (Rajagopalan & Assisi 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"How does the structure of a network affect its function? We address this question in the context of two olfactory systems that serve the same function, to distinguish the attributes of different odorants, but do so using markedly distinct architectures. In the locust, the probability of connections between projection neurons and Kenyon cells - a layer downstream - is nearly 50%. In contrast, this number is merely 5% in drosophila. We developed computational models of these networks to understand the relative advantages of each connectivity. Our analysis reveals that the two systems exist along a continuum of possibilities that balance two conflicting goals \u2013 separating the representations of similar odors while grouping together noisy variants of the same odor.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261877",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "adiraj95@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Adithya E Rajagopalan"
+ },
+ "ver_date": "2020-07-29T19:57:01.933",
+ "ver_number": 5
+ },
+ "261878": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Bush D, Burgess N (in press) Detection and Advantages of Phase Coding in the Absence of Rhythmicity. Hippocampus"
+ },
+ "class_id": 19,
+ "created": "2020-02-12T12:10:59.77",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261878,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 183714,
+ "object_name": "Bush, Daniel [drdanielbush @ gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 249458,
+ "object_name": "Theta oscillations"
+ },
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 240376,
+ "object_name": "Temporal Coding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263617,
+ "object_name": "Bush D, Burgess N (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Decoding movement trajectory from simulated grid cell population activity (Bush & Burgess 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Matlab code to simulate a population of grid cells that exhibit both a rate and phase code for location in 1D or 2D environments, and are modulated by a human hippocampal LFP signal with highly variable frequency; then subsequently decode location, running speed, movement direction and an arbitrary fourth variable from population firing rates and phases in each oscillatory cycle."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261878",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "drdanielbush@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniel Bush"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ },
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-02-19T12:34:08.597",
+ "ver_number": 9
+ },
+ "261881": {
+ "class_id": 19,
+ "created": "2020-02-13T02:43:18.827",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 261881,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262437,
+ "object_name": "Giacopelli, Giuseppe [giuseppe.giacopelli at unipa.it]"
+ },
+ {
+ "object_id": 262439,
+ "object_name": "Tegolo, Domenico [domenico.tegolo at unipa.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262434,
+ "object_name": "Giacopelli G, Migliore M, Tegolo D (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Graph-theoretical Derivation of Brain Structural Connectivity (Giacopelli et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Brain connectivity at the single neuron level can provide fundamental insights into how information is integrated and propagated within and between brain regions. However, it is almost impossible to adequately study this problem experimentally and, despite intense efforts in the field, no mathematical description has been obtained so far. Here, we present a mathematical framework based on a graph-theoretical approach that, starting from experimental data obtained from a few small subsets of neurons, can quantitatively explain and predict the corresponding full network properties. This model also changes the paradigm with which large-scale model networks can be built, from using probabilistic/empiric connections or limited data, to a process that can algorithmically generate neuronal networks connected as in the real system."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261881",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "any neuronal network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "giuseppe.giacopelli@unipa.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Giuseppe Giacopelli"
+ },
+ "ver_date": "2020-03-04T10:17:28.397",
+ "ver_number": 13
+ },
+ "261882": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Yousif N, Bain P, Nandi D and Borisyuk R (2020) A Population Model of Deep Brain Stimulation in Movement Disorders From Circuits to Cells.\r\nFront. Hum. Neurosci. 14:55. doi: 10.3389/fnhum.2020.00055"
+ },
+ "class_id": 19,
+ "created": "2020-02-14T06:46:30.737",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261882,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263618,
+ "object_name": "Yousif N, Bain PG, Nandi D, Borisyuk R (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Network model of movement disorders (Yousif et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a Wilson-Cowan model of the basal ganglia thalamocortical cerebellar network that demonstrates healthy gamma band oscillations, Parkinsonian oscillations in the beta band and oscillations in the tremor frequency range arising from the dynamics of the network."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261882",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "n.yousif@herts.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Nada Yousif"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2020-02-15T11:33:15.863",
+ "ver_number": 6
+ },
+ "261899": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.jneurosci.org/content/early/2019/07/25/JNEUROSCI.3169-18.2019.abstract"
+ },
+ "class_id": 19,
+ "created": "2020-02-18T14:07:57.743",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 261899,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262122,
+ "object_name": "Ocker, Gabriel K "
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262090,
+ "object_name": "Linaro D, Ocker GK, Doiron B, Giugliano M (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "L5 cortical neurons with recreated synaptic inputs in vitro correlation transfer (Linaro et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...We studied pyramidal neurons and two classes of GABAergic interneurons of layer 5 in neocortical brain slices obtained from rats of both sexes, and we stimulated them with biophysically realistic correlated inputs, generated using dynamic clamp. We found that the physiological differences between cell types manifested unique features in their capacity to transfer correlated inputs. We used linear response theory and computational modeling to gain clear insights into how cellular properties determine both the gain and timescale of correlation transfer, thus tying single-cell features with network interactions. Our results provide further ground for the functionally distinct roles played by various types of neuronal cells in the cortical microcircuit...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/261899",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-07-29T20:01:44.967",
+ "ver_number": 7
+ },
+ "262045": {
+ "class_id": 19,
+ "created": "2020-02-20T07:33:07.093",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262045,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182782,
+ "object_name": "Sadeh, Sadra [s.sadeh at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267633,
+ "object_name": "Sadeh S, Clopath C (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A computational model of single-neuron perturbations (Sadeh and Clopath 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A computational model to study the effect of single-neuron perturbations in large-scale excitatory-inhibitory networks of the primary visual cortex. Neuronal receptive fields and connectivity are constrained by experimental literature. The model addresses how the influence of perturbing an excitatory neuron (\"influencer\") in the network on other neurons (\"influencees\") depends on the similarity of their receptive fields. Specifically, in which regimes this influence is dominated by amplification or suppression, and how it relates to functional properties of neurons."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262045",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.sadeh@ucl.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sadra Sadeh"
+ },
+ "ver_date": "2023-02-09T09:44:56.807",
+ "ver_number": 8
+ },
+ "262046": {
+ "class_id": 19,
+ "created": "2020-02-20T08:58:22.7",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262046,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263054,
+ "object_name": "John E. Fleming, John E [john.fleming at ucdconnect.ie]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263052,
+ "object_name": "Fleming JE, Dunn E, Lowery MM (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 116010,
+ "object_name": "PyNN"
+ }
+ ]
+ },
+ "name": "Cortical Basal Ganglia Network Model during Closed-loop DBS (Fleming et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed a computational model of the cortical basal ganglia network to investigate closed-loop control of deep brain stimulation (DBS) for Parkinson\u2019s disease (PD). The cortical basal ganglia network model incorporates the (i) the extracellular DBS electric field, (ii) antidromic and orthodromic activation of STN afferent fibers, (iii) the LFP detected at non-stimulating contacts on the DBS electrode and (iv) temporal variation of network beta-band activity within the thalamo-cortico-basal ganglia loop. The model facilitates investigation of clinically-viable closed-loop DBS control approaches, modulating either DBS amplitude or frequency, using an LFP derived measure of network beta-activity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262046",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Beta Burst Durations"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "John E. Fleming"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "john.fleming@ucdconnect.ie"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "John E. Fleming"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-03-17T16:40:09.873",
+ "ver_number": 5
+ },
+ "262059": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hazan L, Ziv NE (2020) Activity dependent and independent determinants of synaptic size diversity. J Neuroscience (in press)"
+ },
+ "class_id": 19,
+ "created": "2020-02-21T09:37:06.277",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262059,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262078,
+ "object_name": "Ziv, Noam [noamz at netvision.net.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ },
+ {
+ "object_id": 262152,
+ "object_name": "Kesten Process\r\n"
+ },
+ {
+ "object_id": 262153,
+ "object_name": "Langevin process"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263619,
+ "object_name": "Hazan L, Ziv NE (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 58965,
+ "object_name": "QBasic/QuickBasic/Turbo Basic/VBA"
+ }
+ ]
+ },
+ "name": "Kesten and Langevin synaptic size fluctuation simulator (Hazan & Ziv 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Sizes of glutamatergic synapses vary tremendously, even when formed on the same neuron. This diversity is commonly thought to reflect the outcome of activity-dependent forms of synaptic plasticity, yet activity-independent processes might also play some part. In this paper we show that in neurons with no history of activity whatsoever, synaptic sizes are no less diverse. We show that this diversity is the product of activity-independent size fluctuations, which are sufficient to generate a full repertoire of synaptic sizes at correct proportions. This simulator shows how synaptic size fluctuations governed by a stochastic process known as a Kesten process (as well as a specific form of a non-linear Langevin process) can give rise to this size diversity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262059",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Kesten Process"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Noam Ziv"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "VBA"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "noamz@netvision.net.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Noam Ziv"
+ },
+ "ver_date": "2020-02-26T18:10:37.89",
+ "ver_number": 10
+ },
+ "262060": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hazan L, Ziv NE (2020) Activity dependent and independent determinants of synaptic size diversity. J Neuroscience (in press)"
+ },
+ "class_id": 19,
+ "created": "2020-02-21T09:44:31.8",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262060,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262078,
+ "object_name": "Ziv, Noam [noamz at netvision.net.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263619,
+ "object_name": "Hazan L, Ziv NE (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Mesoscopic model of spontaneous synaptic size fluctuations (Hazan & Ziv 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Sizes of glutamatergic synapses vary tremendously, even when formed on the same neuron. This diversity is commonly thought to reflect the outcome of activity-dependent forms of synaptic plasticity, yet activity-independent processes might also play some part. Here we show that in neurons with no history of activity whatsoever, synaptic sizes are no less diverse. We show that this diversity is the product of activity-independent size fluctuations, which are sufficient to generate a full repertoire of synaptic sizes at correct proportions. By combining modeling and experimentation we expose reciprocal relationships between size fluctuations, synaptic sizes and synaptic counts, and show how these phenomena might be connected through the dynamics of synaptic molecules as they move in, out and between synapses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262060",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Noam Ziv"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "noamz@netvision.net.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Noam Ziv"
+ },
+ "ver_date": "2020-02-21T19:01:07.24",
+ "ver_number": 6
+ },
+ "262081": {
+ "class_id": 19,
+ "created": "2020-02-24T04:33:05.933",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 88210,
+ "object_name": "I_Na,Ca"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262081,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262089,
+ "object_name": "Sircan, Ahmet K\u00fcrsad [ahmetkursadsircan at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262088,
+ "object_name": "Sengul S, Sircan AK, Abewa M, Kurt A, Dalaman U, Yaras N (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "The ventricular AP and effects of the isoproterenol-induced cardiac hypertrophy (Sengul et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model reproduces Action Potential (AP) of Rat Ventricular Myocytes according to the experimental AP and Voltage Clamp recordings."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262081",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Ca, L; I Ca T; I to; I Kr; I K1; I Ca, leak; If"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ahmetkursadsircan@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ahmet K\u00fcrsad SIRCAN"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-02-09T09:53:04.003",
+ "ver_number": 7
+ },
+ "262114": {
+ "class_id": 19,
+ "created": "2020-02-24T18:48:33.44",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262114,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262121,
+ "object_name": "Renaud, Jolivet [renaud.jolivet at unige.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262113,
+ "object_name": "Harris JJ, Engl E, Attwell D, Jolivet RB (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Energy-efficient information transfer at thalamocortical synapses (Harris et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Using both multicompartment Hodgkin-Huxley-type simulations and electrophysiological recordings in rodent brain slices, we find that increasing or decreasing the postsynaptic conductance of the set of thalamocortical inputs to one L4SS (Layer 4 Spiny Stellate) cell decreases the energy efficiency of information transmission from a single thalamocortical input. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262114",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-02-25T08:24:42.87",
+ "ver_number": 5
+ },
+ "262115": {
+ "class_id": 19,
+ "created": "2020-02-24T19:04:46.75",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262115,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 4119,
+ "object_name": "Destexhe A, Par\u00e9 D (1999)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "NN activity impact on neocortical pyr. neurons integrative properties in vivo (Destexhe & Pare 1999)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"During wakefulness, neocortical neurons are subjected to an intense\r\nsynaptic bombardment. To assess the consequences of this background\r\nactivity for the integrative properties of pyramidal neurons, we\r\nconstrained biophysical models with in vivo intracellular data\r\nobtained in anesthetized cats during periods of intense network\r\nactivity similar to that observed in the waking state. In pyramidal\r\ncells of the parietal cortex (area 5\u20137), synaptic activity was\r\nresponsible for an approximately fivefold decrease in input resistance\r\n(Rin), a more depolarized membrane potential (Vm), and a marked\r\nincrease in the amplitude of Vm fluctuations, as determined by\r\ncomparing the same cells before and after microperfusion of\r\ntetrodotoxin (TTX).\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262115",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-11-04T17:58:18.407",
+ "ver_number": 7
+ },
+ "262138": {
+ "class_id": 19,
+ "created": "2020-02-26T10:00:24.9",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262138,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262139,
+ "object_name": "Bingham, Clayton S [clayton.bingham at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262137,
+ "object_name": "Bingham CS, Mergenthal A, Bouteiller JC, Song D, Lazzi G, Berger TW (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "ROOTS: An Algorithm to Generate Biologically Realistic Cortical Axons (Bingham et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... a Ruled-Optimum Ordered Tree System (ROOTS) was developed\r\nthat extends the capability of neuronal morphology generative\r\nmethods to include highly branched cortical axon terminal\r\narbors. Further, this study presents and explores a clear\r\nuse-case for such models in the prediction of cortical tissue\r\nresponse to externally applied electric fields. The results\r\npresented herein comprise (i) a quantitative and qualitative\r\nanalysis of the generative algorithm proposed, (ii) a comparison\r\nof generated fibers with those observed in histological\r\nstudies, (iii) a study of the requisite spatial and morphological\r\ncomplexity of axonal arbors for accurate prediction of neuronal\r\nresponse to extracellular electrical stimulation, and (iv) an\r\nextracellular electrical stimulation strength\u2013duration analysis\r\nto explore probable thresholds of excitation of the dentate\r\nperforant path under controlled conditions.\r\n...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262138",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-02-26T10:06:56.65",
+ "ver_number": 5
+ },
+ "262187": {
+ "citation": {
+ "attr_id": 391,
+ "value": "28968386"
+ },
+ "class_id": 19,
+ "created": "2020-02-27T10:31:06.25",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262187,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262209,
+ "object_name": "D'Albis T, Kempter R (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A single-cell spiking model for the origin of grid-cell patterns (D'Albis & Kempter 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A single-cell spiking model explaining the formation of grid-cell pattern in a feed-forward network. Patterns emerge via spatially-tuned feedforward inputs, synaptic plasticity, and spike-rate adaptation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262187",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiziano.dalbis@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tiziano D'Albis"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2020-03-03T14:00:15.227",
+ "ver_number": 5
+ },
+ "262233": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.liebertpub.com/doi/abs/10.1089/neu.2018.6065"
+ },
+ "class_id": 19,
+ "created": "2020-02-28T13:45:22.257",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262233,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261487,
+ "object_name": "Sudhakar, Shyam Kumar [shyamk at umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262391,
+ "object_name": "Sudhakar SK, Choi TJ, Ahmed OJ (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "name": "Biophysical modeling of pathological brain states (Sudhakar et al 2019)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Traumatic brain injuries (TBI) lead to dramatic changes in the surviving brain tissue. Altered ion concentrations, coupled with changes in the expression of membrane-spanning proteins, create a post-TBI brain state that can lead to further neuronal loss caused by secondary excitotoxicity. Several GABA receptor agonists have been tested in the search for neuroprotection immediately after an injury, with paradoxical results. These drugs not only fail to offer neuroprotection, but can also slow down functional recovery after TBI. Here, using computational modeling, we provide a biophysical hypothesis to explain these observations. We show that the accumulation of intracellular chloride ions caused by a transient upregulation of Na+-K+-2Cl- (NKCC1) co-transporters as observed following TBI, causes GABA receptor agonists to lead to excitation and depolarization block, rather than the expected hyperpolarization. The likelihood of prolonged, excitotoxic depolarization block is further exacerbated by the extremely high levels of extracellular potassium seen after TBI. Our modeling results predict that the neuroprotective efficacy of GABA receptor agonists can be substantially enhanced when they are combined with NKCC1 co-transporter inhibitors. This suggests a rational, biophysically principled method for identifying drug combinations for neuroprotection after TBI.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262233",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2020-03-02T19:44:45.937",
+ "ver_number": 7
+ },
+ "262356": {
+ "class_id": 19,
+ "created": "2020-03-02T05:37:50.88",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262356,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 194888,
+ "object_name": "Grid cell"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266813,
+ "object_name": "D'Albis T, Kempter R (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Recurrent amplification of grid-cell activity (D'Albis and Kempter 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262356",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Network Amplification"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "D'Albis Tiziano"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiziano.dalbis@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tiziano D'Albis"
+ },
+ "ver_date": "2020-09-17T11:44:31.97",
+ "ver_number": 6
+ },
+ "262368": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.physiology.org/doi/abs/10.1152/jn.00067.2018"
+ },
+ "class_id": 19,
+ "created": "2020-03-02T12:14:33.607",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262368,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262442,
+ "object_name": "Maling, Nicholas [nickmaling at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262433,
+ "object_name": "Maling N, Lempka SF, Blumenfeld Z, Bronte-Stewart H, McIntyre CC (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Biophysical basis of Subthalamic LFPs Recorded from DBS electrodes (Maling et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Clinical deep brain stimulation (DBS) technology is evolving to enable chronic recording of local field potentials (LFPs) that represent electrophysiological biomarkers of the underlying disease state. However, little is known about the biophysical basis of LFPs, or how the patient\u2019s unique brain anatomy and electrode placement impact the recordings. Therefore, we developed a patient-specific computational framework to analyze LFP recordings within a clinical DBS context. We selected a subject with Parkinson\u2019s disease implanted with a Medtronic Activa PC+S DBS system and reconstructed their subthalamic nucleus (STN) and DBS electrode location using medical imaging data. The patient-specific STN volume was populated with 235,280 multicompartment STN neuron models, providing a neuron density consistent with histological measurements. Each neuron received time-varying synaptic inputs and generated transmembrane currents that gave rise to the LFP signal recorded at DBS electrode contacts residing in a finite element volume conductor model. We then used the model to study the role of synchronous beta-band inputs to the STN neurons on the recorded power spectrum. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262368",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2020-03-04T12:19:42.39",
+ "ver_number": 6
+ },
+ "262373": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1006392"
+ },
+ "class_id": 19,
+ "created": "2020-03-02T13:26:01.5",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262373,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263017,
+ "object_name": "Coggan, Jay S [jay.coggan at epfl.ch]"
+ },
+ {
+ "object_id": 238005,
+ "object_name": "Keller, Daniel "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183421,
+ "object_name": "Volume transmission"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262997,
+ "object_name": "Coggan JS, Keller D, Cal\u00ec C, Lehv\u00e4slaiho H, Markram H, Sch\u00fcrmann F, Magistretti PJ (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Norepinephrine stimulates glycogenolysis in astrocytes to fuel neurons (Coggan et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145165,
+ "object_name": "Locus Coeruleus neuron"
+ },
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The mechanism of rapid energy supply to the brain, especially to accommodate the heightened metabolic activity of excited states, is not well-understood. We explored the role of glycogen as a fuel source for neuromodulation using the noradrenergic stimulation of glia in a computational model of the neural-glial-vasculature ensemble (NGV). The detection of norepinephrine (NE) by the astrocyte and the coupled cAMP signal are rapid and largely insensitive to the distance of the locus coeruleus projection release sites from the glia, implying a diminished impact for volume transmission in high affinity receptor transduction systems. Glucosyl-conjugated units liberated from glial glycogen by NE-elicited cAMP second messenger transduction winds sequentially through the glycolytic cascade, generating robust increases in NADH and ATP before pyruvate is finally transformed into lactate. This astrocytic lactate is rapidly exported by monocarboxylate transporters to the associated neuron, demonstrating that the astrocyte-to-neuron lactate shuttle activated by glycogenolysis is a likely fuel source for neuromodulation and enhanced neural activity. Altogether, the energy supply for both astrocytes and neurons can be supplied rapidly by glycogenolysis upon neuromodulatory stimulus.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262373",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-03-11T18:36:07.62",
+ "ver_number": 7
+ },
+ "262389": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.nature.com/articles/s41598-017-14357-1"
+ },
+ "class_id": 19,
+ "created": "2020-03-02T19:14:40.75",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262389,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262111,
+ "object_name": "Tsai, David [d.tsai at unsw.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262110,
+ "object_name": "Tsai D, Morley JW, Suaning GJ, Lovell NH (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Survey of electrically evoked responses in the retina (Tsai et al 2017)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ },
+ {
+ "object_id": 225100,
+ "object_name": "Retina horizontal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Cones and horizontal cells are interconnected to adjacent cones and horizontal cells, respectively, with gap junctions. In particular, the horizontal cell gap junctional conductance is modulated by exogenous factors. What roles does this conductance play in the electrically evoked responses of horizontal cells? To address this question, we constructed a computational model consisting of the cone and horizontal cell layer...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262389",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2020-03-02T19:25:41.137",
+ "ver_number": 5
+ },
+ "262422": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.physiology.org/doi/abs/10.1152/jn.00340.2018"
+ },
+ "class_id": 19,
+ "created": "2020-03-03T14:53:17.487",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262422,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263070,
+ "object_name": "Medlock, Laura [laura.medlock at mail.utoronto.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263069,
+ "object_name": "Medlock L, Shute L, Fry M, Standage D, Ferguson AV (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Burst and tonic firing behaviour in subfornical organ (SFO) neurons (Medlock et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Subfornical organ (SFO) neurons exhibit heterogeneity in current expression and spiking behavior,\r\nwhere the two major spiking phenotypes appear as tonic and burst firing. Insight into the mechanisms behind\r\nthis heterogeneity is critical for understanding how the SFO, a sensory circumventricular organ, integrates and\r\nselectively influences physiological function. To integrate efficient methods for studying this heterogeneity,\r\nwe built a single-compartment, Hodgkin-Huxley-type model of an SFO neuron that is parameterized by SFO-specific in vitro patch-clamp data. The model accounts for the membrane potential distribution and spike train variability of both tonic and burst firing SFO neurons. Analysis of model dynamics confirms that a persistent Na+ and Ca2+ currents are required for burst initiation and maintenance and suggests that a slow-activating K+ current may be responsible for burst termination in SFO neurons. Additionally, the model suggests that heterogeneity in current expression and subsequent influence on spike afterpotential underlie the behavioral differences between tonic and burst firing SFO neurons. Future use of this model in coordination with single neuron patch-clamp electrophysiology provides a platform for explaining and predicting the response of SFO neurons to various combinations of circulating signals, thus elucidating the mechanisms underlying physiological signal integration within the SFO.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262422",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Non-selective cationic current"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "L Medlock"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Subfornical organ neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2022-06-14T14:08:05.513",
+ "ver_number": 9
+ },
+ "262431": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://europepmc.org/abstract/med/30188811"
+ },
+ "class_id": 19,
+ "created": "2020-03-03T16:06:16.14",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262431,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262488,
+ "object_name": "Tarnaud, Thomas [Thomas.Tarnaud at UGent.be]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262487,
+ "object_name": "Tarnaud T, Joseph W, Martens L, Tanghe E (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Computational modeling of ultrasonic Subthalamic Nucleus stimulation (Tarnaud et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Objective: To explore the potential of ultrasonic modulation of plateau-potential generating subthalamic nucleus neurons (STN), by modeling their interaction with continuous and pulsed ultrasonic waves. Methods: A computational model for ultrasonic stimulation of the STN is created by combining the Otsuka-model with the bilayer sonophore model. The neuronal response to continuous and pulsed ultrasonic waves is computed in parallel for a range of frequencies, duty cycles, pulse repetition frequencies, and intensities. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262431",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ultrasonic modulation"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2020-03-06T12:55:20.873",
+ "ver_number": 5
+ },
+ "262452": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A Self-Regulating Gap Junction Network of Amacrine Cells Controls Nitric Oxide Release in the Retina.\r\nJacoby J1, Nath A2, Jessen ZF3, Schwartz GW4."
+ },
+ "class_id": 19,
+ "created": "2020-03-04T15:46:45.233",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262452,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262459,
+ "object_name": "Jessen, Zachary F "
+ },
+ {
+ "object_id": 262460,
+ "object_name": "Schwartz, Gregory W [greg.schwartz at northwestern.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262450,
+ "object_name": "Jacoby J, Nath A, Jessen ZF, Schwartz GW (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "A gap junction network of Amacrine Cells controls Nitric Oxide release (Jacoby et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 223953,
+ "object_name": "Retina amacrine cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 226,
+ "object_name": "NO"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... The effects of the neuromodulator nitric oxide (NO) have\r\nbeen studied in many circuits, including in the vertebrate\r\nretina, where it regulates synaptic release, gap junction\r\ncoupling, and blood vessel dilation, but little is known about\r\nthe cells that release NO. We show that a single type of amacrine\r\ncell (AC) controls NO release in the inner retina, and we report\r\nits light responses, electrical properties, and calcium\r\ndynamics. We discover that this AC forms a dense gap junction\r\nnetwork and that the strength of electrical coupling in the\r\nnetwork is regulated by light through NO. A model of the network\r\noffers insights into the biophysical specializations leading to\r\nauto-regulation of NO release within the network.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262452",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-03-04T16:37:29.83",
+ "ver_number": 5
+ },
+ "262456": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.frontiersin.org/articles/10.3389/fninf.2018.00088/full"
+ },
+ "class_id": 19,
+ "created": "2020-03-04T16:18:34.773",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262456,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263577,
+ "object_name": "Geminiani, Alice [alice.geminiani at unipv.it]"
+ },
+ {
+ "object_id": 263578,
+ "object_name": "Casellato, Claudia [claudia.casellato at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263576,
+ "object_name": "Geminiani A, Casellato C, Locatelli F, Prestori F, Pedrocchi A, D'Angelo E (2018)"
+ },
+ {
+ "object_id": 263579,
+ "object_name": "Geminiani A, Casellato C, D'Angelo E, Pedrocchi A (2019)"
+ },
+ {
+ "object_id": 263580,
+ "object_name": "Geminiani A, Pedrocchi A, D'Angelo E, Casellato C (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "Complex dynamics: reproducing Golgi cell electroresponsiveness (Geminiani et al 2018, 2019ab)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Excerpts from three papers abstracts: \"Brain neurons exhibit complex electroresponsive properties \u2013 including intrinsic subthreshold oscillations and pacemaking, resonance and phase-reset \u2013 which are thought to play a critical role in controlling neural network dynamics. Although these properties emerge from detailed representations of molecular-level mechanisms in \u201crealistic\u201d models, they cannot usually be generated by simplified neuronal models (although these may show spike-frequency adaptation and bursting). We report here that this whole set of properties can be generated by the extended generalized leaky integrate-and-fire (E-GLIF) neuron model. ...\" \"... In order to reproduce these properties in single-point neuron models, we have optimized the Extended-Generalized Leaky Integrate and Fire (E-GLIF) neuron through a multi-objective gradient-based algorithm targeting the desired input\u2013output relationships. ...\" \" ... In order to investigate how single neuron dynamics and geometrical modular connectivity affect cerebellar processing, we have built an olivocerebellar Spiking Neural Network (SNN) based on a novel simplification algorithm for single point models (Extended Generalized Leaky Integrate and Fire, EGLIF) capturing essential non-linear neuronal dynamics (e.g., pacemaking, bursting, adaptation, oscillation and resonance). ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262456",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Geminiani, Alice [alice.geminiani at unipv.it]Casellato, Claudia [claudia.casellato at unipv.it]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2020-04-01T10:29:38.957",
+ "ver_number": 14
+ },
+ "262457": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1006359"
+ },
+ "class_id": 19,
+ "created": "2020-03-04T16:20:26.62",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262457,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262714,
+ "object_name": "Schmidt, Maximilian [schmidt.maximilian at posteo.de]"
+ },
+ {
+ "object_id": 262715,
+ "object_name": "Schuecker, Jannis "
+ },
+ {
+ "object_id": 262716,
+ "object_name": "van Albada, Sacha Jennifer [s.van.albada at fz-juelich.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262711,
+ "object_name": "Schmidt M, Bakker R, Shen K, Bezgin G, Diesmann M, van Albada SJ (2018)"
+ },
+ {
+ "object_id": 262712,
+ "object_name": "Schmidt M, Bakker R, Hilgetag CC, Diesmann M, van Albada SJ (2018)"
+ },
+ {
+ "object_id": 262713,
+ "object_name": "Schuecker J, Schmidt M, van Albada SJ, Diesmann M, Helias M (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "Multi-area layer-resolved spiking network model of resting-state dynamics in macaque visual cortex",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 258847,
+ "object_name": "Abstract integrate-and-fire leaky neuron with exponential post-synaptic current"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "See https://inm-6.github.io/multi-area-model/ for any updates."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262457",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Resting-state activity"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Schmidt, Maximilian [schmidt.maximilian@posteo.de]\r\nSchuecker, Jannis\r\nvan Albada, Sacha Jennifer [s.van.albada@fz-juelich.de]\r\n"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 266986,
+ "object_name": "Visual cortex"
+ }
+ ]
+ },
+ "ver_date": "2021-03-23T06:15:39.157",
+ "ver_number": 9
+ },
+ "262464": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Cellular function given parametric variation in the Hodgkin and Huxley model of excitability\r\nHillel Ori, View ORCID ProfileEve Marder, and View ORCID ProfileShimon Marom\r\nPNAS August 28, 2018 115 (35) E8211-E8218; first published August 15, 2018 https://doi.org/10.1073/pnas.1808552115"
+ },
+ "class_id": 19,
+ "created": "2020-03-04T17:30:05.233",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262464,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262483,
+ "object_name": "Marom, Shimon [marom at technion.ac.il]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116962,
+ "object_name": "Parameter sensitivity"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262444,
+ "object_name": "Ori H, Marder E, Marom S (2018)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 206355,
+ "object_name": "Mathematica (web link to model)"
+ }
+ ]
+ },
+ "name": "Cellular function given parametric variation in the HH model of excitability (Ori et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"How is reliable physiological function maintained in cells despite considerable variability in the values of key parameters of multiple interacting processes that govern that function? Here, we use the classic Hodgkin\u2013Huxley formulation of the squid giant axon action potential to propose a possible approach to this problem. Although the full Hodgkin\u2013Huxley model is very sensitive to fluctuations that independently occur in its many parameters, the outcome is in fact determined by simple combinations of these parameters along two physiological dimensions: structural and kinetic (denoted S and K, respectively). Structural parameters describe the properties of the cell, including its capacitance and the densities of its ion channels. Kinetic parameters are those that describe the opening and closing of the voltage-dependent conductances. The impacts of parametric fluctuations on the dynamics of the system\u2014seemingly complex in the high-dimensional representation of the Hodgkin\u2013Huxley model\u2014are tractable when examined within the S\u2013K plane. We demonstrate that slow inactivation, a ubiquitous activity-dependent feature of ionic channels, is a powerful local homeostatic control mechanism that stabilizes excitability amid changes in structural and kinetic parameters.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262464",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "ver_date": "2020-03-05T06:40:55.83",
+ "ver_number": 3
+ },
+ "262465": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Xize Xu, Jianhua Cang, Hermann Riecke, J. Neurophysiology 2020 accepted"
+ },
+ "class_id": 19,
+ "created": "2020-03-04T17:52:14.393",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262465,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247195,
+ "object_name": "Riecke, Hermann [h-riecke at northwestern.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262485,
+ "object_name": "Xu X, Cang J', Riecke H (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Development and Binocular Matching of Orientation Selectivity in Visual Cortex (Xu et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model investigates the development of orientation selectivity and its binocular matching in visual cortex by implementing a neuron that has plastic synapses for its inputs from the left and right eye. The plasticity is taken to be voltage-based with homeostasis (Clopath et al 2010). The neuron is modeled as an adaptive exponential integrate-fire neuron. The uploaded model has been used in Xu, Cang & Riecke (2020) to analyze the impact of ocular dominance and orientation selectivity on the matching process. There it has been found that the matching can proceed by a slow shifting or a sudden switching of the preferred orientation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262465",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Xize Xu"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "xizexu2016@u.northwestern.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Xize Xu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2020-03-05T16:08:00.55",
+ "ver_number": 4
+ },
+ "262670": {
+ "class_id": 19,
+ "created": "2020-03-10T16:49:52.23",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 262670,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262704,
+ "object_name": "Ray, Subhasis [ray.subhasis at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245690,
+ "object_name": "Olfaction"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263621,
+ "object_name": "Ray S, Aldworth ZN, Stopfer MA (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Locust olfactory network with GGN and full KC population in the mushroom body (Ray et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114295,
+ "object_name": "Honeybee kenyon cell"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 262703,
+ "object_name": "Locust Giant GABAergic Neuron (GGN)"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We reconstructed the GGN (giant GABAergic neuron) morphology from 3D confocal image stack, and built a passive model based on the morphology to study signal attenuation across this giant neuron. In order to study the effect of feedback inhibition from this cell on odor information processing, we created a model of the olfactory network in the locust mushroom body with 50,000 KCs (Kenyon cell) reciprocally connected to this neuron. Finally, we added a model of the IG (Inhibitor of GGN) to reproduce in vivo odor responses in GGN."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/262670",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Subhasis Ray"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Locust Giant GABAergic Neuron (GGN)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ray.subhasis@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Subhasis Ray"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 262706,
+ "object_name": "Mushroom body"
+ },
+ {
+ "object_id": 262707,
+ "object_name": "Locust"
+ }
+ ]
+ },
+ "ver_date": "2020-10-02T17:03:34.543",
+ "ver_number": 21
+ },
+ "263034": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.eneuro.org/content/eneuro/early/2018/08/09/ENEURO.0254-18.2018.full.pdf"
+ },
+ "class_id": 19,
+ "created": "2020-03-12T15:53:11.5",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263034,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266539,
+ "object_name": "Kamiya, Haruyuki [kamiya at med.hokudai.ac.j]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266538,
+ "object_name": "Ohura S, Kamiya H (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Evaluation of passive component of propagating AP in mossy fiber axons (Ohura & Kamiya 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Action potentials propagating along axons are often followed by prolonged afterdepolarization (ADP) lasting for several tens of milliseconds. Axonal ADP is thought to be an important factor in modulating the fidelity of spike propagation during repetitive firings. However, the mechanism as well as the functional significance of axonal ADP remain unclear, partly due to inaccessibility to small structures of axon for direct electrophysiological recordings. Here, we examined the ionic and electrical mechanisms underlying axonal ADP using whole-bouton recording from mossy fiber terminals in mice hippocampal slices. ADP following axonal action potentials was strongly enhanced by focal application of veratridine, an inhibitor of Na+ channel inactivation. In contrast, tetrodotoxin (TTX) partly suppressed ADP, suggesting that a Na+ channel\u2013dependent component is involved in axonal ADP. The remaining TTX-resistant Na+ channel\u2013independent component represents slow capacitive discharge reflecting the shape and electrical properties of the axonal membrane. We also addressed the functional impact of axonal ADP on presynaptic function. In paired-pulse stimuli, we found that axonal ADP minimally affected the peak height of subsequent action potentials, although the rising phase of action potentials was slightly slowed, possibly due to steady-state inactivation of Na+ channels by prolonged depolarization. Voltage clamp analysis of Ca2+ current elicited by action potential waveform commands revealed that axonal ADP assists short-term facilitation of Ca2+ entry into the presynaptic terminals. Taken together, these data show that axonal ADP maintains reliable firing during repetitive stimuli and plays important roles in the fine-tuning of short-term plasticity of transmitter release by modulating Ca2+ entry into presynaptic terminals.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263034",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kamiya, Haruyuki"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2020-06-09T09:26:41.923",
+ "ver_number": 11
+ },
+ "263042": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.jneurosci.org/content/jneuro/39/36/7132.full-text.pdf"
+ },
+ "class_id": 19,
+ "created": "2020-03-15T11:17:57.433",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263042,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263277,
+ "object_name": "Li X, Abou Tayoun A, Song Z, Dau A, Rien D, Jaciuch D, Dongre S, Blanchard F, Nikolaev A, Zheng L, Bollepalli MK, Chu B, Hardie RC, Dolph PJ, Juusola M (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "name": "How BK and SK channels benefit early vision (Li X et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Ca2+-activated K+ channels (BK and SK) are ubiquitous in synaptic circuits, but their role in network adaptation and sensory perception remains largely unknown. Using electrophysiological and behavioral assays and biophysical modeling, we discover how visual information transfer in mutants lacking the BK channel (dSlo- ), SK channel (dSK- ), or both (dSK- ;; dSlo- ) is shaped in the female fruit fly (Drosophila melanogaster) R1-R6 photoreceptor-LMC circuits (R-LMC-R system) through synaptic feedforward-feedback interactions and reduced R1-R6 Shaker and Shab K+ conductances. This homeostatic compensation is specific for each mutant, leading to distinctive adaptive dynamics. We show how these dynamics inescapably increase the energy cost of information and promote the mutants' distorted motion perception, determining the true price and limits of chronic homeostatic compensation in an in vivo genetic animal model. These results reveal why Ca2+-activated K+ channels reduce network excitability (energetics), improving neural adaptability for transmitting and perceiving sensory information. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263042",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2020-04-22T09:14:48.65",
+ "ver_number": 6
+ },
+ "263053": {
+ "citation": {
+ "attr_id": 391,
+ "value": "doi.org/10.3389/fncel.2020.00040"
+ },
+ "class_id": 19,
+ "created": "2020-03-17T12:37:04.23",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263053,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263057,
+ "object_name": "Zbili, Mickael [zbili.mickael at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263056,
+ "object_name": "Zbili M, Debanne D (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "L5 pyramidal neuron myelination increases analog-digital facilitation extent (Zbili & Debanne 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Analog-digital facilitations (ADFs) correspond to a class of phenomena describing how subthreshold variations of the presynaptic membrane potential influence the synaptic transmission. ADFs rely on the propagation of somatic membrane potential fluctuations to the presynaptic bouton where they modulate ion channels availability, inducing modifications of the presynaptic spike waveform, and threfore modifying the neurotransmitter release. In this simulation, we show that myelination can promote the propagation of somatic voltage subtheshold fluctuations into the axon, allowing the ADFs to impact distal presynaptic bouton (up to 3mm from the soma)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263053",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zbili Mickael"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zbili.mickael@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "mickael zbili"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-03-23T08:48:01.053",
+ "ver_number": 28
+ },
+ "263074": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1006186"
+ },
+ "class_id": 19,
+ "created": "2020-03-20T16:40:01.99",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263074,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263164,
+ "object_name": "Chizhov, Anton [anton.chizhov at mail.ioffe.ru]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263147,
+ "object_name": "Chizhov AV, Zefirov AV, Amakhin DV, Smirnova EY, Zaitsev AV (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 117353,
+ "object_name": "Pascal/Delphi"
+ },
+ {
+ "object_id": 143722,
+ "object_name": "Mathematica"
+ },
+ {
+ "object_id": 263162,
+ "object_name": "Javascript"
+ }
+ ]
+ },
+ "name": "Minimal model of interictal and ictal discharges \u201cEpileptor-2\u201d (Chizhov et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Seizures occur in a recurrent manner with intermittent states of interictal and ictal discharges (IIDs and IDs). The transitions to and from IDs are determined by a set of processes, including synaptic interaction and ionic dynamics. Although mathematical models of separate types of epileptic discharges have been developed, modeling the transitions between states remains a challenge. A simple generic mathematical model of seizure dynamics (Epileptor) has recently been proposed by Jirsa et al. (2014); however, it is formulated in terms of abstract variables. In this paper, a minimal population-type model of IIDs and IDs is proposed that is as simple to use as the Epileptor, but the suggested model attributes physical meaning to the variables. The model is expressed in ordinary differential equations for extracellular potassium and intracellular sodium concentrations, membrane potential, and short-term synaptic depression variables. A quadratic integrate-and-fire model driven by the population input current is used to reproduce spike trains in a representative neuron. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263074",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-05-14T13:28:08.057",
+ "ver_number": 11
+ },
+ "263130": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.nature.com/articles/s41598-018-28581-w"
+ },
+ "class_id": 19,
+ "created": "2020-03-23T14:19:34.327",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263130,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144557,
+ "object_name": "Antunes, Gabriela [gabri_antunes at hotmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263984,
+ "object_name": "Antunes G, Simoes-de-Souza FM (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2835,
+ "object_name": "MCell"
+ }
+ ]
+ },
+ "name": "AMPA receptor trafficking and its role in heterosynaptic plasticity (Antunes et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... cumulative experimental and theoretical data have\r\ndemonstrated that long-term potentiation (LTP) and long-term\r\ndepression (LTD) can promote compensatory alterations in\r\nnon-stimulated synapses. In this work, we have developed a (MCELL)\r\ncomputational model of a (3D) spiny dendritic segment\r\nto investigate the role of AMPA receptor (AMPAR) trafficking\r\nduring synaptic plasticity at specific synapses and its\r\nconsequences for the populations of AMPAR at nearby synapses. Our\r\nresults demonstrated that the mechanisms of AMPAR trafficking\r\ninvolved with LTP and LTD can promote heterosynaptic plasticity\r\nat non-stimulated synapses. These alterations are compensatory\r\nand arise from molecular competition. Moreover, the\r\nheterosynaptic changes observed in our model can modulate further\r\nactivity-driven inductions of synaptic plasticity.\" The model requires an installed version of MCell and CellBlender."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263130",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gabriela Antunes"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2020-04-15T10:15:56.897",
+ "ver_number": 7
+ },
+ "263193": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://aip.scitation.org/doi/abs/10.1063/1.5040288"
+ },
+ "class_id": 19,
+ "created": "2020-03-26T12:56:05.313",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 263193,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263686,
+ "object_name": "Barlow, Benjamin Stephen [BBarlow at uottawa.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263685,
+ "object_name": "Barlow BM, Joos B, Trinh AK, Longtin A (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cooling reverses pathological spontaneous firing caused by mild traumatic injury (Barlow et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Mild traumatic injury can modify the key sodium (Na+) current underlying the excitability of neurons. It causes the activation and inactivation properties of this current to become shifted to more negative trans-membrane voltages. This so-called coupled left shift (CLS) leads to a chronic influx of Na+ into the cell that eventually causes spontaneous or \u201cectopic\u201d firing along the axon, even in the absence of stimuli. The bifurcations underlying this enhanced excitability have been worked out in full ionic models of this effect. Here, we present computational evidence that increased temperature T can exacerbate this pathological state. Conversely, and perhaps of clinical relevance, mild cooling is shown to move the naturally quiescent cell further away from the threshold of ectopic behavior. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263193",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-04-08T22:35:24.543",
+ "ver_number": 12
+ },
+ "263196": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 29769701\r\nA Drosophila Model of Essential Tremor.\r\nSmith P, Arias R, Sonti S, Odgerel Z, Santa-Maria I, McCabe BD, Tsaneva-Atanasova K, Louis ED, Hodge JJL, Clark LN.\r\nSci Rep. 2018 May 16;8(1):7664. doi: 10.1038/s41598-018-25949-w."
+ },
+ "class_id": 19,
+ "created": "2020-03-26T13:09:55.523",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263196,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263210,
+ "object_name": "Smith, Philip [smithpj92 at hotmail.co.uk]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263209,
+ "object_name": "Smith P, Arias R, Sonti S, Odgerel Z, Santa-Maria I, McCabe BD, Tsaneva-Atanasova K, Louis ED, Hodge JJL, Clark LN (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Drosophila circadian clock neurone model of essential tremor (Smith et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 263211,
+ "object_name": "Drosophila ventral lateral neuron (LNV)"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of Drosophila ventral lateral neuron (LNV) used to study a human ion channel associated with essential tremor."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263196",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dr Philip Smith (smithpj92@hotmail.co.uk)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Drosophila LNV neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "k.tsaneva-atanasova@exeter.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Krasimira Tsaneva-Atanasova"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2020-03-26T20:09:07.5",
+ "ver_number": 11
+ },
+ "263199": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 31612994\r\nShaw and Shal voltage-gated potassium channels mediate circadian changes in Drosophila clock neuron excitability.\r\nSmith P, Buhl E, Tsaneva-Atanasova K, Hodge JJL.\r\nJ Physiol. 2019 Dec;597(23):5707-5722. doi: 10.1113/JP278826."
+ },
+ "class_id": 19,
+ "created": "2020-03-26T13:20:59.777",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263199,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263210,
+ "object_name": "Smith, Philip [smithpj92 at hotmail.co.uk]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263202,
+ "object_name": "Smith P, Buhl E, Tsaneva-Atanasova K, Hodge JJL (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Drosophila lateral ventral clock neuron (LNV) model (Smith et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 263211,
+ "object_name": "Drosophila ventral lateral neuron (LNV)"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "LNVmodel models the activity of a Drosophila lateral ventral clock neurons (LNV) neurone."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263199",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Shaw and Shal voltage-gated potassium currents"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Philip Smith (smithpj92@hotmail.co.uk)"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Drosophila LNV neuron ion channels"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "k.tsaneva-atanasova@exeter.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Krasimira Tsaneva-Atanasova"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2020-07-29T20:24:24.35",
+ "ver_number": 10
+ },
+ "263236": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Di Volo, M., Romagnoni, A., Capone, C., & Destexhe, A. (2019). Biologically realistic mean-field models of conductance-based networks of spiking neurons with adaptation. Neural computation, 31(4), 653-680."
+ },
+ "class_id": 19,
+ "created": "2020-03-27T11:46:10.03",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263236,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263430,
+ "object_name": "di Volo, Matteo [matteo.di-volo at cyu.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263429,
+ "object_name": "di Volo MD, Romagnoni A, Capone C, Destexhe A (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Mean-Field models of conductance-based NNs of spiking neurons with adaptation (di Volo et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Accurate population models are needed to build very large-scale neural models, but their derivation is difficult for realistic networks of neurons, in particular when nonlinear properties are involved, such as conductance-based interactions and spike-frequency adaptation. Here, we consider such models based on networks of adaptive exponential integrate-and-fire excitatory and inhibitory neurons. Using a master equation formalism, we derive a mean-field model of such networks and compare it to the full network dynamics. The mean-field model is capable of correctly predicting the average spontaneous activity levels in asynchronous irregular regimes similar to in vivo activity. It also captures the transient temporal response of the network to complex external inputs. Finally, the mean-field model is also able to quantitatively describe regimes where high- and low-activity states alternate (up-down state dynamics), leading to slow oscillations. We conclude that such mean-field models are biologically realistic in the sense that they can capture both spontaneous and evoked activity, and they naturally appear as candidates to build very large-scale models involving multiple brain areas.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263236",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "matteo.di-volo@u-cergy.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Matteo di Volo"
+ },
+ "ver_date": "2020-04-02T09:55:17.2",
+ "ver_number": 8
+ },
+ "263246": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Asabuki, T., Fukai, T. Somatodendritic consistency check for temporal feature segmentation. Nat Commun 11, 1554 (2020). https://doi.org/10.1038/s41467-020-15367-w"
+ },
+ "class_id": 19,
+ "created": "2020-03-27T20:32:09.993",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263246,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263258,
+ "object_name": "Asabuki T, Fukai T (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Somatodendritic consistency check for temporal feature segmentation (Asabuki & Fukai 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The brain identifies potentially salient features within continuous information streams to process hierarchical temporal events. This requires the compression of information streams, for which effective computational principles are yet to be explored. Backpropagating action potentials can induce synaptic plasticity in the dendrites of cortical pyramidal neurons. By analogy with this effect, we model a self-supervising process that increases the similarity between dendritic and somatic activities where the somatic activity is normalized by a running average. We further show that a family of networks composed of the two-compartment neurons performs a surprisingly wide variety of complex unsupervised learning tasks, including chunking of temporal sequences and the source separation of mixed correlated signals. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263246",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "toshitake.asabuki@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Toshitake Asabuki"
+ },
+ "ver_date": "2020-07-29T20:26:59.46",
+ "ver_number": 7
+ },
+ "263259": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Carlu, Mallory, et al. \"A mean-field approach to the dynamics of networks of complex neurons, from nonlinear Integrate-and-Fire to Hodgkin-Huxley models.\" Journal of Neurophysiology (2019)."
+ },
+ "class_id": 19,
+ "created": "2020-03-28T05:34:06.377",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263259,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263430,
+ "object_name": "di Volo, Matteo [matteo.di-volo at cyu.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263440,
+ "object_name": "Carlu M, Chehab O, Dalla Porta L, Depannemaecker D, H\u00e9ric\u00e9 C, Jedynak M, K\u00f6ksal Ers\u00f6z E, Muratore P, Souihel S, Capone C, Zerlaut Y, Destexhe A, di Volo M (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Mean field model for Hodgkin Huxley networks of neurons (Carlu et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We present a mean-field formalism able to predict the collective dynamics of large networks of conductance-based interacting spiking neurons. We apply this formalism to several neuronal models, from the simplest Adaptive Exponential Integrate-and-Fire model to the more complex Hodgkin-Huxley and Morris-Lecar models. We show that the resulting mean-field models are capable of predicting the correct spontaneous activity of both excitatory and inhibitory neurons in asynchronous irregular regimes, typical of cortical dynamics. Moreover, it is possible to quantitatively predict the population response to external stimuli in the form of external spike trains. This mean-field formalism therefore provides a paradigm to bridge the scale between population dynamics and the microscopic complexity of the individual cells physiology.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263259",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "matteo.di-volo@u-cergy.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Matteo di Volo"
+ },
+ "ver_date": "2020-07-29T20:28:35.573",
+ "ver_number": 8
+ },
+ "263571": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.eneuro.org/content/eneuro/early/2019/07/03/ENEURO.0417-18.2019.full.pdf"
+ },
+ "class_id": 19,
+ "created": "2020-03-30T22:08:40.45",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263571,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 114640,
+ "object_name": "Gunay, Cengiz [cgunay at emory.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263687,
+ "object_name": "G\u00fcnay C, Doloc-Mihu A, Lamb DG, Calabrese RL (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 18747,
+ "object_name": "GENESIS (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Synaptic strengths are critical in creating the proper output phasing in a CPG (Gunay et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Identified neurons and the networks they compose produce stereotypical, albeit individually unique, activity\r\nacross members of a species. We propose, for a motor circuit driven by a central pattern generator (CPG), that\r\nthe uniqueness derives mainly from differences in synaptic strength rather than from differences in intrinsic\r\nmembrane conductances. We studied a dataset of recordings from six leech (Hirudo sp.) heartbeat control\r\nnetworks, containing complete spiking activity patterns from inhibitory premotor interneurons, motor output spike\r\npatterns, and synaptic strength patterns to investigate the source of uniqueness. We used a conductance-based\r\nmulticompartmental motor neuron model to construct a bilateral motor circuit model, and controlled it by playing\r\nrecorded input spike trains from premotor interneurons to generate output inhibitory synaptic patterns similar to\r\nexperimental measurements. By generating different synaptic conductance parameter sets of this circuit model,\r\nwe found that relative premotor synaptic strengths impinging onto motor neurons must be different across\r\nindividuals to produce animal-specific output burst phasing. Obtaining unique outputs from each individual\u2019s\r\ncircuit model did not require different intrinsic ionic conductance parameters. Furthermore, changing intrinsic conductances failed to compensate for modified synaptic strength patterns. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263571",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "ver_date": "2020-07-29T20:32:34.62",
+ "ver_number": 8
+ },
+ "263585": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://link.springer.com/chapter/10.1007/978-3-030-36683-4_61"
+ },
+ "class_id": 19,
+ "created": "2020-04-01T11:37:44.573",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263585,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 116853,
+ "object_name": "Diwakar, Shyam [shyam at amrita.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263674,
+ "object_name": "Sasidharakurup H, Nair L, Bhaskar K, Diwakar S (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 237011,
+ "object_name": "CellDesigner"
+ }
+ ]
+ },
+ "name": "Computational Modelling of TNFalpha Pathway in Parkinson's Disease (Sasidharakurup et al 2019)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The paper aims developing a computational framework of signaling using the principles of biochemical systems theory as a model for Parkinson\u2019s disease. Several molecular interactions aided by TNFalpha, a proinflammatory cytokine play key roles in mediating glutamate excitotoxicity and neuroinflammation, resulting in neuronal cell death. In this paper, initial concentrations and rate constants were extracted from literature and simulations developed were based on systems of ordinary differential equations following first-order kinetics. In control or healthy conditions, a decrease in TNFalpha and neuronal cell death was predicted in simulations matching data from experiments, whereas in diseased condition, a drastic increase in levels of TNFalpha, glutamate, TNFR1 and ROS were observed similar to experimental data correlating diseased condition to augmented neuronal cell death. The study suggests toxic effects induced by TNFalpha in the substantia nigra may be attributed to Parkinson\u2019s disease conditions.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263585",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Hemalatha Sasidharakurup (hemalathas@am.amrita.edu)"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Systems Biology"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-04-07T10:29:04.4",
+ "ver_number": 8
+ },
+ "263637": {
+ "citation": {
+ "attr_id": 391,
+ "value": "\"Transfer entropy as a measure of brain connectivity: a critical analysis with the help of neural mass models\", M. Ursino, G. Ricci and E. Magosso, accepted with revision by Frontiers in Computational Neuroscience."
+ },
+ "class_id": 19,
+ "created": "2020-04-06T13:07:37.537",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263637,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239531,
+ "object_name": "Ursino, Mauro [mauro.ursino at unibo.it]"
+ },
+ {
+ "object_id": 263678,
+ "object_name": "Ricci, Giulia [Giulia.Ricci at unibo.it]"
+ },
+ {
+ "object_id": 261628,
+ "object_name": "Magosso, Elisa [elisa.magosso at unibo.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267635,
+ "object_name": "Ursino M, Ricci G, Magosso E (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 263677,
+ "object_name": "Trentool"
+ }
+ ]
+ },
+ "name": "A neural mass model for critical assessment of brain connectivity (Ursino et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We use a neural mass model of interconnected regions of interest to simulate reliable neuroelectrical signals in the cortex. In particular, signals simulating mean field potentials were generated assuming two, three or four ROIs, connected via excitatory or by-synaptic inhibitory links. Then we investigated whether bivariate Transfer Entropy (TE) can be used to detect a statistically significant connection from data (as in binary 0/1 networks), and even if connection strength can be quantified (i.e., the occurrence of a linear relationship between TE and connection strength). Results suggest that TE can reliably estimate the strength of connectivity if neural populations work in their linear regions. However, nonlinear phenomena dramatically affect the assessment of connectivity, since they may significantly reduce TE estimation. Software included here allows the simulation of neural mass models with a variable number of ROIs and connections, the estimation of TE using the free package Trentool, and the realization of figures to compare true connectivity with estimated values."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263637",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Giulia Ricci at unibo.it\r\nElisa Magosso at unibo.it"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Trentool"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mauro.ursino@unibo.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mauro Ursino"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-09T09:59:47.947",
+ "ver_number": 8
+ },
+ "263703": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Nature Communications Biology (in press) Roger D. Traub*2, Karen Hawkins1, Natalie E. Adams1, Stephen P. Hall1, Anna Simon1 and Miles A Whittington1*, Layer 4 pyramidal neuron dendritic bursting underlies a post-stimulus visual cortical alpha rhythm."
+ },
+ "class_id": 19,
+ "created": "2020-04-09T09:24:13.677",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263703,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263704,
+ "object_name": "Traub RD, Hawkins K, Adams NE, Hall SP, Simon A, Whittington MA (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Alpha rhythm in vitro visual cortex (Traub et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The paper describes an experimental model of the alpha rhythm generated by layer 4 pyramidal neurons in a visual cortex slice. The simulation model is derived from that of Traub et al. (2005) J Neurophysiol, developed for thalamocortical oscillations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263703",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Code was written by Roger Traub in Fortran. Runs in mpi environment. The model neurons are multicompartment (soma, dendrites, axon) and have multiple ionic conductances. There are a variety of interneurons and pyramidal cells, plus spiny stellate neurons."
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rtraub@us.ibm.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roger Traub"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-04-15T13:43:08.42",
+ "ver_number": 11
+ },
+ "263705": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Seizure initiation in infantile spasms vs. focal seizures: proposed common cellular mechanisms.\r\nTraub RD, Moeller F, Rosch R, Baldeweg T, Whittington MA, Hall SP.\r\nRev Neurosci. 2020 Jan 28;31(2):181-200. doi: 10.1515/revneuro-2019-0030.\r\n\r\nUnbalanced Peptidergic Inhibition in Superficial Neocortex Underlies Spike and Wave Seizure Activity.\r\nHall S, Hunt M, Simon A, Cunnington LG, Carracedo LM, Schofield IS, Forsyth R, Traub RD, Whittington MA.\r\n\r\nA neocortical delta rhythm facilitates reciprocal interlaminar interactions via nested theta rhythms.\r\nCarracedo LM, Kjeldsen H, Cunnington L, Jenkins A, Schofield I, Cunningham MO, Davies CH, Traub RD, Whittington MA.\r\nJ Neurosci. 2013 Jun 26;33(26):10750-61. doi: 10.1523/JNEUROSCI.0735-13.2013.\r\nJ Neurosci. 2015 Jun 24;35(25):9302-14. doi: 10.1523/JNEUROSCI.4245-14.2015."
+ },
+ "class_id": 19,
+ "created": "2020-04-09T13:58:22.987",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263705,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 263707,
+ "object_name": "Traub RD, Moeller F, Rosch R, Baldeweg T, Whittington MA, Hall SP (2020)"
+ },
+ {
+ "object_id": 235505,
+ "object_name": "Hall S, Hunt M, Simon A, Cunnington LG, Carracedo LM, Schofield IS, Forsyth R, Traub RD, Whittington MA (2015)"
+ },
+ {
+ "object_id": 150690,
+ "object_name": "Carracedo LM, Kjeldsen H, Cunnington L, Jenkins A, Schofield I, Cunningham MO, Davies CH, Traub RD, Whittington MA (2013)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Electrodecrements in in vitro model of infantile spasms (Traub et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 262,
+ "object_name": "Thalamus geniculate nucleus/lateral principal GLU cell"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ },
+ {
+ "object_id": 167345,
+ "object_name": "Neocortex U1 L6 pyramidal corticalthalamic GLU cell"
+ },
+ {
+ "object_id": 167344,
+ "object_name": "Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The code is an extension of the thalamocortical model of Traub et al. (2005) J Neurophysiol. It is here applied to an in vitro model of the electrodecremental response seen in the EEG of children with infantile spasms (West syndrome)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263705",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Code written by RD Traub, rtraub@us.ibm.com"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rtraub@us.ibm.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roger Traub"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-04-15T13:48:03.95",
+ "ver_number": 5
+ },
+ "263711": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://journals.plos.org/ploscompbiol/article%3Fid%3D10.1371/journal.pcbi.1007432"
+ },
+ "class_id": 19,
+ "created": "2020-04-09T16:32:50.893",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263711,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 264552,
+ "object_name": "Spreizer, Sebastian "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 264553,
+ "object_name": "Spatial connectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 261827,
+ "object_name": "Spreizer S, Aertsen A, Kumar A (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "Emergence of spatiotemporal sequences in spiking neuronal networks (Spreizer et al 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Spatio-temporal sequences of neuronal activity are observed in many brain regions in a\r\nvariety of tasks and are thought to form the basis of meaningful behavior. However, mechanisms\r\nby which a neuronal network can generate spatio-temporal activity sequences have\r\nremained obscure. Existing models are biologically untenable because they either require\r\nmanual embedding of a feedforward network within a random network or supervised learning\r\nto train the connectivity of a network to generate sequences. Here, we propose a biologically\r\nplausible, generative rule to create spatio-temporal activity sequences in a network of\r\nspiking neurons with distance-dependent connectivity. We show that the emergence of spatio-\r\ntemporal activity sequences requires: (1) individual neurons preferentially project a small\r\nfraction of their axons in a specific direction, and (2) the preferential projection direction of\r\nneighboring neurons is similar. Thus, an anisotropic but correlated connectivity of neuron\r\ngroups suffices to generate spatio-temporal activity sequences in an otherwise random neuronal\r\nnetwork model.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263711",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Spatial connectivity"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Spreizer, Sebastian"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2020-04-22T11:32:54.513",
+ "ver_number": 5
+ },
+ "263718": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://link.springer.com/chapter/10.1007/978-3-030-22744-9_33"
+ },
+ "class_id": 19,
+ "created": "2020-04-09T16:49:18.75",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263718,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 264590,
+ "object_name": "Magalh\u00e3es, Bruno [brunomaga at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 264555,
+ "object_name": "Magalh\u00e3es BR, Sterling T, Hines M, Sch\u00fcrmann F (2019)"
+ },
+ {
+ "object_id": 264557,
+ "object_name": "Magalh\u00e3es BRC, Sterling T, Hines M, Sch\u00fcrmann F (2019)"
+ },
+ {
+ "object_id": 264562,
+ "object_name": "Magalh\u00e3es B, Hines M, Sterling T, Sch\u00fcermann F (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Fully-Asynchronous Cache-Efficient Simulation of Detailed Neural Networks (Magalhaes et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Modern asynchronous runtime systems allow the re-thinking of large-scale scientific applications. With the example of a simulator of morphologically detailed neural networks, we show how detaching from the commonly used bulk-synchronous parallel (BSP) execution allows for the increase of prefetching capabilities, better cache locality, and a overlap of computation and communication, consequently leading to a lower time to solution. Our strategy removes the operation of collective synchronization of ODEs\u2019 coupling information, and takes advantage of the pairwise time dependency between equations, leading to a fully-asynchronous exhaustive yet not speculative stepping model. Combined with fully linear data structures, communication reduce at compute node level, and an earliest equation steps first scheduler, we perform an acceleration at the cache level that reduces communication and time to solution by maximizing the number of timesteps taken per neuron at each iteration.\r\n\r\nOur methods were implemented on the core kernel of the NEURON scientific application. Asynchronicity and distributed memory space are provided by the HPX runtime system for the ParalleX execution model. Benchmark results demonstrate a superlinear speed-up that leads to a reduced runtime compared to the bulk synchronous execution, yielding a speed-up between 25% to 65% across different compute architectures, and in the order of 15% to 40% for distributed executions.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263718",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Magalh\u00e3es B"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2023-02-09T10:09:59.93",
+ "ver_number": 11
+ },
+ "263719": {
+ "class_id": 19,
+ "created": "2020-04-10T04:09:19.89",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263719,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 251109,
+ "object_name": "Muddapu, Vignayanandam R. [vignan.0009 at gmail.com]"
+ },
+ {
+ "object_id": 251110,
+ "object_name": "Chakravarthy, Srinivasa V. [schakra at iitm.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267360,
+ "object_name": "Muddapu VR, Vijayakumar K, Ramakrishnan K, Chakravarthy VS (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Levodopa-Induced Toxicity in Parkinson's Disease (Muddapu et al, 2022)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ },
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 182591,
+ "object_name": "Globus pallidus principal GABA cell"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We present a systems-level computational model of SNc-striatum, which will help us understand the mechanism behind neurodegeneration postulated above and provide insights into developing disease-modifying therapeutics. It was observed that SNc terminals are more vulnerable to energy deficiency than SNc somas. During L-DOPA therapy, it was observed that higher L-DOPA dosage results in increased loss of terminals in SNc. It was also observed that co-administration of L-DOPA and glutathione (antioxidant) evades L-DOPA-induced toxicity in SNc neurons. Our proposed model of the SNc-striatum system is the first of its kind, where SNc neurons were modeled at a biophysical level, and striatal neurons were modeled at a spiking level. We show that our proposed model was able to capture L-DOPA-induced toxicity in SNc, caused by energy deficiency.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263719",
+ "other_neurotransmitter": {
+ "attr_id": 304,
+ "value": "Substance P"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "D1-R, D2-R, NK1-R"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vignan.0009@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Vignayanandam R Muddapu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 249414,
+ "object_name": "Globus pallidus externa (GPe)"
+ },
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2022-04-20T12:21:32.297",
+ "ver_number": 4
+ },
+ "263956": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://link.springer.com/article/10.1007/s10827-018-0688-6"
+ },
+ "class_id": 19,
+ "created": "2020-04-14T12:05:51.823",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263956,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 264550,
+ "object_name": "Rodrigo Pena, [pena at njit.edu]"
+ },
+ {
+ "object_id": 264551,
+ "object_name": "Petar Tomov, [tomov at mathematik.hu-berlin.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 183719,
+ "object_name": "Synaptic noise"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 185463,
+ "object_name": "Pattern Separation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 264548,
+ "object_name": "Pena RFO, Zaks MA, Roque AC (2018)"
+ },
+ {
+ "object_id": 264549,
+ "object_name": "Tomov P, Pena RF, Roque AC, Zaks MA (2016)"
+ },
+ {
+ "object_id": 244287,
+ "object_name": "Tomov P, Pena RF, Zaks MA, Roque AC (2014)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Dynamics in random NNs with multiple neuron subtypes (Pena et al 2018, Tomov et al 2014, 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Spontaneous cortical population activity exhibits a multitude of oscillatory patterns, which often display synchrony during slow-wave sleep or under certain anesthetics and stay asynchronous during quiet wakefulness. The mechanisms behind these cortical states and transitions among them are not completely understood. Here we study spontaneous population activity patterns in random networks of spiking neurons of mixed types modeled by Izhikevich equations. Neurons are coupled by conductance-based synapses subject to synaptic noise. We localize the population activity patterns on the parameter diagram spanned by the relative inhibitory synaptic strength and the magnitude of synaptic noise. In absence of noise, networks display transient activity patterns, either oscillatory or at constant level. The effect of noise is to turn transient patterns into persistent ones: for weak noise, all activity patterns are asynchronous non-oscillatory independently of synaptic strengths; for stronger noise, patterns have oscillatory and synchrony characteristics that depend on the relative inhibitory synaptic strength. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263956",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Rodrigo Pena, pena@njit.edu\r\nPetar Tomov, tomov@mathematik.hu-berlin.de "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-04-22T10:58:32.99",
+ "ver_number": 9
+ },
+ "263961": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.sciencedirect.com/science/article/pii/S2211124720301881"
+ },
+ "class_id": 19,
+ "created": "2020-04-14T12:14:20.943",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263961,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 264172,
+ "object_name": "Nandi, Anirban "
+ },
+ {
+ "object_id": 264170,
+ "object_name": "Wei, Yina "
+ },
+ {
+ "object_id": 264171,
+ "object_name": "Anastassiou, Costas A [costasa at alleninstitute.org]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 264554,
+ "object_name": "Cardiac-related electrode motion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 264169,
+ "object_name": "Mosher CP, Wei Y, Kaminski J, Nandi A, Mamelak AN, Anastassiou CA, Rutishauser U (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Cellular classes revealed by heartbeat-related modulation of extracellular APs (Mosher et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Determining cell types is critical for understanding neural circuits but remains elusive in the living human brain. Current approaches discriminate units into putative cell classes using features of the extracellular action potential (EAP); in absence of ground truth data, this remains a problematic procedure. We find that EAPs in deep structures of the brain exhibit robust and systematic variability during the cardiac cycle. These cardiac-related features refine neural classification. We use these features to link bio-realistic models generated from in vitro human whole-cell recordings of morphologically classified neurons to in vivo recordings. We differentiate aspiny inhibitory and spiny excitatory human hippocampal neurons and, in a second stage, demonstrate that cardiac-motion features reveal two types of spiny neurons with distinct intrinsic electrophysiological properties and phase-locking characteristics to endogenous oscillations. This multi-modal approach markedly improves cell classification in humans, offers interpretable cell classes, and is applicable to other brain areas and species.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263961",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2020-04-22T11:44:17.377",
+ "ver_number": 6
+ },
+ "263988": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Capllonch-Juan, M, and Sepulveda, F. Modelling the effects of ephaptic coupling on selectivity and response patterns during artificial stimulation of peripheral nerves. PLoS Comput Biol. Forthcoming 2020. DOI 10.1371/journal.pcbi.1007826."
+ },
+ "class_id": 19,
+ "created": "2020-04-15T18:11:51.663",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263988,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183995,
+ "object_name": "Ephaptic coupling"
+ },
+ {
+ "object_id": 230581,
+ "object_name": "Stimulus selectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266758,
+ "object_name": "Capllonch-Juan M, Sepulveda F (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Model of peripheral nerve with ephaptic coupling (Capllonch-Juan & Sepulveda 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We built a computational model of a peripheral nerve trunk in which the interstitial space between the fibers and the tissues is modelled using a resistor network, thus enabling distance-dependent ephaptic coupling between myelinated axons and between fascicles as well. We used the model to simulate a) the stimulation of a nerve trunk model with a cuff electrode, and b) the propagation of action potentials along the axons. Results were used to investigate the effect of ephaptic interactions on recruitment and selectivity stemming from artificial (i.e., neural implant) stimulation and on the relative timing between action potentials during propagation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263988",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mcjrcmc@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Miguel Capllonch-Juan"
+ },
+ "ver_date": "2020-04-15T19:05:45.913",
+ "ver_number": 2
+ },
+ "263992": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Meijer G, Marchesi P, Mejias J, Montijn J, Lansink C, Pennartz C (2020) Higher-order visual cortex shows stronger neural correlates of visual and multisensory detection behavior compared to primary visual cortex. CELL-REPORTS-D-19-02481. http://dx.doi.org/10.2139/ssrn.3414701"
+ },
+ "class_id": 19,
+ "created": "2020-04-17T11:46:48.083",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263992,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 249591,
+ "object_name": "Mejias, Jorge [j.f.mejias at uva.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 264166,
+ "object_name": "Meijer G, Marchesi P, Mejias J, Montijn, J, Lansink, C, Pennartz C (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "V1 and AL spiking neural network for visual contrast response in mouse (Meijer et al. 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code contains the computational model included in Meijer et al., Cell Reports 2020, which reproduces some of the main experimental findings reported --most notably, the higher sensory response of secondary visual areas compared to that of primary visual areas for moderate visual contrast levels in mice. The model is based on a two-area spiking neural network with embedded short-term synaptic plasticity mechanisms."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263992",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "j.f.mejias@uva.nl"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jorge Mejias"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-04-18T11:21:34.517",
+ "ver_number": 5
+ },
+ "263995": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.eneuro.org/content/eneuro/early/2019/09/23/ENEURO.0343-19.2019.full.pdf"
+ },
+ "class_id": 19,
+ "created": "2020-04-17T14:03:56.507",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 263995,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266835,
+ "object_name": "Hamid E, Church E, Alford S (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2835,
+ "object_name": "MCell"
+ }
+ ]
+ },
+ "name": "Action potential-evoked Ca2+ signals in CA1 pyramidal cell presynaptic terminals (Hamid et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The attached file contains models for 4 different MCell simulations of the same presynaptic terminal model. \r\n\r\nCalbindin22_40uM_files - model of Ca entry, buffering and extrusion from a single varicosity of a CA1 pyramidal neuron axon containing 40 \u00b5M simulated calbindin28K (binding constants from Nagerl et al 2000, Biophys J 79:3009\u20133018. doi:10.1016/S0006-3495(00)76537-4 pmid:11106608. This model represents calbindin28K with 2 low and 2 intermediate affinity Ca2+ binding sites.\r\n\r\nCalbindin31_40uM_files - similar to above but with calbindin28K with 1 low and 3 intermediate affinity Ca2+ binding sites.\r\n\r\nCalmodulin_40uM_files - model of Ca2+ using calmodulin and the principle buffer, again at 40 \u00b5M (from Faas et al 2011, Nat Neurosci 14:301\u2013304. doi:10.1038/nn.2746 pmid:21258328.\r\n\r\nPaired_Pulses - model used to simulate paired pulses of Ca2+ entry to these presynaptic terminals\r\n\r\nThese models were based on experimentally quantified action potential-evoked Calcium entry to presynaptic varicosities of CA1 pyramidal neurons. How Ca enters, diffuses, is buffered and is pumped out of the cytosol was first determined. The study used Calcium-sensitive dyes of different affinities over a range of concentrations to buffer Calcium. Following this quantification we used these data to construct Monte Carlo simulations of the Calcium transients to determine dynamics of the Calcium signal at spatiotemporal resolutions not possible with imaging methods. From these simulations we have demonstrated very high concentrations, short duration Calcium transients that are dominated by Calcium diffusion within tens of nanometers of Calcium channels. We have quantified channel densities, constrained buffer identities and determined properties of presynaptic Calcium during trains of action potentials. \r\n\r\nThis published work can be found at: \r\n\r\nEdaeni Hamid, Emily Church and Simon Alford Quantitation and Simulation of Single Action Potential-Evoked Ca2+ Signals in CA1 Pyramidal Neuron Presynaptic Terminals\r\neNeuro 24 September 2019, 6 (5) ENEURO.0343-19.2019; DOI: https://doi.org/10.1523/ENEURO.0343-19.2019"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/263995",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-11-04T12:39:12.167",
+ "ver_number": 7
+ },
+ "264177": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.jneurosci.org/content/early/2019/09/11/JNEUROSCI.0901-19.2019.abstract"
+ },
+ "class_id": 19,
+ "created": "2020-04-18T14:24:05.573",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264177,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266979,
+ "object_name": "Iacobucci GJ, Popescu GK (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Spatial coupling tunes NMDA receptor responses via Ca2+ diffusion (Iacobucci and Popescu 2019)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code implements a coupled markov model for analysis of positive or negative ion channel coupling from measured unitary currents in patch clamp recordings see our paper: Spatial Coupling Tunes NMDA Receptor Responses via Ca2+ Diffusion Gary J. Iacobucci and Gabriela K. Popescu Journal of Neuroscience 6 November 2019, 39 (45) 8831-8844; DOI: https://doi.org/10.1523/JNEUROSCI.0901-19.2019"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264177",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2021-03-24T11:09:27.797",
+ "ver_number": 8
+ },
+ "264514": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.sciencedirect.com/science/article/pii/S0006899319303592"
+ },
+ "class_id": 19,
+ "created": "2020-04-20T11:48:05.44",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264514,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 264606,
+ "object_name": "Spratling, MW [michael.spratling at kcl.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ },
+ {
+ "object_id": 150701,
+ "object_name": "Posture and locomotion"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 264605,
+ "object_name": "Spratling MW (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 223029,
+ "object_name": "Predictive Coding Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Fitting predictive coding to the neurophysiological data (Spratling 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "MATLAB code for simulating the response properties of V1 mismatch neurons and for testing the ability of predictive coding algorithms to scale. This code performs the experiments described in:\r\nSpratling MW (2019) Abstract:\r\n\"Recent neurophysiological data showing the effects of locomotion on neural activity in mouse primary visual cortex has been interpreted as providing strong support for the predictive coding account of cortical function. Specifically, this work has been interpreted as providing direct evidence that prediction-error, a distinguishing property of predictive coding, is encoded in cortex. This article evaluates these claims and highlights some of the discrepancies between the proposed predictive coding model and the neuro-biology. Furthermore, it is shown that the model can be modified so as to fit the empirical data more successfully.\"\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264514",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Spratling, MW"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2020-04-23T14:36:01.45",
+ "ver_number": 20
+ },
+ "264519": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://www.pnas.org/content/early/2018/09/12/1806486115.short"
+ },
+ "class_id": 19,
+ "created": "2020-04-20T11:56:35.933",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264519,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266499,
+ "object_name": "Tatsuki, Fumiya [tatsuki-tky at umin.ac.jp]"
+ },
+ {
+ "object_id": 266500,
+ "object_name": "Yoshida, Kensuke [kensuyoshida-tky at umin.ac.jp]"
+ },
+ {
+ "object_id": 266501,
+ "object_name": "Yamada, Tetsuya "
+ },
+ {
+ "object_id": 266502,
+ "object_name": "Katsumata, Takahiro [alextfkd at m.u-tokyo.ac.jp]"
+ },
+ {
+ "object_id": 266505,
+ "object_name": "Shi, Shoi [sshoi0322-tky at umin.ac.jp] "
+ },
+ {
+ "object_id": 266503,
+ "object_name": "Ueda, R, Hiroki [hiroki.ueda at nifty.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 185343,
+ "object_name": "Persistent activity"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 266504,
+ "object_name": "Sleep-Wake transition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266480,
+ "object_name": "Tatsuki F, Sunagawa GA, Shi S, Susaki EA, Yukinaga H, Perrin D, Sumiyama K, Ukai-Tadenuma M, Fujishima H, Ohno R, Tone D, Ode KL, Matsumoto K, Ueda HR (2016)"
+ },
+ {
+ "object_id": 266482,
+ "object_name": "Yoshida K, Shi S, Ukai-Tadenuma M, Fujishima H, Ohno RI, Ueda HR (2018)"
+ },
+ {
+ "object_id": 266485,
+ "object_name": "Rasmussen R, Jensen MH, Heltberg ML (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Ave. neuron model for slow-wave sleep in cortex Tatsuki 2016 Yoshida 2018 Rasmussen 2017 (all et al)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Averaged neuron(AN) model is a conductance-based (Hodgkin-Huxley type) neuron model which includes a mean-field approximation of a population of neurons. You can simulate previous models (AN model: Tatsuki et al., 2016 and SAN model: Yoshida et al., 2018), and various models with 'X model' based on channel and parameter modules. Also, intracellular and extracellular ion concentration can be taken into consideration using the Nernst equation (See Ramussen et al., 2017)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264519",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Sleep-Wake transition"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "INMDA, IAMPA"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tatsuki, Fumiya\r\nYoshida, Kensuke\r\nYamada, Tetsuya\r\nKatsumata, Takahiro\r\nUeda, R, Hiroki"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-05-28T11:34:32.353",
+ "ver_number": 16
+ },
+ "264539": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://iopscience.iop.org/article/10.1088/1741-2552/ab1685/meta"
+ },
+ "class_id": 19,
+ "created": "2020-04-21T18:37:20.073",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264539,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267091,
+ "object_name": "Lemaire T, Neufeld E, Kuster N, Micera S (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "MultiScale Optimized Neuronal Intramembrane Cavitation (SONIC) model (Lemaire et al. 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 182735,
+ "object_name": "Subthalamic nucleus principal GABA cell"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ },
+ {
+ "object_id": 97753,
+ "object_name": "Neocortex fast spiking (FS) interneuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Jupyter Notebooks to reproduce data and figures of the SONIC paper (Lemaire et al. 2019) describing a computationally efficient variant to simulate ultrasound neuromodulation by intramembrane cavitation in cortical neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264539",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ultrasound"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Th\u00e9o Lemaire (theo.lemaire@epfl.ch)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2021-08-02T14:24:55.54",
+ "ver_number": 11
+ },
+ "264591": {
+ "biosimulations": {
+ "value": "modeldb-264591"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Verma P, Kienle A, Flockerzi D, Ramkrishna D. Using Bifurcation Theory for Exploring Pain. Industrial & Engineering Chemistry Research. 2019.\r\n\r\nVerma P, Kienle A, Flockerzi D, Ramkrishna D. Computational analysis of a 9D model for a small DRG neuron. arXiv preprint arXiv:2001.04915. 2020 Jan 14."
+ },
+ "class_id": 19,
+ "created": "2020-04-22T21:28:34.093",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ },
+ {
+ "object_id": 92089,
+ "object_name": "Nav1.8 SCN10A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "icg_channel_details": {
+ "attr_id": 640,
+ "value": [
+ {
+ "object_id": 264592,
+ "object_name": "ICG Detail_264591"
+ },
+ {
+ "object_id": 264593,
+ "object_name": "ICG Detail_264591"
+ }
+ ]
+ },
+ "id": 264591,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 264604,
+ "object_name": "Verma, Parul [parulv.iitb at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 264603,
+ "object_name": "Verma P, Kienle A, Flockerzi D, Ramkrishna D (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "A computational model of a small DRG neuron to explore pain (Verma et al. 2019, 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a Hodgkin-Huxley type model for a small DRG neuron consisting of four voltage-gated ion channels: sodium channels 1.7 and 1.8, delayed rectifier potassium, and A-type transient potassium channels. This model was used to explore the dynamics of this neuron using bifurcation theory, with the motive to investigate pain since small DRG neuron is a pain-sensing neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264591",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Leak"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "parulv.iitb@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Parul Verma"
+ },
+ "ver_date": "2020-05-21T14:11:20.997",
+ "ver_number": 8
+ },
+ "264594": {
+ "class_id": 19,
+ "created": "2020-04-23T09:36:52.76",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264594,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266652,
+ "object_name": "Sharma SK, Mondal A, Mondal A, Upadhyay RK, Hens C (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Leech Heart Interneuron model (Sharma et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52410,
+ "object_name": "Leech heart interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Fractional order Leech heart interneuron model is investigated. Different firing properties are explored. \r\nIn this article, we investigate the alternation of spiking and bursting phenomena of an uncoupled and coupled fractional Leech-Heart (L-H) neurons. We show that a complete graph of heterogeneous de-synchronized neurons in the backdrop of diverse memory settings (a mixture of integer and fractional exponents) can eventually lead to bursting with the formation of cluster\r\nsynchronization over a certain threshold of coupling\r\nstrength, however, the uncoupled L-H neurons cannot\r\nreveal bursting dynamics. Using the stability analysis\r\nin fractional domain, we demarcate the parameter\r\nspace where the quiescent or steady-state emerges\r\nin uncoupled L-H neuron. Finally, a reduced-order\r\nmodel is introduced to capture the activities of the\r\nlarge network of fractional-order model neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264594",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "arghamondalb1@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Argha Mondal"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115958,
+ "object_name": "Leech"
+ }
+ ]
+ },
+ "ver_date": "2020-06-24T12:36:14.667",
+ "ver_number": 13
+ },
+ "264597": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Zerlaut, Y., Chemla, S., Chavane, F. et al. J Comput Neurosci (2017). https://doi.org/10.1007/s10827-017-0668-2"
+ },
+ "class_id": 19,
+ "created": "2020-04-23T13:30:18.77",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264597,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 264598,
+ "object_name": "Soler, Amelie [amelie.soler at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 234994,
+ "object_name": "Zerlaut Y, Chemla S, Chavane F, Destexhe A (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 116010,
+ "object_name": "PyNN"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Mesoscopic dynamics from AdEx recurrent networks (Zerlaut et al JCNS 2018) (PyNN)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "PyNN simulations for Zerlaut et al 2018)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264597",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yann.zerlaut@iit.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yann Zerlaut"
+ },
+ "ver_date": "2020-04-24T11:35:26.89",
+ "ver_number": 9
+ },
+ "264628": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5468411/"
+ },
+ "class_id": 19,
+ "created": "2020-04-23T15:33:08.473",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264628,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 265594,
+ "object_name": "Mirzakhalili, Ehsan "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 185343,
+ "object_name": "Persistent activity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265581,
+ "object_name": "Mirzakhalili E, Gourgou E, Booth V, Epureanu B (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Synaptic Impairment, Robustness of Excitatory NNs w/ Different Topologies (Mirzakhalili et al 2017)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Synaptic deficiencies are a known hallmark of neurodegenerative diseases, but the diagnosis of impaired synapses on the cellular level is not an easy task. Nonetheless, changes in the system-level dynamics of neuronal networks with damaged synapses can be detected using techniques that do not require high spatial resolution. This paper investigates how the structure/topology of neuronal networks influences their dynamics when they suffer from synaptic loss. We study different neuronal network structures/topologies by specifying their degree distributions. The modes of the degree distribution can be used to construct networks that consist of rich clubs and resemble small world networks, as well. We define two dynamical metrics to compare the activity of networks with different structures: persistent activity (namely, the self-sustained activity of the network upon removal of the initial stimulus) and quality of activity (namely, percentage of neurons that participate in the persistent activity of the network). Our results show that synaptic loss affects the persistent activity of networks with bimodal degree distributions less than it affects random networks. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264628",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-05-14T13:54:23.61",
+ "ver_number": 12
+ },
+ "264834": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://onlinelibrary.wiley.com/doi/abs/10.1002/ana.25438"
+ },
+ "class_id": 19,
+ "created": "2020-04-24T11:22:54.19",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264834,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 265503,
+ "object_name": "Bryson, Alex [alexander.bryson at florey.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265502,
+ "object_name": "Berecki G, Bryson A, Terhag J, Maljevic S, Gazina EV, Hill SL, Petrou S (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 245004,
+ "object_name": "BluePyOpt\r\n"
+ }
+ ]
+ },
+ "name": "SCN1A gain-of-function in early infantile encephalopathy (Berecki et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"OBJECTIVE:\r\nTo elucidate the biophysical basis underlying the distinct and severe clinical presentation in patients with the recurrent missense SCN1A variant, p.Thr226Met. Patients with this variant show a well-defined genotype-phenotype correlation and present with developmental and early infantile epileptic encephalopathy that is far more severe than typical SCN1A Dravet syndrome.\r\n\r\nMETHODS:\r\nWhole cell patch clamp and dynamic action potential clamp were used to study T226M Nav 1.1 channels expressed in mammalian cells. Computational modeling was used to explore the neuronal scale mechanisms that account for altered action potential firing.\r\n\r\nRESULTS:\r\nT226M channels exhibited hyperpolarizing shifts of the activation and inactivation curves and enhanced fast inactivation. Dynamic action potential clamp hybrid simulation showed that model neurons containing T226M conductance displayed a left shift in rheobase relative to control. At current stimulation levels that produced repetitive action potential firing in control model neurons, depolarization block and cessation of action potential firing occurred in T226M model neurons. Fully computationally simulated neuron models recapitulated the findings from dynamic action potential clamp and showed that heterozygous T226M models were also more susceptible to depolarization block.\r\n\r\n...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264834",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Bryson, Alex"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-05-02T12:18:45.497",
+ "ver_number": 12
+ },
+ "264842": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0230327"
+ },
+ "class_id": 19,
+ "created": "2020-04-24T13:16:58.933",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264842,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 262699,
+ "object_name": "O`Halloran DM (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Opposing roles for Na+/Ca2+ exchange and Ca2+-activated K+ currents during STDP (O`Halloran 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Sodium Calcium exchanger (NCX) proteins utilize the electrochemical gradient of Na+ to generate Ca2+ efflux (forward mode) or influx (reverse mode). In mammals, there are three unique NCX encoding genes-NCX1, NCX2, and NCX3, that comprise the SLC8A family, and mRNA from all three exchangers is expressed in hippocampal pyramidal cells. Furthermore, mutant ncx2-/- and ncx3-/- mice have each been shown to exhibit altered long-term potentiation (LTP) in the hippocampal CA1 region due to delayed Ca2+ clearance after depolarization that alters synaptic transmission. In addition to the role of NCX at the synapse of hippocampal subfields required for LTP, the three NCX isoforms have also been shown to localize to the dendrite of hippocampal pyramidal cells. In the case of NCX1, it has been shown to localize throughout the basal and apical dendrite of CA1 neurons where it helps compartmentalize Ca2+ between dendritic shafts and spines. Given the role for NCX and calcium in synaptic plasticity, the capacity of NCX splice-forms to influence backpropagating action potentials has clear consequences for the induction of spike-timing dependent synaptic plasticity (STDP). To explore this, we examined the effect of NCX localization, density, and allosteric activation on forward and back propagating signals and, next employed a STDP paradigm to monitor the effect of NCX on plasticity using back propagating action potentials paired with EPSPs. From our simulation studies we identified a role for the sodium calcium exchange current in normalizing STDP, and demonstrate that NCX is required at the postsynaptic site for this response. We also screened other mechanisms in our model and identified a role for the Ca2+ activated K+ current at the postsynapse in producing STDP responses. Together, our data reveal opposing roles for the Na+/Ca2+ exchanger current and the Ca2+ activated K+ current in setting STDP.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264842",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-06-03T12:16:28.18",
+ "ver_number": 4
+ },
+ "264844": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.mdpi.com/2313-7673/4/1/21/pdf"
+ },
+ "class_id": 19,
+ "created": "2020-04-24T13:19:14.403",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 264844,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267676,
+ "object_name": "Deng K, Szczecinski NS, Arnold D, Andrada E, Fischer MS, Quinn RD, Hunt AJ (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150700,
+ "object_name": "AnimatLab v1"
+ }
+ ]
+ },
+ "name": "Neuromechanical Model of Rat Hindlimb Walking with Two-Layer CPGs (Deng et al, 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A neuromechanical model of the rat hindlimb and locomotor circuitry built and run in AnimatLab v1. We use separate rhythm generators and pattern formation layers to activate antagonistic muscle pairs about each joint in the sagittal plane. The model replicates the resetting and non-resetting deletions observed in the animal."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/264844",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ },
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2023-02-24T09:23:29.23",
+ "ver_number": 5
+ },
+ "265511": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Global and Multiplexed Dendritic Computations\r\nunder In Vivo-like Conditions"
+ },
+ "class_id": 19,
+ "created": "2020-05-04T22:27:09.577",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 265511,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 265530,
+ "object_name": "Ujfalussy, Bal\u00e1zs B. [balazs.ujfalussy at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259765,
+ "object_name": "Ujfalussy BB, Makara JK, Lengyel M, Branco T (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 127324,
+ "object_name": "R (web link to model)"
+ }
+ ]
+ },
+ "name": "Global and multiplexed dendritic computations under in vivo-like conditions (Ujfalussy et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The input-output transformation of neurons under in vivo conditions is unknown. Ujfalussy et al. use a model-based approach to show that linear integration with a single global dendritic nonlinearity can accurately predict the\r\nresponse of neurons to naturalistic synaptic input patterns.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/265511",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2020-05-06T11:05:39.107",
+ "ver_number": 7
+ },
+ "265523": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://academic.oup.com/cercor/advance-article-abstract/doi/10.1093/cercor/bhz334/5741374"
+ },
+ "class_id": 19,
+ "created": "2020-05-05T18:09:55.743",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 265523,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223060,
+ "object_name": "Guet-McCreight, Alexandre [alexandre.guet.mccreight at mail.utoronto.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182690,
+ "object_name": "Spatial Navigation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265570,
+ "object_name": "Luo X, Guet-McCreight A, Villette V, Francavilla R, Marino B, Chamberland S, Skinner FK, Topolnik L (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Hippocampus CA1 Interneuron Specific 3 (IS3) in vivo-like virtual NN simulations (Luo et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 249699,
+ "object_name": "Hippocampal CA1 CR/VIP cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Disinhibition is a widespread circuit mechanism for information selection and transfer. In the hippocampus, disinhibition of principal cells is provided by the interneuron-specific interneurons that express the vasoactive intestinal polypeptide (VIP-IS) and innervate selectively inhibitory interneurons. By combining optophysiological experiments with computational models, we determined the impact of synaptic inputs onto the network state-dependent recruitment of VIP-IS cells. We found that VIP-IS cells fire spikes in response to both the Schaffer collateral and the temporoammonic pathway activation. Moreover, by integrating their intrinsic and synaptic properties into computational models, we predicted recruitment of these cells between the rising phase and peak of theta oscillation and during ripples. Two-photon Ca2+-imaging in awake mice supported in part the theoretical predictions, revealing a significant speed modulation of VIP-IS cells and their preferential albeit delayed recruitment during theta-run epochs, with estimated firing at the rising phase and peak of the theta cycle. However, it also uncovered that VIP-IS cells are not activated during ripples. Thus, given the preferential theta-modulated firing of VIP-IS cells in awake hippocampus, we postulate that these cells may be important for information gating during spatial navigation and memory encoding.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/265523",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Kdrf"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Interneuron Specific 3"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-05-07T18:00:08.703",
+ "ver_number": 8
+ },
+ "265528": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1007822"
+ },
+ "class_id": 19,
+ "created": "2020-05-05T18:14:04.787",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 265528,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266441,
+ "object_name": "Cakan Caglar [cakan at ni.tu-berlin.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266438,
+ "object_name": "Cakan C, Obermayer K (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 266440,
+ "object_name": "neurolib (web link to model)"
+ }
+ ]
+ },
+ "name": "Mean-field models of neural populations under electrical stimulation (Cakan & Obermayer 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Weak electrical inputs to the brain in vivo using transcranial electrical stimulation or in isolated cortex in vitro can affect the dynamics of the underlying neural populations. However, it is poorly understood what the exact mechanisms are that modulate the activity of neural populations as a whole and why the responses are so diverse in stimulation experiments. Despite this, electrical stimulation techniques are being developed for the treatment of neurological diseases in humans. To better understand these interactions, it is often necessary to simulate and analyze very large networks of neurons, which can be computationally demanding. In this theoretical paper, we present a reduced model of coupled neural populations that represents a piece of cortical tissue. This efficient model retains the dynamical properties of the large network of neurons it is based on while being several orders of magnitude faster to simulate. Due to the biophysical properties of the neuron model, an electric field can be coupled to the population. We show that weak electric fields often used in stimulation experiments can lead to entrainment of neural oscillations on the population level, and argue that the responses critically depend on the dynamical state of the neural system."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/265528",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "neurolib"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-05-22T16:37:19.92",
+ "ver_number": 8
+ },
+ "265540": {
+ "class_id": 19,
+ "created": "2020-05-06T13:48:20.403",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 112844,
+ "object_name": "I Q"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122819,
+ "object_name": "Cav2.1 CACNA1A"
+ },
+ {
+ "object_id": 122820,
+ "object_name": "Cav2.2 CACNA1B"
+ },
+ {
+ "object_id": 122810,
+ "object_name": "Cav3.1 CACNA1G"
+ },
+ {
+ "object_id": 122809,
+ "object_name": "Cav3.2 CACNA1H"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 265540,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 118393,
+ "object_name": "Hjorth, Johannes [hjorth at csc.kth.se]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265539,
+ "object_name": "Hjorth JJJ, Kozlov A, Carannante I, Frost Nyl\u00e9n J, Lindroos R, Johansson Y, Tokarska A, Dorst MC, Suryanarayana SM, Silberberg G, Hellgren Kotaleski J, Grillner S (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 266927,
+ "object_name": "Snudda (web link to model)"
+ }
+ ]
+ },
+ "name": "The microcircuits of striatum in silico (Hjorth et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 7021,
+ "object_name": "Neostriatum interneuron ACh cell"
+ },
+ {
+ "object_id": 182691,
+ "object_name": "Neostriatum interneuron gaba/parvalbumin GABA cell"
+ },
+ {
+ "object_id": 182709,
+ "object_name": "Neostriatum interneuron SOM/NOS GABA cell"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ },
+ {
+ "object_id": 118395,
+ "object_name": "Neostriatum fast spiking interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Our aim is to reconstruct a full-scale mouse striatal cellular level model to provide a framework to integrate and interpret striatal data. We represent the main striatal neuronal subtypes, the two types of projection neurons (dSPNs and iSPNs) giving rise to the direct and indirect pathways, the fast-spiking interneurons, the low threshold spiking interneurons, and the cholinergic interneurons as detailed compartmental models, with properties close to their biological counterparts. Both intrastriatal and afferent synaptic inputs (cortex, thalamus, dopamine system) are optimized against existing data, including short-term plasticity. This model platform will be used to generate new hypotheses on striatal function or network dynamic phenomena.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/265540",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2021-02-16T16:30:12.777",
+ "ver_number": 11
+ },
+ "265584": {
+ "citation": {
+ "attr_id": 391,
+ "value": "32385389"
+ },
+ "class_id": 19,
+ "created": "2020-05-11T03:20:17.277",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 265584,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 229586,
+ "object_name": "Masoli, Stefano [stefano.masoli at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265587,
+ "object_name": "Masoli S, Tognolina M, Laforenza U, Moccia F, D'Angelo E (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Cerebellar granule cell (Masoli et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The cerebellar granule cells (GrCs) are classically described as a homogeneous neuronal population discharging \r\nregularly without adaptation. We show that GrCs in fact generate diverse response patterns to current injection \r\nand synaptic activation, ranging from adaptation to acceleration of firing. Adaptation was predicted by parameter \r\noptimization in detailed computational models based on available knowledge on GrC ionic channels. The models also \r\npredicted that acceleration required additional mechanisms. We found that yet unrecognized TRPM4 currents specifically \r\naccounted for firing acceleration and that adapting GrCs outperformed accelerating GrCs in transmitting high-frequency \r\nmossy fiber (MF) bursts over a background discharge. This implied that GrC subtypes identified by their \r\nelectroresponsiveness corresponded to specific neurotransmitter release probability values. Simulations showed \r\nthat fine-tuning of pre- and post-synaptic parameters generated effective MF-GrC transmission channels, which \r\ncould enrich the processing of input spike patterns and enhance spatio-temporal recoding at the cerebellar input stage.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/265584",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stefano.masoli@unipv.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Stefano Masoli"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-11-14T10:47:03.207",
+ "ver_number": 14
+ },
+ "265591": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Muddapu, V. R. & Chakravarthy, V. S. Influence of Energy Deficiency on the Molecular Processes of Substantia Nigra Pars Compacta Cell for Understanding Parkinsonian Neurodegeneration - A Comprehensive Biophysical Computational Model. bioRxiv 2020.02.18.950337 (2020). doi:10.1101/2020.02.18.950337"
+ },
+ "class_id": 19,
+ "created": "2020-05-12T08:06:41.21",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 88210,
+ "object_name": "I_Na,Ca"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 265591,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 251109,
+ "object_name": "Muddapu, Vignayanandam R. [vignan.0009 at gmail.com]"
+ },
+ {
+ "object_id": 251110,
+ "object_name": "Chakravarthy, Srinivasa V. [schakra at iitm.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 144991,
+ "object_name": "Apoptosis"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 245160,
+ "object_name": "Neurotransmitter dynamics"
+ },
+ {
+ "object_id": 227131,
+ "object_name": "Pacemaking mechanism"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266947,
+ "object_name": "Muddapu VR, Chakravarthy VS (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Single-cell comprehensive biophysical model of SN pars compacta (Muddapu & Chakravarthy 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Parkinson\u2019s disease (PD) is caused by the loss of dopaminergic cells in substantia nigra pars compacta (SNc), the decisive cause of this inexorable cell loss is not clearly elucidated. We hypothesize that \u201cEnergy deficiency at a sub-cellular/cellular/systems-level can be a common underlying cause for SNc cell loss in PD.\u201d Here, we propose a comprehensive computational model of SNc cell which helps us to understand the pathophysiology of neurodegeneration at subcellular-level in PD. We were able to show see how deficits in supply of energy substrates (glucose and oxygen) lead to a deficit in ATP, and furthermore, deficits in ATP are the common factor underlying the pathological molecular-level changes including alpha-synuclein aggregation, ROS formation, calcium elevation, and dopamine dysfunction. The model also suggests that hypoglycemia plays a more crucial role in leading to ATP deficits than hypoxia. We believe that the proposed model provides an integrated modelling framework to understand the neurodegenerative processes underlying PD."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/265591",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vignan.0009@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Vignayanandam R Muddapu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2021-03-01T17:11:22.69",
+ "ver_number": 2
+ },
+ "265592": {
+ "class_id": 19,
+ "created": "2020-05-13T12:53:36.797",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 265592,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 265583,
+ "object_name": "Billeh YN, Cai B, Gratiy SL, Dai K, Iyer R, Gouwens NW, Abbasi-Asl R, Jia X, Siegle JH, Olsen SR, Koch C, Mihalas S, Arkhipov A (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 225554,
+ "object_name": "NEST (web link to model)"
+ }
+ ]
+ },
+ "name": "Systematic integration of data into multi-scale models of mouse primary V1 (Billeh et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 7387,
+ "object_name": "Neocortex V1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 230185,
+ "object_name": "Neocortex V1 interneuron chandelier SOM GABA cell"
+ },
+ {
+ "object_id": 230186,
+ "object_name": "Neocortex V1 L4 stellate GLU cell"
+ },
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ },
+ {
+ "object_id": 184132,
+ "object_name": "Neocortex layer 4 interneuron"
+ },
+ {
+ "object_id": 184128,
+ "object_name": "Neocortex layer 4 pyramidal cell"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ },
+ {
+ "object_id": 142232,
+ "object_name": "Neocortex spiking low threshold (LTS) neuron"
+ },
+ {
+ "object_id": 142230,
+ "object_name": "Neocortex spiking regular (RS) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Highlights\r\n\u2022\r\nTwo network models of the mouse primary visual cortex are developed and released\r\n\r\n\u2022\r\nOne uses compartmental-neuron models and the other point-neuron models\r\n\r\n\u2022\r\nThe models recapitulate observations from in vivo experimental data\r\n\r\n\u2022\r\nSimulations identify experimentally testable predictions about cortex circuitry\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/265592",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2020-05-13T12:54:51.687",
+ "ver_number": 3
+ },
+ "266415": {
+ "class_id": 19,
+ "created": "2020-05-20T11:42:44.5",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266415,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 250946,
+ "object_name": "Rothman JS, Silver RA (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 266414,
+ "object_name": "IGOR Pro (web link to model)"
+ }
+ ]
+ },
+ "name": "NeuroMatic: software for acquisition, analysis and simulation of e-phys data (Rothman & Silver 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Acquisition, analysis and simulation of electrophysiological properties of the nervous system require multiple software packages. This makes it difficult to conserve experimental metadata and track the analysis performed. It also complicates certain experimental approaches such as online analysis. To address this, we developed NeuroMatic, an open-source software toolkit that performs data acquisition (episodic, continuous and triggered recordings), data analysis (spike rasters, spontaneous event detection, curve fitting, stationarity) and simulations (stochastic synaptic transmission, synaptic short-term plasticity, integrate-and-fire and Hodgkin-Huxley-like single-compartment models). The merging of a wide range of tools into a single package facilitates a more integrated style of research, from the development of online analysis functions during data acquisition, to the simulation of synaptic conductance trains during dynamic-clamp experiments. Moreover, NeuroMatic has the advantage of working within Igor Pro, a platform-independent environment that includes an extensive library of built-in functions, a history window for reviewing the user's workflow and the ability to produce publication-quality graphics. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266415",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-05-20T11:44:12.063",
+ "ver_number": 2
+ },
+ "266419": {
+ "class_id": 19,
+ "created": "2020-05-20T19:46:41.403",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266419,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206387,
+ "object_name": "Morozova, Ekaterina O [emorozov at indiana.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267636,
+ "object_name": "Morozova E, Faure P, Gutkin B, Lapish C, Kuznetsov A (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Cholinergic and nicotinic regulation of DA neuron firing (Morozova et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 189152,
+ "object_name": "Ventral tegmental area dopamine neuron"
+ },
+ {
+ "object_id": 206389,
+ "object_name": "Ventral tegmental area GABA neuron "
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model describes the modulation of firing properties of DA neurons by acetylcholine (ACh) and nicotine in 5 cases: knock-out of \u00df2-containing nAChRs, \u00df2-containing nAChRs only on DA neurons, the nAChRs only on GABA neurons, the nAChRs on both DA and GABA neurons and \u201cwild\u201d type (the AChRs on DA, GABA and Glu neurons). The distinct responses to ACh and nicotine could be explained by distinct temporal patterns of these inputs: pulsatile vs. continuous."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266419",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "morozova.e.o@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ekaterina O Morozova"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ }
+ ]
+ },
+ "ver_date": "2023-02-09T10:12:36.237",
+ "ver_number": 8
+ },
+ "266435": {
+ "citation": {
+ "attr_id": 391,
+ "value": "http://search.proquest.com/openview/1ca70c32901c3feb8636b41971d7fdd8/1?pq-origsite=gscholar"
+ },
+ "class_id": 19,
+ "created": "2020-05-22T00:07:19.637",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266435,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266473,
+ "object_name": "Rich, Scott [sbrich at umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266472,
+ "object_name": "Rich S, Chameh HM, Rafiee M, Ferguson K, Skinner FK, Valiante TA (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Inhibitory network bistability explains increased activity prior to seizure onset (Rich et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... the mechanisms predisposing an inhibitory network toward increased activity, specifically prior to ictogenesis, without a permanent change to inputs to the system remain unknown. We address this question by comparing simulated inhibitory networks containing control interneurons and networks containing hyperexcitable interneurons modeled to mimic treatment with 4-Aminopyridine (4-AP), an agent commonly used to model seizures in vivo and in vitro. Our in silico study demonstrates that model inhibitory networks with 4-AP interneurons are more prone than their control counterparts to exist in a bistable state in which asynchronously firing networks can abruptly transition into synchrony driven by a brief perturbation. This transition into synchrony brings about a corresponding increase in overall firing rate. We further show that perturbations driving this transition could arise in vivo from background excitatory synaptic activity in the cortex. Thus, we propose that bistability explains the increase in interneuron activity observed experimentally prior to seizure via a transition from incoherent to coherent dynamics. Moreover, bistability explains why inhibitory networks containing hyperexcitable interneurons are more vulnerable to this change in dynamics, and how such networks can undergo a transition without a permanent change in the drive. ...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266435",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Scott Rich"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Inhibitory Network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "ver_date": "2020-05-26T08:56:49.17",
+ "ver_number": 5
+ },
+ "266488": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Wybo et al 2019"
+ },
+ "class_id": 19,
+ "created": "2020-05-27T10:08:31.953",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266488,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266489,
+ "object_name": "Wybo, Willem A.M. "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3640,
+ "object_name": "Influence of Dendritic Geometry"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266487,
+ "object_name": "Wybo WAM, Torben-Nielsen B, Nevian T, Gewaltig MO (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 53577,
+ "object_name": "C or C++ program (web link to model)"
+ }
+ ]
+ },
+ "name": "Electrical compartmentalization in neurons (Wybo et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The dendritic tree of neurons plays an important role in information processing in the brain. While it is thought that dendrites require independent subunits to perform most of their computations, it is still not understood how they compartmentalize into functional subunits. Here, we show how these subunits can be deduced from the properties of dendrites. We devised a formalism that links the dendritic arborization to an impedance-based tree graph and show how the topology of this graph reveals independent subunits. This analysis reveals that cooperativity between synapses decreases slowly with increasing electrical separation and thus that few independent subunits coexist. We nevertheless find that balanced inputs or shunting inhibition can modify this topology and increase the number and size of the subunits in a context-dependent manner. We also find that this dynamic recompartmentalization can enable branch-specific learning of stimulus features. Analysis of dendritic patch-clamp recording experiments confirmed our theoretical predictions.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266488",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-05-27T11:16:59.12",
+ "ver_number": 5
+ },
+ "266492": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Hokanson et al 2018"
+ },
+ "class_id": 19,
+ "created": "2020-05-27T11:34:19.837",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266492,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266491,
+ "object_name": "Hokanson, James A. [jim.hokanson at duke.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266490,
+ "object_name": "Hokanson JA, Gaunt RA, Weber DJ (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Neural recruitment during synchronous multichannel microstimulation (Hokanson et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ...The effects of field interactions on neuronal recruitment depend on several factors, which have been studied extensively at the macro-scale but have been overlooked in the case of high density arrays. Here, we report that field interactions can significantly affect neural recruitment, even with low amplitude stimulation. We created a computational model of peripheral nerve axons to estimate stimulation parameters sufficient to generate neural recruitment during synchronous and asynchronous stimulation on two microelectrodes located within the peripheral nerve. Across a range of stimulus amplitudes, the model predicted that synchronous stimulation on adjacent electrodes (400 \u00b5m separation), would recruit 2-3 times more neurons than during asynchronous stimulation. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266492",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-05-27T11:37:49.373",
+ "ver_number": 3
+ },
+ "266497": {
+ "class_id": 19,
+ "created": "2020-05-27T12:15:47.337",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266497,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266496,
+ "object_name": "Lei CL, Kellard JA, Hara M, Johnson JD, Rodriguez B, Briant LJB (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Beta-cell hubs maintain Ca2+ oscillations in human and mouse islet simulations (Lei et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Islet \u00df-cells are responsible for secreting all circulating insulin in response to rising plasma glucose concentrations. These cells are a phenotypically diverse population that express great functional heterogeneity. In mice, certain \u00df-cells (termed 'hubs') have been shown to be crucial for dictating the islet response to high glucose, with inhibition of these hub cells abolishing the coordinated Ca2+ oscillations necessary for driving insulin secretion. These \u00df-cell hubs were found to be highly metabolic and susceptible to pro-inflammatory and glucolipotoxic insults. In this study, we explored the importance of hub cells in human by constructing mathematical models of Ca2+ activity in human islets. Our simulations revealed that hubs dictate the coordinated Ca2+ response in both mouse and human islets; silencing a small proportion of hubs abolished whole-islet Ca2+ activity. We also observed that if hubs are assumed to be preferentially gap junction coupled, then the simulations better adhere to the available experimental data. Our simulations of 16 size-matched mouse and human islet architectures revealed that there are species differences in the role of hubs; ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266497",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-05-27T13:42:52.31",
+ "ver_number": 4
+ },
+ "266498": {
+ "class_id": 19,
+ "created": "2020-05-27T21:09:18.293",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266498,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266809,
+ "object_name": "Pelot NA, Catherall DC, Thio BJ, Titus ND, Liang ED, Henriquez CS, Grill WM (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Excitation Properties of Computational Models of Unmyelinated Peripheral Axons (Pelot et al., 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We implemented the single-compartment model of vagal afferents from Schild et al. 1994 and extended the model into a multi-compartment axon, presenting the first C-fiber cable model of a C-fiber vagal afferent. We also implemented the updated parameters from Schild and Kunze 1997. We compared the responses of these novel models to three published models of unmyelinated axons (Rattay and Aberham 1993; Sundt et al. 2015; Tigerholm et al. 2014)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266498",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "David C. Catherall\r\nBrandon J. Thio\r\nNicole A. Pelot\r\nEdward D. Liang\r\nCraig S. Henriquez"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Unmyelinated peripheral axons"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nikki.pelot@duke.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Nicole A. Pelot"
+ },
+ "ver_date": "2022-07-06T13:37:46.45",
+ "ver_number": 14
+ },
+ "266506": {
+ "class_id": 19,
+ "created": "2020-05-29T05:29:08.467",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 266506,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262437,
+ "object_name": "Giacopelli, Giuseppe [giuseppe.giacopelli at unipa.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266940,
+ "object_name": "Giacopelli G, Tegolo D, Spera E, Migliore M (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "On the structural connectivity of large-scale models of brain networks (Giacopelli et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The brain\u2019s structural connectivity plays a fundamental role in determining how neuron networks\r\ngenerate, process, and transfer information within and between brain regions. The underlying\r\nmechanisms are extremely difficult to study experimentally and, in many cases, large-scale model\r\nnetworks are of great help. However, the implementation of these models relies on experimental\r\nfindings that are often sparse and limited. Their predicting power ultimately depends on how closely\r\na model\u2019s connectivity represents the real system. Here we argue that the data-driven probabilistic\r\nrules, widely used to build neuronal network models, may not be appropriate to represent the\r\ndynamics of the corresponding biological system. To solve this problem, we propose to use a\r\nnew mathematical framework able to use sparse and limited experimental data to quantitatively\r\nreproduce the structural connectivity of biological brain networks at cellular level."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266506",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "giuseppe.giacopelli@unipa.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Giuseppe Giacopelli"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2021-02-25T16:40:09.667",
+ "ver_number": 15
+ },
+ "266508": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Telenczuk, B., Telenczuk, M. and Destexhe, A. A kernel-based method to calculate local field potentials from networks of spiking neurons.\r\nhttps://www.biorxiv.org/content/10.1101/2020.03.29.014654v1"
+ },
+ "class_id": 19,
+ "created": "2020-05-30T12:04:00.623",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266508,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33744,
+ "object_name": "Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr]"
+ },
+ {
+ "object_id": 241795,
+ "object_name": "Telenczuk, Bartosz [bartosz.telenczuk at inaf.cnrs-gif.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266509,
+ "object_name": "Telenczuk B, Telenczuk M, Destexhe A (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Kernel method to calculate LFPs from networks of point neurons (Telenczuk et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The local field potential (LFP) is usually calculated from current sources arising from transmembrane currents, in particular in asymmetric cellular morphologies such as pyramidal neurons. Here, we adopt a different point of view and relate the spiking of neurons to the LFP through efferent synaptic connections and provide a method to calculate LFPs. We show that the so-called unitary LFPs (uLFP) provide the key to such a calculation. We show experimental measurements and simulations of uLFPs in neocortex and hippocampus, for both excitatory and inhibitory neurons. We fit a \u201ckernel\u201d function to measurements of uLFPs, and we estimate its spatial and temporal spread by using simulations of morphologically detailed reconstructions of hippocampal pyramidal neurons. Assuming that LFPs are the sum of uLFPs generated by every neuron in the network, the LFP generated by excitatory and inhibitory neurons can be calculated by convolving the trains of action potentials with the kernels estimated from uLFPs. This provides a method to calculate the LFP from networks of spiking neurons, even for point neurons for which the LFP is not easily defined. We show examples of LFPs calculated from networks of point neurons.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266508",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Destexhe@iaf.cnrs-gif.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alain Destexhe"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-09T10:14:35.71",
+ "ver_number": 10
+ },
+ "266518": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Buccineo et al 2018"
+ },
+ "class_id": 19,
+ "created": "2020-06-03T10:43:59.697",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266518,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266517,
+ "object_name": "Buccino AP, Kordovan M, Ness TV, Merkt B, H\u00e4fliger PD, Fyhn M, Cauwenberghs G, Rotter S, Einevoll GT (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ },
+ {
+ "object_id": 266536,
+ "object_name": "LFPy (web link to model)"
+ }
+ ]
+ },
+ "name": "Combining modeling, deep learning for MEA neuron localization, classification (Buccino et al 2018)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 167343,
+ "object_name": "Neocortex U1 L5B pyramidal pyramidal tract GLU cell"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ },
+ {
+ "object_id": 93384,
+ "object_name": "Neocortex bitufted interneuron"
+ },
+ {
+ "object_id": 150807,
+ "object_name": "Neocortex deep neurogliaform interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neural circuits typically consist of many different types of neurons, and one faces a challenge in disentangling their individual contributions in measured neural activity. Classification of cells into inhibitory and excitatory neurons and localization of neurons on the basis of extracellular recordings are frequently employed procedures. Current approaches, however, need a lot of human intervention, which makes them slow, biased, and unreliable. In light of recent advances in deep learning techniques and exploiting the availability of neuron models with quasi-realistic three-dimensional morphology and physiological properties, we present a framework for automatized and objective classification and localization of cells based on the spatiotemporal profiles of the extracellular action potentials recorded by multielectrode arrays. We train convolutional neural networks on simulated signals from a large set of cell models and show that our framework can predict the position of neurons with high accuracy, more precisely than current state-of-the-art methods. Our method is also able to classify whether a neuron is excitatory or inhibitory with very high accuracy, substantially improving on commonly used clustering techniques. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266518",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-06-04T12:14:34.697",
+ "ver_number": 4
+ },
+ "266524": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Liou et al 2020"
+ },
+ "class_id": 19,
+ "created": "2020-06-03T11:24:17.02",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266524,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266523,
+ "object_name": "Liou JY, Smith EH, Bateman LM, Bruce SL, McKhann GM, Goodman RR, Emerson RG, Schevon CA, Abbott LF (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "A model for focal seizure onset, propagation, evolution, and progression (Liou et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed a neural network model that can account for major elements common\r\nto human focal seizures. These include the tonic-clonic transition, slow advance of clinical semiology\r\nand corresponding seizure territory expansion, widespread EEG synchronization, and slowing of\r\nthe ictal rhythm as the seizure approaches termination. These were reproduced by incorporating\r\nusage-dependent exhaustion of inhibition in an adaptive neural network that receives global\r\nfeedback inhibition in addition to local recurrent projections. Our model proposes mechanisms that\r\nmay underline common EEG seizure onset patterns and status epilepticus, and postulates a role for\r\nsynaptic plasticity in the emergence of epileptic foci. Complex patterns of seizure activity and bi-\r\nstable seizure end-points arise when stochastic noise is included. With the rapid advancement of\r\nclinical and experimental tools, we believe that this model can provide a roadmap and potentially\r\nan in silico testbed for future explorations of seizure mechanisms and clinical therapies."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266524",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2020-06-03T11:24:47.193",
+ "ver_number": 2
+ },
+ "266526": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Guet-McCray & Skinner 2020"
+ },
+ "class_id": 19,
+ "created": "2020-06-03T11:49:53.05",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266526,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266525,
+ "object_name": "Guet-McCreight A, Skinner F (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Dynamical assessment of ion channels during in vivo-like states (Guet-McCreight & Skinner 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 190560,
+ "object_name": "Hippocampus CA1 stratum oriens lacunosum-moleculare interneuron "
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\" ... Methods: We employ two morphologically-detailed multi-compartment models of a specific type of inhibitory interneuron, the oriens lacunosum moleculare (OLM) cell. The OLM cell is a well-studied cell type in CA1 hippocampus that is important in gating sensory and contextual information. We create in vivo-like states for these cellular models by including levels of synaptic bombardment that would occur in vivo. Using visualization tools and analyses we assess the ion channel current contribution profile across the different somatic and dendritic compartments of the models.\r\nResults: We identify changes in dendritic excitability, ion channel current contributions and co-activation patterns between in vitro and in vivo-like states. Primarily, we find that the relative timing between ion channel currents are mostly invariant between states, but exhibit changes in magnitudes and decreased propagation across dendritic compartments. We also find enhanced dendritic hyperpolarization-activated cyclic nucleotide-gated channel (h-channel) activation during in vivo-like states, which suggests that dendritically located h-channels are functionally important in altering signal propagation in the behaving animal. ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266526",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-06-03T11:57:20.663",
+ "ver_number": 3
+ },
+ "266534": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Burke et al 2018"
+ },
+ "class_id": 19,
+ "created": "2020-06-03T13:28:33.883",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266534,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266533,
+ "object_name": "Burke KJ, Keeshen CM, Bender KJ (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Two forms of synaptic depression by neuromodulation of presynaptic Ca2+ channels (Burke et al 2018)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... To determine whether the different biophysical mechanisms of\r\nCaV modulation predicted by OFA (Optical Fluctuation Analysis) are sufficient to explain the\r\ndiffering effects of D1Rs and GABA B Rs on STP, we developed\r\na reduced synaptic model...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266534",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2020-06-03T13:29:23.23",
+ "ver_number": 2
+ },
+ "266535": {
+ "class_id": 19,
+ "created": "2020-06-03T23:29:15.14",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266535,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 222955,
+ "object_name": "Pedrosa, Victor [v.pedrosa15 at imperial.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266761,
+ "object_name": "Pedrosa V, Clopath C (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Interplay between somatic and dendritic inhibition promotes place fields (Pedrosa & Clopath 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Hippocampal pyramidal neurons are thought to encode spatial information. A subset of these cells, named place cells, are active only when the animal traverses a specific region within the environment. Although vastly studied experimentally, the development and stabilization of place fields are not fully understood. Here, we propose a mechanistic model of place cell formation in the hippocampal CA1 region. Using our model, we reproduce place field dynamics observed experimentally and provide a mechanistic explanation for the stabilization of place fields. Finally, our model provides specific predictions on protocols to shift place field location."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266535",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "v.pedrosa@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Victor Pedrosa"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-07-21T16:14:24.067",
+ "ver_number": 12
+ },
+ "266551": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Shusen Pu and Peter Thomas (2020). Fast and Accurate Langevin Models of Stochastic Hodgkin Huxley Dynamics. In Press at Neural Computation."
+ },
+ "class_id": 19,
+ "created": "2020-06-10T16:23:22.203",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266551,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266810,
+ "object_name": "Pu S, Thomas PJ (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Stochastic Hodgkin-Huxley Model: 14x28D Langevin Simulation (Pu and Thomas, 2020).",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model provides a natural 14-dimensional Langevin dynamics for the Hodgkin Huxley system in which each directed edge in the ion channel state transition graph acts as an independent noise source, leading to a 14 dimensional state space (1 dimension for voltage, 5 for potassium and 8 for sodium) and 14 \u00d7 28 noise coefficient matrix S. In [Pu and Thomas (2020) Neural Computation] we show that this 14 x 28 dimensional model is pathwise equivalent to the 14 x 11 dimensional Langevin model proposed in [Fox and Lu (1994) Phys Rev E], as well as an 14 x 14 model described in [Orio and Soudry (2012) PLoS One]. Unlike Fox and Lu's model, our construction does not require a matrix root extraction step, and runs significantly faster. Unlike Orio and Soudry's model, each directed edge acts as an independent noise source, which facilitates the application of stochastic shielding methods for even greater simulation speed. For comparison, we provide implementations of the following models: 1. Discrete-state Markov chain model (slow, but provides the \"gold standard\" model), adapted from [Goldwyn and Shea-Brown (2011) PLoS Comp. Biol.] 2. 14 x 11 Langevin model from [Fox and Lu (1994) Phys. Rev. E]. (We implement versions with three different boundary conditions: open boundaries, reflecting boundaries, and resampling/rejection at the boundaries.) 3. 4 x 3 Langevin model from [Fox (1997) Biophys. J.] 4. 14 x 13 Langevin model from [Goldwyn and Shea (2011) PLoS Comp. Biol.] 5. 14 x 14 Langevin model from [Dangerfield et al (2012) Phys. Rev. E] 6. 14 x 14 Langevin model from [Orio and Soudry (2012) PLoS One] 7. 14 x 28 Langevin model from [Pu and Thomas (2020) Neural Computation] implemented both with and without stochastic shielding 8. 14 x 0 deterministic HH model (also from [Pu and Thomas (2020) Neural Computation], with the full 14 dimensional state space but no noise) The Read_me.md file provides more detailed simulations.\r\n\r\nTo cite the code: Pu, Shusen, and Peter J. Thomas. \"Fast and Accurate Langevin Simulations of Stochastic Hodgkin-Huxley Dynamics.\" Neural Computation 32, 1775\u20131835 (2020)\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266551",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Pu, Shusen [Case Western Reserve University]\r\nThomas, Peter [Case Western Reserve University]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sxp600@case.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shusen Pu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2020-09-16T12:35:25.903",
+ "ver_number": 4
+ },
+ "266552": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Domanski et al 2019"
+ },
+ "class_id": 19,
+ "created": "2020-06-10T16:43:15.313",
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 266550,
+ "object_name": "FMR1 FMRP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266552,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266549,
+ "object_name": "Domanski APF, Booker SA, Wyllie DJA, Isaac JTR, Kind PC (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Disrupted information processing in Fmr1-KO mouse layer 4 barrel cortex (Domanski et al 2019)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 230209,
+ "object_name": "Neocortex U1 L4 stellate GLU cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Sensory hypersensitivity is a common and debilitating feature of neurodevelopmental disorders such as Fragile X Syndrome (FXS). How developmental changes in neuronal function\r\nculminate in network dysfunction that underlies sensory hypersensitivities is unknown. By\r\nsystematically studying cellular and synaptic properties of layer 4 neurons combined with\r\ncellular and network simulations, we explored how the array of phenotypes in Fmr1-knockout\r\n(KO) mice produce circuit pathology during development. We show that many of the cellular\r\nand synaptic pathologies in Fmr1-KO mice are antagonistic, mitigating circuit dysfunction, and\r\nhence may be compensatory to the primary pathology. Overall, the layer 4 network in the\r\nFmr1-KO exhibits significant alterations in spike output in response to thalamocortical input\r\nand distorted sensory encoding. This developmental loss of layer 4 sensory encoding precision would contribute to subsequent developmental alterations in layer 4-to-layer 2/3\r\nconnectivity and plasticity observed in Fmr1-KO mice, and circuit dysfunction underlying\r\nsensory hypersensitivity.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266552",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2020-06-10T16:45:10.81",
+ "ver_number": 2
+ },
+ "266555": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://journals.physiology.org/doi/abs/10.1152/jn.00401.2019"
+ },
+ "class_id": 19,
+ "created": "2020-06-13T11:43:24.483",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266555,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266752,
+ "object_name": "Papasavvas, Christoforos [Christoforos.Papasavvas at newcastle.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 152026,
+ "object_name": "Contrast-gain control"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266751,
+ "object_name": "Papasavvas CA, Trevelyan AJ, Kaiser M, Wang Y (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Entrainment and divisive inhibition in a neocortical neural mass model (Papasavvas et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Neural mass model of a neocortical microcircuit featuring one excitatory and two inhibitory populations. The inhibitory populations represent the soma-targeting (parvalbumin) and dendrite-targeting (somatostatin) interneurons. The model uses the Wilson-Cowan formalism and differentiates between the two inhibitory populations by the way they modulate the input-output function of the excitatory population (subtractive vs divisive inhibition, based on Wilson et al., Nature, 7411, 488, 343-348, 2012). The connectivity patterns between the populations follow the patterns reported in the primary visual cortex (Pfeffer et al., Nat Neurosci 16, 1068\u20131076, 2013).\r\n\r\nThe model is used here to investigate the role of divisive inhibition during the entrainment of the microcircuit."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266555",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-07-16T08:04:26.787",
+ "ver_number": 16
+ },
+ "266560": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://link.springer.com/article/10.1007/s00359-020-01405-x"
+ },
+ "class_id": 19,
+ "created": "2020-06-13T11:52:21.623",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266560,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266651,
+ "object_name": "Read, Jenny [jenny.read at newcastle.ac.uk]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 266650,
+ "object_name": "Binocular energy model/Stereopsis"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266648,
+ "object_name": "Rosner R, von Hadeln J, Tarawneh G, Read JCA (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Binocular energy model set for binocular neurons in optic lobe of praying mantis (Rosner et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a version of the binocular energy model with parameters chosen to reproduce individual cells in praying mantis optic lobe. The receptive fields are very coarsely sampled (6 different horizontal locations only) to match the coarse sampling of the data given very limited recording time."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266560",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "binocular energy model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 266649,
+ "object_name": "Optic lobe/Praying Mantis"
+ }
+ ]
+ },
+ "ver_date": "2020-06-24T11:30:22.223",
+ "ver_number": 8
+ },
+ "266577": {
+ "class_id": 19,
+ "created": "2020-06-16T12:04:23.393",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266577,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146501,
+ "object_name": "Nicola, Wilten [wnicola at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267402,
+ "object_name": "Nicola W, Campbell SA (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Wilson-Cowan Network with Homeostatic Plasticity (Nicola and Campbell 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We investigate the problem of inter-region synchronization in networks of Wilson--Cowan/neural field equations with homeostatic plasticity, each of which acts as a model for an isolated brain region. We consider arbitrary connection profiles with only one constraint: the rows of the connection matrices are all identically normalized. We found that these systems often synchronize to the solution obtained from a single, self-coupled neural region. We analyze the stability of this solution through a straightforward modification of the master stability function (MSF) approach and found that synchronized solutions lose stability for connectivity matrices when the second largest positive eigenvalue is sufficiently large for values of the global coupling parameter that are not too large. This result was numerically confirmed for ring systems and lattices and was also robust to small amounts of heterogeneity in the homeostatic set points in each node. Finally, we tested this result on connectomes obtained from 196 subjects over a broad age range (4--85 years) from the Human Connectome Project."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266577",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wilten.nicola@ucalgary.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Wilten Nicola"
+ },
+ "ver_date": "2022-07-01T16:57:38.537",
+ "ver_number": 7
+ },
+ "266578": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Molecular layer interneurons in the cerebellum encode for valence in associative learning\r\nMing Ma, Gregory L. Futia, Fabio M. Simoes De Souza, Baris N. Ozbay, Isabel Llano, Emily A. Gibson, Diego Restrepo\r\nhttps://doi.org/10.1101/2019.12.14.876201"
+ },
+ "class_id": 19,
+ "created": "2020-06-16T23:52:18.51",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266578,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 156119,
+ "object_name": "Simoes-de-Souza, Fabio [fabio.souza at ufabc.edu.br]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267638,
+ "object_name": "Ma M, Futia GL, De Souza FM, Ozbay BN, Llano I, Gibson EA, Restrepo D (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Molecular layer interneurons in cerebellum encode valence in associative learning (Ma et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 246494,
+ "object_name": "Cerebellum interneuron stellate GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We used two-photon microscopy to study the role of ensembles of cerebellar molecular layer interneurons (MLIs) in a go-no go task where mice obtain a sugar water reward. In order to begin understanding the circuit basis of our findings in changes in lick behavior with chemogenetics in the go-no go associative learning olfactory discrimination task we generated a simple computational model of MLI interaction with PCs."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266578",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fabio_mss@hotmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fabio Simoes de Souza"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-02-09T10:18:47.507",
+ "ver_number": 8
+ },
+ "266584": {
+ "class_id": 19,
+ "created": "2020-06-17T08:02:30.513",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266584,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266585,
+ "object_name": "Song, Jiang-Ling "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 266583,
+ "object_name": "Acute hepatic encephalopathy (AHE)"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266582,
+ "object_name": "Song JL, Paixao L, Li Q, Li SH, Zhang R, Westover MB (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Model of generalized periodic discharges in acute hepatic encephalopathy (Song et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Acute hepatic encephalopathy (AHE) due to acute liver failure is a common form of delirium, a state of confusion, impaired\r\nattention, and decreased arousal. The electroencephalogram (EEG) in AHE often exhibits a striking abnormal pattern of brain\r\nactivity, which epileptiform discharges repeat in a regular repeating pattern. This pattern is known as generalized periodic\r\ndischarges, or triphasic-waves (TPWs). While much is known about the neurophysiological mechanisms underlying AHE,\r\nhow these mechanisms relate to TPWs is poorly understood. In order to develop hypotheses how TPWs arise, our work builds\r\na computational model of AHE (AHE-CM), based on three modifications of the well-studied Liley model which emulate\r\nmechanisms believed central to brain dysfunction in AHE: increased neuronal excitability, impaired synaptic transmission,\r\nand enhanced postsynaptic inhibition...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266584",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-06-17T08:12:14.677",
+ "ver_number": 3
+ },
+ "266609": {
+ "class_id": 19,
+ "created": "2020-06-17T10:26:34.42",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266609,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266608,
+ "object_name": "Muscinelli, Samuel P [samuel.muscinelli at epfl.ch]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266588,
+ "object_name": "Muscinelli SP, Gerstner W, Schwalger T (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 253623,
+ "object_name": "Julia (web link to model)"
+ }
+ ]
+ },
+ "name": "Single neuron properties shape chaos and signal transmission in random NNs (Muscinelli et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"While most models of randomly connected neural networks assume single-neuron models with simple dynamics, neurons in the brain exhibit complex intrinsic dynamics over multiple timescales. We analyze how the dynamical properties of single neurons and recurrent connections interact to shape the effective dynamics in large randomly connected networks. A novel dynamical mean-field theory for strongly connected networks of multi-dimensional rate neurons shows that the power spectrum of the network activity in the chaotic phase emerges from a nonlinear sharpening of the frequency response function of single neurons. For the case of two-dimensional rate neurons with strong adaptation, we find that the network exhibits a state of \u201cresonant chaos\u201d, characterized by robust, narrow-band stochastic oscillations. The coherence of stochastic oscillations is maximal at the onset of chaos and their correlation time scales with the adaptation timescale of single units. Surprisingly, the resonance frequency can be predicted from the properties of isolated neurons, even in the presence of heterogeneity in the adaptation parameters. In the presence of these internally-generated chaotic fluctuations, the transmission of weak, low-frequency signals is strongly enhanced by adaptation, whereas signal transmission is not influenced by adaptation in the non-chaotic regime. Our theoretical framework can be applied to other mechanisms at the level of single neurons, such as synaptic filtering, refractoriness or spike synchronization. These results advance our understanding of the interaction between the dynamics of single units and recurrent connectivity, which is a fundamental step toward the description of biologically realistic neural networks.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266609",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-06-17T10:28:21.907",
+ "ver_number": 2
+ },
+ "266636": {
+ "class_id": 19,
+ "created": "2020-06-17T17:02:40.013",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266636,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 154856,
+ "object_name": "Tabak J, Tomaiuolo M, Gonzalez-Iglesias AE, Milescu LS, Bertram R (2011)"
+ },
+ {
+ "object_id": 266635,
+ "object_name": "Tenn\u00f8e S, Hodne K, Haug T, Weltzien F, Einevoll G, Halnes G (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ },
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ },
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "BK Channels Promote Bursting in Pituitary Cells (Tabak et al 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The electrical activity pattern of endocrine pituitary cells regulates their basal secretion level. Rat somatotrophs and lactotrophs exhibit spontaneous bursting and have high basal levels of hormone secretion, while gonadotrophs exhibit spontaneous spiking and have low basal hormone secretion. It has been proposed that the difference in electrical activity between bursting somatotrophs and spiking gonadotrophs is due to the presence of large conductance potassium (BK) channels on somatotrophs but not on gonadotrophs. This is one example where the role of an ion channel type may be clearly established. We demonstrate here that BK channels indeed promote bursting activity in pituitary cells. Blocking BK channels in bursting lacto-somatotroph GH4C1 cells changes their firing activity to spiking, while further adding an artificial BK conductance via dynamic clamp restores bursting. Importantly, this burst-promoting effect requires a relatively fast BK activation/deactivation, as predicted by computational models. We also show that adding a fast-activating BK conductance to spiking gonadotrophs converts the activity of these cells to bursting. Together, our results suggest that differences in BK channel expression may underlie the differences in electrical activity and basal hormone secretion levels among pituitary cell types and that the rapid rate of BK channel activation is key to its role in burst promotion.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266636",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "ver_date": "2020-06-17T17:03:51.147",
+ "ver_number": 2
+ },
+ "266637": {
+ "class_id": 19,
+ "created": "2020-06-19T10:17:16.12",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 243505,
+ "object_name": "I Ca SOCC"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 88210,
+ "object_name": "I_Na,Ca"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266637,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 251109,
+ "object_name": "Muddapu, Vignayanandam R. [vignan.0009 at gmail.com]"
+ },
+ {
+ "object_id": 251110,
+ "object_name": "Chakravarthy, Srinivasa V. [schakra at iitm.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 245160,
+ "object_name": "Neurotransmitter dynamics"
+ },
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ },
+ {
+ "object_id": 227131,
+ "object_name": "Pacemaking mechanism"
+ },
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266946,
+ "object_name": "Muddapu VR, Chakravarthy VS (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ }
+ ]
+ },
+ "name": "Multiscale model of excitotoxicity in PD (Muddapu and Chakravarthy 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ },
+ {
+ "object_id": 182591,
+ "object_name": "Globus pallidus principal GABA cell"
+ },
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Parkinson's disease (PD) is a neurodegenerative disorder caused by loss of dopaminergic neurons in Substantia Nigra pars compacta (SNc). Although the exact cause of cell death is not clear, the hypothesis that metabolic deficiency is a key factor has been gaining attention in recent years. In the present study, we investigate this hypothesis using a multi-scale computational model of the subsystem of the basal ganglia comprising Subthalamic Nucleus (STN), Globus Pallidus externa (GPe) and SNc. The proposed model is a multiscale model in that interactions among the three nuclei are simulated using more abstract Izhikevich neuron models, while the molecular pathways involved in cell death of SNc neurons are simulated in terms of detailed chemical kinetics. Simulation results obtained from the proposed model showed that energy deficiencies occurring at cellular and network levels could precipitate the excitotoxic loss of SNc neurons in PD. At the subcellular level, the models show how calcium elevation leads to apoptosis of SNc neurons. The therapeutic effects of several neuroprotective interventions are also simulated in the model. From neuroprotective studies, it was clear that glutamate inhibition and apoptotic signal blocker therapies were able to halt the progression of SNc cell loss when compared to other therapeutic interventions, which only slows down the progression of SNc cell loss."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266637",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vignan.0009@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Vignayanandam R Muddapu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 116868,
+ "object_name": "Subthalamic Nucleus"
+ }
+ ]
+ },
+ "ver_date": "2021-03-01T17:05:46.287",
+ "ver_number": 2
+ },
+ "266657": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Galloni et al 2020"
+ },
+ "class_id": 19,
+ "created": "2020-06-24T11:57:42.313",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266657,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266656,
+ "object_name": "Galloni AR, Laffere A, Rancz E (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 7841,
+ "object_name": "NEURON (web link to model)"
+ }
+ ]
+ },
+ "name": "Apical Length Governs Computational Diversity of Layer 5 Pyramidal Neurons (Galloni et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Anatomical similarity across the neocortex has led to the common assumption that the circuitry is modular and performs stereotyped computations. Layer 5 pyramidal neurons (L5PNs) in particular are thought to be central to cortical computation because of their extensive arborisation and nonlinear dendritic operations. Here, we demonstrate that computations associated with dendritic Ca2+ plateaus in mouse L5PNs vary substantially between the primary and secondary visual cortices. L5PNs in the secondary visual cortex show reduced dendritic excitability and smaller propensity for burst firing. This reduced excitability is correlated with shorter apical dendrites. Using numerical modelling, we uncover a universal principle underlying the influence of apical length on dendritic backpropagation and excitability, based on a Na+ channel-dependent broadening of backpropagating action potentials. In summary, we provide new insights into the modulation of dendritic excitability by apical dendrite length and show that the operational repertoire of L5PNs is not universal throughout the brain.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266657",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2020-06-26T08:25:10.383",
+ "ver_number": 4
+ },
+ "266663": {
+ "class_id": 19,
+ "created": "2020-06-24T13:55:28.67",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266663,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266753,
+ "object_name": "Ausborn, Jessica [jessica.ausborn at gmail.com]"
+ },
+ {
+ "object_id": 235164,
+ "object_name": "Danner, Simon M [simon.danner at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 150701,
+ "object_name": "Posture and locomotion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266662,
+ "object_name": "Ausborn J, Shevtsova NA, Caggiano V, Danner SM, Rybak IA (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Brainstem circuits controlling locomotor frequency and gait (Ausborn et al 2019)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A series of recent studies identified key structures in the mesencephalic locomotor region and the caudal brainstem of mice involved in the initiation and control of slow (exploratory) and fast (escape-type) locomotion and gait. However, the interactions of these brainstem centers with each other and with the spinal locomotor circuits are poorly understood. Previously we suggested that commissural and long propriospinal interneurons are the main targets for brainstem inputs adjusting gait (Danner et al., 2017). Here, by extending our previous model, we propose a connectome of the brainstem-spinal circuitry and suggest a mechanistic explanation of the operation of brainstem structures and their roles in controlling speed and gait. We suggest that brainstem control of locomotion is mediated by two pathways, one controlling locomotor speed via connections to rhythm generating circuits in the spinal cord and the other providing gait control by targeting commissural and long propriospinal interneurons.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266663",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2020-07-15T09:41:59.15",
+ "ver_number": 3
+ },
+ "266687": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://europepmc.org/abstract/med/29698394"
+ },
+ "class_id": 19,
+ "created": "2020-06-29T20:55:33.083",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 151550,
+ "object_name": "Channelrhodopsin (ChR)"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266687,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266753,
+ "object_name": "Ausborn, Jessica [jessica.ausborn at gmail.com]"
+ },
+ {
+ "object_id": 266754,
+ "object_name": "Rybak,Ilya A [rybak at drexel.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 259061,
+ "object_name": "Ausborn J, Koizumi H, Barnett WH, John TT, Zhang R, Molkov YI, Smith JC, Rybak IA (2018)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Core respiratory network organization: Insights from optogenetics and modeling (Ausborn et al 2018)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 232103,
+ "object_name": "PreBotzinger complex neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"The circuit organization within the mammalian brainstem respiratory network, specifically within and between the pre-B\u00f6tzinger (pre-B\u00f6tC) and B\u00f6tzinger (B\u00f6tC) complexes, and the roles of these circuits in respiratory pattern generation are continuously debated. We address these issues with a combination of optogenetic experiments and modeling studies. We used transgenic mice expressing channelrhodopsin-2 under the VGAT-promoter to investigate perturbations of respiratory circuit activity by site-specific photostimulation of inhibitory neurons within the pre-B\u00f6tC or B\u00f6tC. The stimulation effects were dependent on the intensity and phase of the photostimulation. Specifically: (1) Low intensity (= 1.0 mW) pulses delivered to the pre-B\u00f6tC during inspiration did not terminate activity, whereas stronger stimulations (= 2.0 mW) terminated inspiration. (2) When the pre-B\u00f6tC stimulation ended in or was applied during expiration, rebound activation of inspiration occurred after a fixed latency. (3) Relatively weak sustained stimulation (20 Hz, 0.5\u20132.0 mW) of pre-B\u00f6tC inhibitory neurons increased respiratory frequency, while a further increase of stimulus intensity (> 3.0 mW) reduced frequency and finally (= 5.0 mW) terminated respiratory oscillations. (4) Single pulses (0.2\u20135.0 s) applied to the B\u00f6tC inhibited rhythmic activity for the duration of the stimulation. (5) Sustained stimulation (20 Hz, 0.5\u20133.0 mW) of the B\u00f6tC reduced respiratory frequency and finally led to apnea. We have revised our computational model of pre-B\u00f6tC and B\u00f6tC microcircuits by incorporating an additional population of post-inspiratory inhibitory neurons in the pre-B\u00f6tC that interacts with other neurons in the network. This model was able to reproduce the above experimental findings as well as previously published results of optogenetic activation of pre-B\u00f6tC or B\u00f6tC neurons obtained by other laboratories. The proposed organization of pre-B\u00f6tC and B\u00f6tC circuits leads to testable predictions about their specific roles in respiratory pattern generation and provides important insights into key circuit interactions operating within brainstem respiratory networks.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266687",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Pipeline user 82"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2020-07-15T09:41:07.25",
+ "ver_number": 11
+ },
+ "266718": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Mitry et al 2020"
+ },
+ "class_id": 19,
+ "created": "2020-07-01T09:56:48.15",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266718,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266717,
+ "object_name": "Mitry J, Alexander RP, Farjami S, Bowie D, Khadra A (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 91894,
+ "object_name": "XPP (web link to model)"
+ }
+ ]
+ },
+ "name": "Cerebellar stellate cells: changes in threshold, latency and frequency of firing (Mitry et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 246494,
+ "object_name": "Cerebellum interneuron stellate GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Cerebellar stellate cells are inhibitory molecular interneurons that regulate the firing properties of Purkinje cells, the sole output of cerebellar cortex. Recent evidence suggests that\r\nthese cells exhibit temporal increase in excitability during whole-cell patch-clamp configuration in a phenomenon termed runup. They also exhibit a non-monotonic first-spike\r\nlatency profile as a function of the holding potential in response to a fixed step-current.\r\nIn this study, we use modeling approaches to unravel the dynamics of runup and categorize the firing behavior of cerebellar stellate cells as either type I or type II oscillators. We\r\nthen extend this analysis to investigate how the non-monotonic latency profile manifests\r\nitself during runup. We employ a previously developed, but revised, Hodgkin\u2013Huxley type\r\nmodel to show that stellate cells are indeed type I oscillators possessing a saddle node on\r\nan invariant cycle (SNIC) bifurcation. The SNIC in the model acts as a \u201cthreshold\u201d for tonic\r\nfiring and produces a slow region in the phase space called the ghost of the SNIC. The\r\nmodel reveals that (i) the SNIC gets left-shifted during runup with respect to I app = I test\r\nin the current-step protocol, and (ii) both the distance from the stable limit cycle along\r\nwith the slow region produce the non-monotonic latency profile as a function of holding\r\npotential. Using the model, we elucidate how latency can be made arbitrarily large for a\r\nspecific range of holding potentials close to the SNIC during pre-runup (post-runup). We\r\nalso demonstrate that the model can produce transient single spikes in response to step-\r\ncurrents entirely below I SNIC , and that a pair of dynamic inhibitory and excitatory post-\r\nsynaptic inputs can robustly evoke action potentials, provided that the magnitude of the\r\ninhibition is either low or high but not intermediate. Our results show that the topology\r\nof the SNIC is the key to explaining such behaviors.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266718",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2020-07-01T09:59:40.077",
+ "ver_number": 3
+ },
+ "266720": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Peterson & Voytek 2020"
+ },
+ "class_id": 19,
+ "created": "2020-07-01T10:52:06.227",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266720,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266719,
+ "object_name": "Peterson EJ, Voytek B (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114647,
+ "object_name": "Python (web link to model)"
+ }
+ ]
+ },
+ "name": "Homeostatic mechanisms may shape oscillatory modulations (Peterson & Voytek 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Neural oscillations are observed ubiquitously in the mammalian brain, but their stability is known to be rather variable. Some oscillations are tonic and last for seconds or even minutes. Other oscillations appear as unstable bursts. Likewise, some oscillations rely on excitatory AMPAergic synapses, but others are GABAergic and inhibitory. Why this diversity exists is not clear. We hypothesized Ca2+-dependent homeostasis could be important in finding an explanation. We tested this hypothesis in a highly simplified model of hippocampal neurons. In this model homeostasis profoundly alters the modulatory effect of neural oscillations. Under homeostasis, tonic AMPAergic oscillations actually decrease excitability and desynchronize firing. Tonic oscillations that are synaptically GABAergic-like those in real hippocampus-don't provoke a homeostatic response, however. If our simple model is correct, homeostasis can explain why the theta rhythm in the hippocampus is synaptically inhibitory: GABA has little to no intrinsic homeostatic response, and so can preserve the pyramidal cell's natural dynamic range. Based on these results we can also speculate that homeostasis may explain why AMPAergic oscillations in cortex, and hippocampus, often appear as bursts. Bursts do not interact with the slow homeostatic time constant, and so retain their normal excitatory effect.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266720",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tom.morse@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tom Morse - MoldelDB admin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2020-07-01T10:52:51.777",
+ "ver_number": 2
+ },
+ "266726": {
+ "biosimulations": {
+ "value": "modeldb-266726"
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "Kuo PC, Kao ZH, Lee SW, Wu SN. Effects of sesamin, the major furofuran lignan ofsesame oil, on the amplitude and gating of voltage-gated Na+ and K+ currents. Molecules 2020;25(13):3062."
+ },
+ "class_id": 19,
+ "created": "2020-07-05T00:27:16.473",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266726,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 57916,
+ "object_name": "Wu, Sheng-Nan [snwu at mail.ncku.edu.tw]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266729,
+ "object_name": "Kuo P, Kao Z, Lee S, Wu S (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Markovian model for SCN8A-encoded channel (Kuo et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Sesamin (SSM) and sesamolin (SesA) are the two major furofuran lignans of sesame oil and they have been previously noticed to exert various biological actions. However, their modulatory actions on different types of ionic currents in electrically excitable cells remain largely unresolved. The present experiments were undertaken to explore the possible perturbations of SSM and SesA on different types of ionic currents, e.g., voltage-gated Na+ currents (INa), erg-mediated K+ currents (IK(erg)), M-type K+ currents (IK(M)), delayed-rectifier K+ currents (IK(DR)) and hyperpolarization-activated cation currents (Ih) identified from pituitary tumor (GH3) cells. The exposure to SSM or SesA depressed the transient and late components of INa with different potencies. The IC50 value of SSM needed to lessen the peak or sustained INa was calculated to be 7.2 or 0.6 \u00b5M, while that of SesA was 9.8 or 2.5 \u00b5M, respectively. The dissociation constant of SSM-perturbed inhibition on INa, based on the first-order reaction scheme, was measured to be 0.93 \u00b5M, a value very similar to the IC50 for its depressant action on sustained INa. The addition of SSM was also effective at suppressing the amplitude of resurgent INa. The addition of SSM could concentration-dependently inhibit the IK(M) amplitude with an IC50 value of 4.8 \u00b5M. SSM at a concentration of 30 \u00b5M could suppress the amplitude of IK(erg), while at 10 \u00b5M, it mildly decreased the IK(DR) amplitude. However, the addition of neither SSM (10 \u00b5M) nor SesA (10 \u00b5M) altered the amplitude or kinetics of Ih in response to long-lasting hyperpolarization. Additionally, in this study, a modified Markovian model designed for SCN8A-encoded (or NaV1.6) channels was implemented to evaluate the plausible modifications of SSM on the gating kinetics of NaV channels. The model demonstrated herein was well suited to predict that the SSM-mediated decrease in peak INa, followed by increased current inactivation, which could largely account for its favorable decrease in the probability of the open-blocked over open state of NaV channels. Collectively, our study provides evidence that highlights the notion that SSM or SesA could block multiple ion currents, such as INa and IK(M), and suggests that these actions are potentially important and may participate in the functional activities of various electrically excitable cells in vivo."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266726",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "snwu@mail.ncku.edu.tw"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sheng-Nan Wu"
+ },
+ "ver_date": "2020-07-06T10:12:28.073",
+ "ver_number": 6
+ },
+ "266732": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 32269036"
+ },
+ "class_id": 19,
+ "created": "2020-07-07T06:14:36.187",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122812,
+ "object_name": "Cav1.3 CACNA1D"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266732,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235771,
+ "object_name": "Kim, Hojeong [hojeong.kim03 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266733,
+ "object_name": "Kim H (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A model of closed-loop motor unit including muscle spindle feedback (Kim, 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Persistent inward current generating ion channels are located over spinal motoneurons and actively recruited during normal behaviors. Constructing a realistic computational model of closed-loop motor unit, a motoneuron and muscle fibers that it innervates including muscle spindle afferents, the study reveals functional linkage between persistent inward current location, motoneuron discharge pattern and muscle force output at various muscle lengths. This systematic analysis may provide useful insights into interplay of spinal and muscular mechanisms in control of movements."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266732",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Calcium; I Potassium; I Sodium; I_AHP;"
+ },
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Cav1.3 CACNA1D;"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hojeong.kim03@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Hojeong Kim"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2020-09-23T12:46:31.793",
+ "ver_number": 4
+ },
+ "266770": {
+ "class_id": 19,
+ "created": "2020-08-06T21:46:03.583",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266770,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266772,
+ "object_name": "Heitmann, Stewart [S.Heitmann at victorchang.edu.au]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 168963,
+ "object_name": "Motion Detection"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266771,
+ "object_name": "Heitmann S, Ermentrout GB (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 266773,
+ "object_name": "Brain Dynamics Toolbox"
+ }
+ ]
+ },
+ "name": "E-I-E direction-selective motion discrimination visual cortex traveling waves (Heitmann et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The direction-selective responses of neurons in visual cortex cannot be separated into independent spatial and temporal processes. Contemporary theories of how neurons compute non-separable responses typically rely on finely tuned transmission delays. However the existence of such delays is controversial. We propose an alternative neural mechanism for computing non-separable responses that relies on the predisposition of the cortical tissue to spontaneously generate traveling waves of neural activity. We propose that these endogenous waves resonate with the visual stimulus to elicit direction-selective neural responses without resort to time delays."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266770",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Stewart Heitmann"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Abstract Wilson-Cowan"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.heitmann@victorchang.edu.au"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Stewart Heitmann"
+ },
+ "ver_date": "2020-08-10T09:15:54.757",
+ "ver_number": 5
+ },
+ "266774": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Learning precise spatiotemporal sequences via biophysically realistic circuits with modular structure\r\nI. Cone, H. Z. Shouval\r\nbioRxiv 2020.04.17.046862; doi: https://doi.org/10.1101/2020.04.17.046862"
+ },
+ "class_id": 19,
+ "created": "2020-08-13T13:37:13.09",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266774,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266982,
+ "object_name": "Cone, Ian [iancone at rice dot edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 266981,
+ "object_name": "Sequence learning"
+ },
+ {
+ "object_id": 266945,
+ "object_name": "Eligibility traces"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266983,
+ "object_name": "Cone I, Shouval HZ (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Sequence learning via biophysically realistic learning rules (Cone and Shouval 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This work proposes a substrate for learned sequential representations, via a network model that can robustly learn and recall discrete sequences of variable order and duration. The model consists of a network of spiking leaky-integrate-and-fire model neurons placed in a modular architecture designed to resemble cortical microcolumns. Learning is performed via a biophysically realistic learning rule based on \u201celigibility traces\u201d, which hold a history of synaptic activity before being converted into changes in synaptic strength upon neuromodulator activation. Before training, the network responds to incoming stimuli, and contains no memory of any particular sequence. After training, presentation of only the first element in that sequence is sufficient for the network to recall an entire learned representation of the sequence. An extended version of the model also demonstrates the ability to successfully learn and recall non-Markovian sequences."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266774",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "iancone@rice.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ian Cone"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 266986,
+ "object_name": "Visual cortex"
+ }
+ ]
+ },
+ "ver_date": "2023-01-30T10:13:48.847",
+ "ver_number": 12
+ },
+ "266775": {
+ "citation": {
+ "attr_id": 391,
+ "value": "32609903"
+ },
+ "class_id": 19,
+ "created": "2020-08-13T14:27:07.487",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "icg_channel_details": {
+ "attr_id": 640,
+ "value": [
+ {
+ "object_id": 266776,
+ "object_name": "ICG Detail_266775"
+ },
+ {
+ "object_id": 266777,
+ "object_name": "ICG Detail_266775"
+ }
+ ]
+ },
+ "id": 266775,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237671,
+ "object_name": "Lindroos, Robert [robert.lindroos at ki.se]"
+ },
+ {
+ "object_id": 266779,
+ "object_name": "Filipovic, Marko"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 266780,
+ "object_name": "Soma-dendrite cross-talk"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266778,
+ "object_name": "Lindroos R, Hellgren Kotaleski J (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Library of biophysically detailed striatal projection neurons (Lindroos and Hellgren Kotaleski 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 153360,
+ "object_name": "Neostriatum medium spiny indirect pathway GABA cell"
+ },
+ {
+ "object_id": 266781,
+ "object_name": "Striatal projection neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Library of compartmentalized models used to investigate dendritic integration in striatal projection neurons under neuromodulation."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266775",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "robert.lindroos@ki.se"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Robert Lindroos"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ },
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2020-08-19T10:57:03.167",
+ "ver_number": 7
+ },
+ "266782": {
+ "class_id": 19,
+ "created": "2020-08-19T11:25:04.593",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92089,
+ "object_name": "Nav1.8 SCN10A"
+ },
+ {
+ "object_id": 92084,
+ "object_name": "Nav1.3 SCN3A"
+ },
+ {
+ "object_id": 92088,
+ "object_name": "Nav1.7 SCN9A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266782,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266791,
+ "object_name": "Suleimanova A, Talanov M, Gafurov O, Gafarov F, Koroleva K, Virenque A, Noe FM, Mikhailov N, Nistri A, Giniatullin R (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Modeling a Nociceptive Neuro-Immune Synapse Activated by ATP and 5-HT in Meninges (Suleimanova et al., 2020)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ },
+ {
+ "object_id": 266792,
+ "object_name": "ATP"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Extracellular ATP and serotonin (5-HT) are powerful triggers of nociceptive firing in the meninges, a process supporting headache and whose cellular mechanisms are incompletely understood. The current study aimed to develop, with the neurosimulator NEURON, a novel approach to explore in silico the molecular determinants of the long-lasting, pulsatile nature of migraine attacks. The present model included ATP and 5-HT release, ATP diffusion and hydrolysis, 5-HT uptake, differential activation of ATP P2X or 5-HT3 receptors, and receptor subtype-specific desensitization. The model also tested the role of branched meningeal fibers with multiple release sites. Spike generation and propagation were simulated using variable contribution by potassium and sodium channels in a multi-compartment fiber environment. Multiple factors appeared important to ensure prolonged nociceptive firing potentially relevant to long-lasting pain. Crucial roles were observed in: (i) co-expression of ATP P2X2 and P2X3 receptor subunits; (ii) intrinsic activation/inactivation properties of sodium Nav1.8 channels; and (iii) temporal and spatial distribution of ATP/5-HT release sites along the branches of trigeminal nerve fibers. Based on these factors we could obtain either persistent activation of nociceptive firing or its periodic bursting mimicking the pulsating nature of pain. In summary, our model proposes a novel tool for the exploration of peripheral nociception to test the contribution of clinically relevant factors to headache including migraine pain.\" (paper abstract)"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266782",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sulemanovaaa@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alina Suleimanova"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 208,
+ "object_name": "5-HT3"
+ },
+ {
+ "object_id": 266793,
+ "object_name": "P2X3"
+ }
+ ]
+ },
+ "ver_date": "2020-08-19T12:48:49.353",
+ "ver_number": 12
+ },
+ "266794": {
+ "class_id": 19,
+ "created": "2020-08-21T11:47:47.497",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266794,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267227,
+ "object_name": "Vuillaume, Roman"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 267152,
+ "object_name": "Dynamic extracellular concentrations"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267226,
+ "object_name": "Vuillaume R, Lorenzo J, Binczak S, Jacquir S (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Syn Plasticity Regulation + Information Processing in Neuron-Astrocyte Networks (Vuillaume et al 21)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we consider a model of astrocyte-regulated synapses to investigate this hypothesis at the level of layered networks of interacting neurons and astrocytes. Our simulations hint that gliotransmission sustains the transfer function across layers, although it decorrelates the neuronal activity from the signal pattern...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266794",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "roman.vuillaume@u-bourgogne.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roman Vuillaume"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2021-12-17T12:52:15.44",
+ "ver_number": 6
+ },
+ "266796": {
+ "class_id": 19,
+ "created": "2020-08-24T16:45:35.123",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266796,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 249460,
+ "object_name": "Aussel, Am\u00e9lie [amelie.aussel at loria.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 266504,
+ "object_name": "Sleep-Wake transition"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267525,
+ "object_name": "Aussel A, Ranta R, Aron O, Colnat-Coulbois S, Maillard L, Buhry L (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Healthy and Epileptic Hippocampal Circuit (Aussel et al 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model aims at reproducing healthy and epileptic hippocampal oscillations, and includes modeling of the sleep-wake cycle. It was used to study theta-nested gamma oscillations, sharp-wave ripple complexes,"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266796",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Laure Buhry,Radu Ranta"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "aaussel@bu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Amelie Aussel"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-08-23T13:38:21.803",
+ "ver_number": 5
+ },
+ "266797": {
+ "class_id": 19,
+ "created": "2020-08-25T11:16:52.43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266797,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 253930,
+ "object_name": "Giacalone, Elisabetta [elisabetta.giacalone at pa.ibf.cnr.it]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267771,
+ "object_name": "Topczewska A, Giacalone E, Pratt WS, Migliore M, Dolphin AC, Shah MM (2023)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Ventral medial entorhinal cortical stellate neuron model: the role of T-type Ca2+ and persistent Na+ (Topczewska et al., accepted)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 129068,
+ "object_name": "Entorhinal cortex stellate cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Dorsal and ventral medial entorhinal cortex (mEC) regions have distinct neural network\r\nfiring patterns to differentially support functions such as spatial memory. Correspondingly,\r\nmEC layer II stellate neuron action potential frequencies vary across the dorsal-ventral axis,\r\nwith dorsal neurons exhibiting lower firing rates than ventral neurons. This has been partly\r\nattributed to higher densities of inhibitory conductances in dorsal compared to ventral\r\nneurons. We asked whether additional conductances might also impact this dorsal-ventral\r\ngradient in spike firing. We report that T-type Ca 2+ current amplitudes increased three-fold\r\nalong the dorsal-ventral axis in mEC layer II stellate neurons. Twice as much Ca V 3.2 mRNA\r\nwas also detected in ventral mEC compared with dorsal mEC. Unusually, as T-type Ca 2+\r\ncurrents are only transiently active, long depolarizing stimuli applied to ventral, and not\r\ndorsal, stellate neurons triggered these currents to cause a sustained rise in membrane voltage\r\nand spike firing. This effect was due to T-type Ca 2+ currents acting in concert with persistent\r\nNa + currents. T-type Ca 2+ currents themselves prolonged excitatory post-synaptic potentials\r\n(EPSPs) to enhance the summation of EPSP trains and augment EPSP-spike coupling in\r\nventral neurons. In contrast, T-type Ca 2+ currents had no effect on dorsal EPSP spike-\r\ncoupling. These findings indicate that by preferentially regulating ventral neuron spike firing\r\nand synaptic potential integration, T-type Ca 2+ currents critically influence the dorsal-ventral\r\ngradient in mEC stellate neuron excitability and associated circuit activity."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266797",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@pa.ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Migliore"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2023-06-22T10:00:51.44",
+ "ver_number": 7
+ },
+ "266798": {
+ "class_id": 19,
+ "created": "2020-08-29T15:01:39.44",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266798,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 266853,
+ "object_name": "Receptive field"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266852,
+ "object_name": "Hay E, Pruszynski JA (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Human tactile FA1 neurons (Hay and Pruszynski 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we show that synaptic integration across the complex signals from the first-order neuronal population could underlie human ability to accurately (< 3\u00b0) and rapidly process the orientation of edges moving across the fingertip. We first derive spiking models of human first-order tactile neurons that fit and predict responses to moving edges with high accuracy. We then use the model neurons in simulating the peripheral neuronal population that innervates a fingertip. We train classifiers performing synaptic integration across the neuronal population activity, and show that synaptic integration across first-order neurons can process edge orientations with high acuity and speed. ... our models suggest that integration of fast-decaying (AMPA-like) synaptic inputs within short timescales is critical for discriminating fine orientations, whereas integration of slow-decaying (NMDA-like) synaptic inputs supports discrimination of coarser orientations and maintains robustness over longer timescales\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266798",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Tactile FA1 Neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "etay.hay@camh.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Etay Hay"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2020-12-09T10:45:35.487",
+ "ver_number": 12
+ },
+ "266799": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Yunliang Zang, Sungho Hong & Erik De Schutter, Firing Rate-dependent Phase Responses of Purkinje Cells Support Transient Oscillations, eLife, in press\r\nhttps://doi.org/10.7554/eLife.60692"
+ },
+ "class_id": 19,
+ "created": "2020-08-29T15:14:04.467",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266799,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244383,
+ "object_name": "Zang, Yunliang "
+ },
+ {
+ "object_id": 153454,
+ "object_name": "Hong, Sungho [shhong at oist.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 137847,
+ "object_name": "Phase Response Curves"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266803,
+ "object_name": "Zang Y, Hong S, De Schutter E (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Purkinje neuron network (Zang et al. 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Both spike rate and timing can transmit information in the brain. Phase response curves (PRCs) quantify how a neuron transforms input to output by spike timing. PRCs exhibit strong firing-rate adaptation, but its mechanism and relevance for network output are poorly understood. Using our Purkinje cell (PC) model we demonstrate that the rate adaptation is caused by rate-dependent subthreshold membrane potentials efficiently regulating the activation of Na+ channels. Then we use a realistic PC network model to examine how rate-dependent responses synchronize spikes in the scenario of reciprocal inhibition-caused high-frequency oscillations. The changes in PRC cause oscillations and spike correlations only at high firing rates. The causal role of the PRC is confirmed using a simpler coupled oscillator network model. This mechanism enables transient oscillations between fast-spiking neurons that thereby form PC assemblies. Our work demonstrates that rate adaptation of PRCs can spatio-temporally organize the PC input to cerebellar nuclei."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266799",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zangyl1983@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yunliang Zang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2020-09-09T12:30:58.993",
+ "ver_number": 4
+ },
+ "266800": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Imam, Nabil, and Barbara Finlay. \"Self-organization of cortical areas in the development and evolution of neocortex: a network growth model.\" bioRxiv (2020)."
+ },
+ "class_id": 19,
+ "created": "2020-08-31T04:40:09.347",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266800,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 267072,
+ "object_name": "Evolution"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267069,
+ "object_name": "Imam N, L Finlay B (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 267071,
+ "object_name": "Network growth"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Self-organization of cortical areas in development and evolution of neocortex (Imam & Finlay 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Using physical parameters representing primary and secondary visual areas as they vary from monkey to mouse, we derived a network growth model to explore if characteristic features of secondary areas could be produced from correlated activity patterns arising from V1 alone.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266800",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ni49@cornell.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Nabil Imam"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 266986,
+ "object_name": "Visual cortex"
+ }
+ ]
+ },
+ "ver_date": "2021-06-30T10:25:01.23",
+ "ver_number": 7
+ },
+ "266802": {
+ "class_id": 19,
+ "created": "2020-09-08T12:47:23.473",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266802,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266888,
+ "object_name": "Li C, Gulledge AT (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "NMDA receptors enhance the fidelity of synaptic integration (Li and Gulledge 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Excitatory synaptic transmission in many neurons is mediated by two co-expressed ionotropic glutamate receptor subtypes, AMPA and NMDA receptors, that differ in their kinetics, ion-selectivity, and voltage-sensitivity. AMPA receptors have fast kinetics and are voltage-insensitive, while NMDA receptors have slower kinetics and increased conductance at depolarized membrane potentials. Here we report that the voltage-dependency and kinetics of NMDA receptors act synergistically to stabilize synaptic integration of excitatory postsynaptic potentials (EPSPs) across spatial and voltage domains. Simulations of synaptic integration in simplified and morphologically realistic dendritic trees revealed that the combined presence of AMPA and NMDA conductances reduces the variability of somatic responses to spatiotemporal patterns of excitatory synaptic input presented at different initial membrane potentials and/or in different dendritic domains. This moderating effect of the NMDA conductance on synaptic integration was robust across a wide range of AMPA-to-NMDA ratios, and results from synergistic interaction of NMDA kinetics (which reduces variability across membrane potential) and voltage-dependence (which favors stabilization across dendritic location). When combined with AMPA conductance, the NMDA conductance balances voltage- and impedance-dependent changes in synaptic driving force, and distance-dependent attenuation of synaptic potentials arriving at the axon, to increase the fidelity of synaptic integration and EPSP-spike coupling across neuron state (i.e., initial membrane potential) and dendritic location of synaptic input. Thus, synaptic NMDA receptors convey advantages for synaptic integration that are independent of, but fully compatible with, their importance for coincidence detection and synaptic plasticity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266802",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "allan@dartmouth.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Allan Gulledge"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2021-01-20T09:51:12.107",
+ "ver_number": 5
+ },
+ "266806": {
+ "class_id": 19,
+ "created": "2020-09-13T09:45:53.813",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266806,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 229586,
+ "object_name": "Masoli, Stefano [stefano.masoli at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 245160,
+ "object_name": "Neurotransmitter dynamics"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266867,
+ "object_name": "Masoli S, Ottaviani A, Casali S, D'Angelo E (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cerebellar Golgi cells, dendritic processing, and synaptic plasticity (Masoli et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112687,
+ "object_name": "Cerebellum golgi cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Golgi cells are the main inhibitory interneurons of the cerebellar granular layer. To study the mechanisms through which these neurons integrate complex input patterns, a new set of models were developed using the latest experimental information and a genetic algorithm approach to fit the maximum ionic channel conductances. The models faithfully reproduced a rich pattern of electrophysiological and pharmacological properties and predicted the operating mechanisms of these neurons."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266806",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stefano.masoli@unipv.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Stefano Masoli"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2021-02-27T17:31:03.857",
+ "ver_number": 7
+ },
+ "266807": {
+ "class_id": 19,
+ "created": "2020-09-15T19:25:00.237",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 140826,
+ "object_name": "I Ca,p"
+ },
+ {
+ "object_id": 252,
+ "object_name": "I Cl,Ca"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266807,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189722,
+ "object_name": "Dorman, Daniel B "
+ },
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267198,
+ "object_name": "Prager EM, Dorman DB, Hobel ZB, Malgady JM, Blackwell KT, Plotkin JL (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 186718,
+ "object_name": "MOOSE/PyMOOSE"
+ }
+ ]
+ },
+ "name": "Striatum D1 Striosome and Matrix Upstates (Prager et al., 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ },
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...We show that dopamine oppositely shapes responses to convergent excitatory inputs in mouse striosome and matrix striatal spiny projection neurons (SPNs). Activation of postsynaptic D1 dopamine receptors promoted the generation of long-lasting synaptically evoked 'up-states' in matrix SPNs but opposed it in striosomes, which were more excitable under basal conditions. Differences in dopaminergic modulation were mediated, in part, by dendritic voltage-gated calcium channels (VGCCs): pharmacological manipulation of L-type VGCCs reversed compartment-specific responses to D1 receptor activation...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266807",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ddorman@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniel Dorman"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2021-11-16T10:17:34.903",
+ "ver_number": 8
+ },
+ "266811": {
+ "class_id": 19,
+ "created": "2020-09-17T05:08:59.13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266811,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 148255,
+ "object_name": "Jedlicka, Peter [jedlicka at em.uni-frankfurt.de]"
+ },
+ {
+ "object_id": 266890,
+ "object_name": "Kilb, Werner [wkilb at uni-mainz.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266942,
+ "object_name": "Kolbaev SN, Mohapatra N, Chen R, Lombardi A, Staiger JF, Luhmann HJ, Jedlicka P, Kilb W (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cl- homeostasis in immature hippocampal CA3 neurons (Kolbaev et al 2020)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model used for the revision of the manuscript.\r\nInsertion of a passive Cl- flux and an active Cl-accumulation. Parameters adapted to match the properties of [Cl-]i determined in immature rat CA3 neurons in-vitro."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266811",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Ionic plasticity"
+ },
+ "other_gene": {
+ "attr_id": 477,
+ "value": "NKCC1 (SLC12A2)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wkilb@uni-mainz.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Werner Kilb"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2021-01-20T10:27:02.117",
+ "ver_number": 2
+ },
+ "266814": {
+ "class_id": 19,
+ "created": "2020-09-18T14:27:29.06",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 266814,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234091,
+ "object_name": "Knowlton, Christopher [cknow1 at lsuhsc.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267639,
+ "object_name": "Knowlton CJ, Ziouziou TI, Hammer N, Roeper J, Canavier CC (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Maximal firing rate in midbrain dopamine neurons (Knowlton et al., 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 261,
+ "object_name": "Substantia nigra pars compacta DA cell"
+ },
+ {
+ "object_id": 189152,
+ "object_name": "Ventral tegmental area dopamine neuron"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266814",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cknow1@lsuhsc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Christopher Knowlton"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T11:02:26.65",
+ "ver_number": 10
+ },
+ "266818": {
+ "class_id": 19,
+ "created": "2020-10-05T08:51:39.717",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266818,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206273,
+ "object_name": "Goldfarb, Mitchell goldfarb at genectr.hunter.cuny.edu]"
+ },
+ {
+ "object_id": 116577,
+ "object_name": "Solinas, Sergio [solinas at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 52407,
+ "object_name": "Heart disease"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266832,
+ "object_name": "Park DS, Shekhar A, Santucci Iii J, Redel-Traub G, Solinas SM, Mintz S, Lin X, Chang EW, Narke D, Xia Y, Goldfarb M, Fishman GI (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "FHF2KO and Wild-Type Mouse Cardiomyocyte Strands (Park et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Fhf2WT and Fhf2KO mouse ventricular cardiomyocyte models differ only in the inactivation gating of voltage-gated sodium channels. Cardiomyocyte linear strands were constructed by electrically coupling 111 model cells. Action potential conduction through the Fhf2KO strand is blocked by a range of stressors, including temperature elevation or reduction in sodium, calcium, or gap junctional conductance densities. Conduction through the Fhf2WT model strand is resistant to these stresses."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266818",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Kdr"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cardiac Myocite"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Myocite"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "smgsolinas@uniss.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sergio Solinas"
+ },
+ "ver_date": "2023-02-06T10:48:18.18",
+ "ver_number": 22
+ },
+ "266819": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Tiina Manninen, Ausra Saudargiene, and Marja-Leena Linne. Astrocyte-mediated spike-timing-dependent long-term depression modulates synaptic properties in the developing cortex. Accepted to PLoS Comput Biol, 2020."
+ },
+ "class_id": 19,
+ "created": "2020-10-05T15:20:04.767",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 88211,
+ "object_name": "I_SERCA"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 263960,
+ "object_name": "I C"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266819,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 223270,
+ "object_name": "Manninen, Tiina [tiina.h.manninen at gmail.com]"
+ },
+ {
+ "object_id": 157159,
+ "object_name": "Saudargiene, Ausra [ausra.saudargiene at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266838,
+ "object_name": "Manninen T, Saudargiene A, Linne ML (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A synapse model for developing somatosensory cortex (Manninen et al 2020)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ },
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ },
+ {
+ "object_id": 114635,
+ "object_name": "Neocortex spiny stellate cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 184489,
+ "object_name": "Endocannabinoid"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We developed a model for an L4-L2/3 synapse in somatosensory cortex to study the role of astrocytes in modulation of t-LTD. Our model includes the one-compartmental presynaptic L4 spiny stellate cell, two-compartmental (soma and dendrite) postsynaptic L2/3 pyramidal cell, and one-compartmental fine astrocyte process."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266819",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tiina.h.manninen@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tiina Manninen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ },
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228597,
+ "object_name": "Barrel cortex"
+ }
+ ]
+ },
+ "ver_date": "2020-11-12T11:20:31.71",
+ "ver_number": 11
+ },
+ "266823": {
+ "class_id": 19,
+ "created": "2020-10-23T05:52:51.33",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266823,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 148255,
+ "object_name": "Jedlicka, Peter [jedlicka at em.uni-frankfurt.de]"
+ },
+ {
+ "object_id": 266890,
+ "object_name": "Kilb, Werner [wkilb at uni-mainz.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 143004,
+ "object_name": "Chloride regulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266889,
+ "object_name": "Lombardi A, Jedlicka P, Luhmann HJ, Kilb W (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Coincident glutamatergic depolarization effects on Cl- dynamics (Lombardi et al, 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we used compartmental biophysical models of Cl- dynamics simulating either a simple ball-and-stick topology or a reconstructed CA3 neuron. These computational experiments demonstrated that glutamatergic co-stimulation enhances GABA receptor-mediated Cl- influx at low and attenuates or reverses the Cl- efflux at high initial [Cl-]i. The size of glutamatergic influence on GABAergic Cl--fluxes depends on the conductance, decay kinetics, and localization of glutamatergic inputs. Surprisingly, the glutamatergic shift in GABAergic Cl--fluxes is invariant to latencies between GABAergic and glutamatergic inputs over a substantial interval...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266823",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wkilb@uni-mainz.dew"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Werner Kilb"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "ver_date": "2021-01-20T10:24:26.61",
+ "ver_number": 5
+ },
+ "266836": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Geerts, Chersi, Stachenfeld & Burgess (in press). A general model of hippocampal and dorsal striatal learning and decision making. PNAS"
+ },
+ "class_id": 19,
+ "created": "2020-11-10T08:35:22.843",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266836,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83573,
+ "object_name": "Action Selection/Decision Making"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266847,
+ "object_name": "Geerts JP, Chersi F, Stachenfeld KL, Burgess N (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 146899,
+ "object_name": "Cython"
+ }
+ ]
+ },
+ "name": "A general model of hippocampal and dorsal striatal learning and decision making (Geerts et al 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Python and Cython implementation of a dual-systems reinforcement learning model that solves navigation and decision tasks using model-free and successor representation strategies. For questions, please contact jesse.geerts.14@ucl.ac.uk."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266836",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jesse.geerts.14@ucl.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jesse Geerts"
+ },
+ "ver_date": "2020-11-29T12:05:52.187",
+ "ver_number": 5
+ },
+ "266837": {
+ "class_id": 19,
+ "created": "2020-11-10T11:26:10.6",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266837,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 234452,
+ "object_name": "Terman, David [terman at math.ohio-state.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 235462,
+ "object_name": "Spreading depolarization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 235419,
+ "object_name": "Huguet G, Joglekar A, Messi LM, Buckalew R, Wong S, Terman D (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Neuroprotective Role of Gap Junctions in a Neuron Astrocyte Network Model (Huguet et al 2016)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A detailed biophysical model for a neuron/astrocyte network is developed to explore mechanisms responsible for the initiation and propagation of cortical spreading depolarizations and the role of astrocytes in maintaining ion homeostasis, thereby preventing these pathological waves... properties of spreading depolarizations, such as wave speed and duration of depolarization, depend on several factors, including the neuron and astrocyte Na+-K+ ATPase pump strengths. In particular, we consider the neuroprotective role of astrocyte gap junction coupling. The model demonstrates that a syncytium of electrically coupled astrocytes can maintain a physiological membrane potential in the presence of an elevated extracellular K+ concentration and efficiently distribute the excess K+ across the syncytium.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266837",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "Terman.l@osu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "David Terman"
+ },
+ "ver_date": "2020-11-15T12:30:01.17",
+ "ver_number": 3
+ },
+ "266839": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.biorxiv.org/content/10.1101/2020.11.12.362491v1"
+ },
+ "class_id": 19,
+ "created": "2020-11-17T18:43:38.76",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266839,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267249,
+ "object_name": "Church E, Hamid E, Zurawski Z, Pocoava M, Flores-Barrera E, Cabalero A, Tseng KY, Alford S (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2835,
+ "object_name": "MCell"
+ }
+ ]
+ },
+ "name": "Synaptic vesicle fusion model (Church et al 2021)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These parameter files define Cell simulations of glutamate release and receptor binding at synapses. Four basic models are included that vary, the pore diameter of a fusing vesicle from full fusion (FullFusion) to a variable sized pore from a small as 0.4nm (DelayFusion), that vary the umber of fusing vesicles (Multivesicular) or that vary the position of the fusing vesicle with the post synaptic glutamate receptors (Clustered receptors). Our work demonstrates that experimental effects on release and low affinity antagonism are well-fit by reduced release rates of glutamate from a restricted pore."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266839",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sta@uic.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Simon Alford"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-01-18T23:11:22.803",
+ "ver_number": 2
+ },
+ "266840": {
+ "citation": {
+ "attr_id": 391,
+ "value": "32293081"
+ },
+ "class_id": 19,
+ "created": "2020-11-24T09:59:44.93",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266840,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266845,
+ "object_name": "Lu Y, Sarter M, Zochowski M, Booth V (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Phasic ACh promotes gamma oscillations in E-I networks (Lu et al, 2020)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In a biophysically-based model, we show that a network of excitatory (E) and inhibitory (I) neurons that initially displays asynchronous firing can generate transient gamma oscillatory activity in response to simulated brief pulses of ACh. ACh effects are simulated as transient modulation of the conductance of an M-type K+ current which is blocked by activation of muscarinic receptors and has significant effects on neuronal excitability. The ACh-induced effects on the M current conductance, gks, change network dynamics to promote the emergence of network gamma rhythmicity through a Pyramidal-Interneuronal Network Gamma (PING) mechanism."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266840",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vbooth@umich.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Victoria Booth"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2020-11-29T11:53:29.24",
+ "ver_number": 3
+ },
+ "266841": {
+ "citation": {
+ "attr_id": 391,
+ "value": "28591611"
+ },
+ "class_id": 19,
+ "created": "2020-11-24T10:34:11.723",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 266841,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266879,
+ "object_name": "Montefusco, Francesco [montefusco at dei.unipd.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 238957,
+ "object_name": "Markov-type model"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266875,
+ "object_name": "Montefusco F, Tagliavini A, Ferrante M, Pedersen MG (2017)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "BK - CaV coupling (Montefusco et al. 2017)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 62277,
+ "object_name": "Pituitary cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An implementation of coupling between BK_Ca channels and CaV channels suitable for use in whole cell models."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266841",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "ion channel coupling"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hypothalamic neurosecretory cell"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Human beta-cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "carnevalet@protonmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ted Carnevale"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ },
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2021-02-22T23:03:07.347",
+ "ver_number": 16
+ },
+ "266842": {
+ "class_id": 19,
+ "created": "2020-11-24T11:27:12.3",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266842,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266862,
+ "object_name": "Schreglmann S, Wang D, Peach R, Li J, Zhang X, Latorre A, Rhodes E, Panella E, Boyden ES, Barahona M, Santaniello S, Bhatia KP, Rothwell J, Grossman N (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A cerebellar model of phase-locked tACS for essential tremor (Schreglmann et al., 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ },
+ {
+ "object_id": 144503,
+ "object_name": "Inferior olive neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is a supplementary material for Schreglmann, Sebastian R., et al. \"Non-invasive suppression of essential tremor via phase-locked disruption of its temporal coherence\" Nature Communications (2021). The model demonstrates that phase-locked transcranial alternating current stimulation (tACS) is able to disrupt the tremor-related oscillations in the cerebellum, and its efficacy is highly dependent on the relative phase between the stimulation and tremor."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266842",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "xu.3.zhang@uconn.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Xu Zhang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2021-02-27T13:04:26.447",
+ "ver_number": 24
+ },
+ "266844": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Under review (Extra-large spines distort neuronal computation in synaptic disorders)"
+ },
+ "class_id": 19,
+ "created": "2020-11-28T22:01:11.437",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": true
+ },
+ "id": 266844,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267765,
+ "object_name": "Obi-Nagata K, Suzuki N, Miyake R, MacDonald ML, Fish KN, Ozawa K, Nagahama K, Okimura T, Tanaka S, Kano M, Fukazawa Y, Sweet RA, Hayashi-Takagi A (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Neuronal computation evoked by extra-large spines (Obi-Nagata et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Human genetics strongly support the involvement of synaptopathy in psychiatric disorders. However, trans-scale causality linking synapse pathology to behavioral changes is lacking. To address this question, we examined the effects of synaptic inputs on dendrites, cells, and behaviors of mice with knockdown of SETD1A and DISC1, which are validated animal models of schizophrenia. Both models exhibited an overrepresentation of extra-large (XL) synapses, which evoked supralinear dendritic and somatic integration, resulting in increased neuronal firing. The probability of XL spines correlated negatively with working memory, and the optical prevention of XL spine generation restored working memory impairment. Furthermore, XL synapses were significantly more abundant in the postmortem brains of schizophrenia patients than in those of matched controls. Our findings suggest that working memory performance, a pivotal aspect of psychiatric symptoms, is shaped by distorted dendritic and somatic integration via extra-large spines."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266844",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "norimitsu.suzuki@riken.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Norimitsu Suzuki"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2023-06-11T10:23:32.03",
+ "ver_number": 7
+ },
+ "266848": {
+ "class_id": 19,
+ "created": "2020-11-30T05:36:25.623",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266848,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 170033,
+ "object_name": "Migliore, Rosanna [rosanna.migliore at cnr.it]"
+ },
+ {
+ "object_id": 267061,
+ "object_name": "Vitale, Paola [paola.vitale at ibf.cnr.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 267060,
+ "object_name": "eFEL"
+ }
+ ]
+ },
+ "name": "Age-dependent excitability of CA1 pyramidal neurons in APPPS1 Alzheimer's model (Vitale et al 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Age-dependent accumulation of amyloid-b, provoking increasing brain amyloidopathy, triggers abnormal patterns of neuron activity and circuit synchronization in Alzheimer\u2019s disease (AD) as observed in human AD patients and AD mouse models. Recent studies on AD mouse models, mimicking this age-dependent amyloidopathy, identified alterations in CA1 neuron excitability. However, these models generally also overexpress mutated amyloid precursor protein (APP) and presenilin 1 (PS1) and there is a lack of a clear correlation of neuronal excitability alterations with progressive amyloidopathy. The active development of computational models of AD points out the need of collecting such experimental data to build a reliable disease model exhibiting AD-like disease progression. We therefore used the feature extraction tool of the Human Brain Project (HBP) Brain Simulation Platform to systematically analyze the excitability profile of CA1 pyramidal neuron in the APPPS1 mouse model. We identified specific features of neuron excitability that best correlate either with over-expression of mutated APP and PS1 or increasing Ab amyloidopathy. Notably, we report strong alterations in membrane time constant and action potential width and weak alterations in firing behavior. Also, using a CA1 pyramidal neuron model, we evidence amyloidopathy-dependent alterations in Ih. Finally, cluster analysis of these recordings showed that we could reliably assign a trace to its correct group, opening the door to a more refined, less variable analysis of AD-affected neurons. This inter-disciplinary analysis, bringing together experimentalists and modelers, helps to further unravel the neuronal mechanisms most affected by AD and to build a biologically plausible computational model of the AD brain.\r\n\r\n\r\nReference: Paola Vitale, Ana Rita Salgueiro-Pereira, Carmen Alina Lupascu, Rosanna Migliore, Michele Migliore, H\u00e9l\u00e8ne Marie. \"Analysis of age-dependent alterations in excitability properties of CA1 pyramidal neurons in an APPPS1 model of Alzheimer's disease\". Frontiers in Aging Neuroscience (2021) DOI: 10.3389/fnagi.2021.668948"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266848",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampus CA1 pyramidal cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@pa.ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Migliore"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2021-06-09T10:37:00.917",
+ "ver_number": 19
+ },
+ "266849": {
+ "class_id": 19,
+ "created": "2020-12-01T02:57:23.19",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266849,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 185343,
+ "object_name": "Persistent activity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266870,
+ "object_name": "Coppolino S, Giacopelli G, Migliore M (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 116010,
+ "object_name": "PyNN"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Single Trial Sequence learning: a spiking neurons model based on hippocampus (Coppolino et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In contrast with our everyday experience using brain circuits, it can take a prohibitively long time to train a computational system to produce the correct sequence of outputs in the presence of a series of inputs. This suggests that something important is missing in the way in which models are trying to reproduce basic cognitive functions. \r\nIn this work, we introduce a new neuronal network architecture that is able to learn, in a single trial, an arbitrary long sequence of any known objects. The key point of the model is the explicit use of mechanisms and circuitry observed in the hippocampus. By directly following the natural system\u2019s layout and circuitry, this type of implementation has the additional advantage that the results can be more easily compared to experimental data, allowing a deeper and more direct understanding of the mechanisms underlying cognitive functions and dysfunctions."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266849",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "simone.coppolino@ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Simone Coppolino"
+ },
+ "ver_date": "2021-01-06T13:13:59.547",
+ "ver_number": 17
+ },
+ "266850": {
+ "citation": {
+ "attr_id": 391,
+ "value": "The input-output relation of primary nociceptive neurons is determined by the morphology of the peripheral nociceptive terminals.\r\nBarkai O, Butterman R, Katz B, Lev S, Binshtok AM.\r\nJ Neurosci. 2020. doi: 10.1523/JNEUROSCI.1546-20.2020"
+ },
+ "class_id": 19,
+ "created": "2020-12-01T10:19:43.777",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266850,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266856,
+ "object_name": "Barkai O, Butterman R, Katz B, Lev S, Binshtok AM (2020)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A model for a nociceptor terminal and terminal tree (Barkai et al., 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was used to study how the architecture of the nociceptor terminal tree affects the input-output relation of the primary nociceptive neurons. The model shows that the input-output properties of the nociceptive neurons depend on the length, the axial resistance, and location of individual terminals and that activation of multiple terminals by a capsaicin-like current allows summation of the responses from individual terminals, thus leading to increased nociceptive output."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266850",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "omer.barkai@mail.huji.ac.il"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Omer Barkai"
+ },
+ "ver_date": "2020-12-09T11:14:30.523",
+ "ver_number": 5
+ },
+ "266851": {
+ "class_id": 19,
+ "created": "2020-12-04T09:15:39.733",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 266958,
+ "object_name": "TASK channel"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266851,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266959,
+ "object_name": "Kelley, Craig"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 266957,
+ "object_name": "Impedance"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266956,
+ "object_name": "Kelley C, Dura-Bernal S, Neymotin SA, Antic SD, Carnevale NT, Migliore M, Lytton WW (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 195884,
+ "object_name": "NetPyNE"
+ }
+ ]
+ },
+ "name": "Dendritic Impedance in Neocortical L5 PT neurons (Kelley et al. 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 227970,
+ "object_name": "Neocortex M1 L5B pyramidal pyramidal tract GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We simulated chirp current stimulation in the apical dendrites of 5 biophysically-detailed multi-compartment models of neocortical pyramidal tract neurons and found that a combination of HCN channels and TASK-like channels produced the best fit to experimental measurements of dendritic impedance. We then explored how HCN and TASK-like channels can shape the dendritic impedance as well as the voltage response to synaptic currents."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266851",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "craig.kelley@downstate.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Craig Kelley"
+ },
+ "ver_date": "2021-11-05T13:38:55.813",
+ "ver_number": 11
+ },
+ "266863": {
+ "class_id": 19,
+ "created": "2020-12-16T21:00:00.23",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266863,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 186894,
+ "object_name": "Tikidji-Hamburyan, Ruben [ruben.tikidji.hamburyan at gmail.com] "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267011,
+ "object_name": "Tikidji-Hamburyan RA, Colonnese MT (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ },
+ {
+ "object_id": 146899,
+ "object_name": "Cython"
+ }
+ ]
+ },
+ "name": "PLS-framework (Tikidji-Hamburyan and Colonnese 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Numerical simulations become incredibly challenging when an extensive network with a detailed representation of each neuron needs to be modeled over a long time interval to study slow evolving processes, e.g. development of the thalamocortical circuits. Here we suggest a simple, powerful and flexible approach in which we approximate the right-hand sides of differential equations by combinations of functions from three families: Polynomial, piecewise-Linear, Step (PLS). To obtain a single coherent framework, we provide four core principles in which PLS functions should be combined. We show the rationale behind each of the core principles. Two examples illustrate how to build a conductance-based or phenomenological model using the PLS-framework. We use the first example as a benchmark on three different computational platforms: CPU, GPU, and mobile system-on-chip devices.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266863",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ruben.tikidji.hamburyan@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ruben Tikidji-Hamburyan"
+ },
+ "ver_date": "2021-03-30T17:25:25.047",
+ "ver_number": 9
+ },
+ "266864": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Y. Zang and E. De Schutter: The Cellular Electrophysiological Properties Underlying Multiplexed Coding in Purkinje Cells. Journal of Neuroscience, in press."
+ },
+ "class_id": 19,
+ "created": "2020-12-20T12:42:09.13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266864,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244383,
+ "object_name": "Zang, Yunliang "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 240376,
+ "object_name": "Temporal Coding"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266904,
+ "object_name": "Zang Y, De Schutter E (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Multiplexed coding in Purkinje neuron dendrites (Zang and De Schutter 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neuronal firing patterns are crucial to underpin circuit level behaviors. In cerebellar Purkinje cells (PCs), both spike rates and pauses are used for behavioral coding, but the cellular mechanisms causing code transitions remain unknown. We use a well-validated PC model to explore the coding strategy that individual PCs use to process parallel fiber (PF) inputs. We find increasing input intensity shifts PCs from linear rate-coders to burst-pause timing-coders by triggering localized dendritic spikes. We validate dendritic spike properties with experimental data, elucidate spiking mechanisms, and predict spiking thresholds with and without inhibition. Both linear and burst-pause computations use individual branches as computational units, which challenges the traditional view of PCs as linear point neurons. Dendritic spike thresholds can be regulated by voltage state, compartmentalized channel modulation, between-branch interaction and synaptic inhibition to expand the dynamic range of linear computation or burst-pause computation. In addition, co-activated PF inputs between branches can modify somatic maximum spike rates and pause durations to make them carry analogue signals. Our results provide new insights into the strategies used by individual neurons to expand their capacity of information processing. "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266864",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zangyl1983@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yunliang Zang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2021-02-03T13:39:52.9",
+ "ver_number": 12
+ },
+ "266868": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Behavioral Time Scale Plasticity of Place Fields: Mathematical Analysis\r\nHarel Z. Shouval, Ian Cone\r\nbioRxiv 2020.09.11.293787; doi: https://doi.org/10.1101/2020.09.11.293787"
+ },
+ "class_id": 19,
+ "created": "2021-01-05T21:06:10.35",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266868,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 266945,
+ "object_name": "Eligibility traces"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266944,
+ "object_name": "Cone I, Shouval HZ (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Mathematical model of behavioral time scale plasticity (BTSP) of place fields (Shouval & Cone 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Inspired by experiments showing the generation of place fields in hippocampal CA1 neurons, this model describes CA3 to CA1 synaptic plasticity occurring on behavioral time-scales (order of seconds). Presynaptic activity induces LTP and LTD eligibility traces which are converted into synaptic changes upon the occurrence of an instructive signal, corresponding to the plateau potential in experiments."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266868",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "iancone@rice.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ian Cone"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2021-02-27T13:17:56.72",
+ "ver_number": 6
+ },
+ "266871": {
+ "citation": {
+ "attr_id": 391,
+ "value": "M. Budak, K. Grosh, A. Sasmal, G. Corfas, M. Zochowski and V. Booth. Contrasting mechanisms for hidden hearing loss: synaptopathy vs myelin defects. PLoS Comput Bio, in press, 2021."
+ },
+ "class_id": 19,
+ "created": "2021-01-12T14:46:59.38",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266871,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266878,
+ "object_name": "Budak M, Gros K, Corfas G, Zochowski M, Booth V (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Sound-evoked activity in peripheral axons of type I spiral ganglion neurons (Budak et al. 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ },
+ {
+ "object_id": 52419,
+ "object_name": "Auditory nerve"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using this model, we investigated the implications of two mechanisms underlying the auditory neuropathy known as hidden hearing loss, namely synaptopathy and myelinopathy, on sound-evoked spike generation and timing in the peripheral axons of type I spiral ganglion neurons (SGNs). The model is a reduced biophysical model consisting of a population of myelinated SGN axonal fibers whose firing activity is driven by a previously developed, well accepted model for cochlear sound processing. Using the model, we investigated how synapse loss (synaptopathy) or disruption of myelin organization (myelinopathy) affected spike generation on the axons and the profile of the compound action potential (CAP) signal computed from the spike activity. Synaptopathy and myelinopathy were implemented by removing synapses and by varying the position of SGN heminodes (the nodal structures closest to the inner hair cell synapse where action potentials are generated), respectively. Model results showed that heminode disruption caused decreased amplitude and increased latency of sound-evoked CAPs. In addition, significant elongation of the initial axon segment caused spike generation failure leading to decreased spiking probability. In contrast, synaptopathy, solely decreased probability of firing, subsequently decreasing CAP peak amplitude without affecting its latency, similar to observations in noise exposed animals. Model results reveal the disruptive effect of synaptopathy or myelinopathy on neural activity in the peripheral auditory system that may contribute to perceptual deficits."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266871",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "spiral ganglion neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "vbooth@umich.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Victoria Booth"
+ },
+ "ver_date": "2021-01-13T15:18:48.227",
+ "ver_number": 2
+ },
+ "266872": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Romaro, C., Najman, F. A., Lytton, W. W., Roque, A. C., and Dura-Bernal, S. (2020).\r\nNetPyNE implementation and rescaling of the Potjans-Diesmann cortical microcircuit model.\r\narXiv preprint arXiv:2005.03764\r\n\r\nRomaro, C. (2020) STUDIES IN CORTICAL NETWORK MODELS (teses.usp.br)"
+ },
+ "class_id": 19,
+ "created": "2021-01-13T07:56:42.497",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266872,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182905,
+ "object_name": "Dura-Bernal, Salvador [salvadordura at gmail.com]"
+ },
+ {
+ "object_id": 267282,
+ "object_name": "Romaro, Cecilia [ceciliaromaro at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267285,
+ "object_name": "Romaro C, Najman FA, Lytton WW, Roque AC, Dura-Bernal S (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 195884,
+ "object_name": "NetPyNE"
+ }
+ ]
+ },
+ "name": "Potjans-Diesmann cortical microcircuit model in NetPyNE (Romaro et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Potjans-Diesmann cortical microcircuit model is a widely used model originally implemented in NEST. Here, we re-implemented the model using NetPyNE, a high-level Python interface to the NEURON simulator, and reproduced the findings of the original publication. We also implemented a method for rescaling the network size which preserves first and second order statistics, building on existing work on network theory. The new implementation enables using more detailed neuron models with multicompartment morphologies and multiple biophysically realistic channels. This opens the model to new research, including the study of dendritic processing, the influence of individual channel parameters, and generally multiscale interactions in the network. The rescaling method provides flexibility to increase or decrease the network size if required when running these more realistic simulations. Finally, NetPyNE facilitates modifying or extending the model using its declarative language; optimizing model parameters; running efficient large-scale parallelized simulations; and analyzing the model through built-in methods, including local field potential calculation and information flow measures."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266872",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ceciliaromaro@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Cecilia Romaro"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 144485,
+ "object_name": "Auditory cortex"
+ },
+ {
+ "object_id": 115949,
+ "object_name": "Olfactory cortex"
+ }
+ ]
+ },
+ "ver_date": "2022-02-13T14:03:33.97",
+ "ver_number": 3
+ },
+ "266880": {
+ "class_id": 19,
+ "created": "2021-01-15T12:20:06.367",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266880,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 266891,
+ "object_name": "Paranoia"
+ },
+ {
+ "object_id": 266892,
+ "object_name": "COVID-19"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267102,
+ "object_name": "Suthaharan P, Reed EJ, Leptourgos P, Kenney JG, Uddenberg S, Mathys CD, Litman L, Robinson J, Moss AJ, Taylor JR, Groman SM, Colett PR (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 266894,
+ "object_name": "Multilayer Hierarchical Gaussian filter (HGF)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150209,
+ "object_name": "R"
+ }
+ ]
+ },
+ "name": "Paranoia and belief updating during a crisis (Suthaharan et al., 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Perceptual model with three hierarchical layers defined by probability distributions: (1) reward belief, (2) contingency beliefs, (3) volatility beliefs used to investigate the relationship between real-world uncertainty, paranoia, and laboratory task behavior."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266880",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "praveen.suthaharan@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Praveen Suthaharan"
+ },
+ "ver_date": "2021-08-10T17:15:35.167",
+ "ver_number": 11
+ },
+ "266881": {
+ "class_id": 19,
+ "created": "2021-01-15T12:21:22.953",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266881,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266748,
+ "object_name": "Demaegd, Maggie [mdemaeg at ilstu.edu]"
+ },
+ {
+ "object_id": 267097,
+ "object_name": "Stein, Wolfgang [wstein@ilstu.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267096,
+ "object_name": "DeMaegd ML, Stein W (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A neurite to measure ePSP and AP amplitude after passive spread (DeMaegd & Stein, 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Increasing temperatures overwhelmingly shunts dendritic electrical spread in a crustacean motor neuron (LG) leading to the disruption of a vital pattern generator. LG recieves synaptic input from a descending projection neuron (MCN1) via a chemical and electrical synapse. Warmer temperatures increase leak conductances in the neurite and increase the synaptic input. Here, we modelled the conflicting influence of temperature at the MCN1-LG synapse and LG neurite to determine the resulting ePSP and AP amplitude measured at different distanced from the synaptic input after passive progation through the neurite."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266881",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mdemaeg@ilstu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Margaret L. DeMaegd"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "ver_date": "2021-08-10T16:41:09.577",
+ "ver_number": 9
+ },
+ "266895": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Bauer, R., Clowry, G. and Kaiser, M., 2021. Creative destruction: a basic computational model of cortical layer formation. Cerebral Cortex"
+ },
+ "class_id": 19,
+ "created": "2021-01-21T09:29:45.68",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266895,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266897,
+ "object_name": "Bauer R, Clowry G, Kaiser M (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 266899,
+ "object_name": "Agent-based model"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 266898,
+ "object_name": "Cx3Dp"
+ }
+ ]
+ },
+ "name": "An agent-based computational model for cortical layer formation (Bauer et al 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This computational model can account for layer-specific neuron numbers in various different cortical structures. It is agent-based and is initiated from a small homogeneous pool of precursor cells. The file Lamination.java includes the main function that induces the activation of multiple \"modules\" within a gene regulatory network."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266895",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "r.bauer@surrey.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roman Bauer"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2021-01-21T21:26:39.927",
+ "ver_number": 4
+ },
+ "266900": {
+ "class_id": 19,
+ "created": "2021-01-22T06:22:06.663",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266900,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ },
+ {
+ "object_id": 143720,
+ "object_name": "Bianchi, Daniela [danielabianchi12 -at- gmail.com]"
+ },
+ {
+ "object_id": 170033,
+ "object_name": "Migliore, Rosanna [rosanna.migliore at cnr.it]"
+ },
+ {
+ "object_id": 267061,
+ "object_name": "Vitale, Paola [paola.vitale at ibf.cnr.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267257,
+ "object_name": "Bianchi D, Migliore R, Vitale P, Garad M, Pousinha PA, Marie H, Lessmann V, Migliore M (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Membrane electrical properties of mouse CA1 pyramidal cells during strong inputs (Bianchi et al 22)",
+ "notes": {
+ "attr_id": 24,
+ "value": "ABSTRACT: In this work we highlight an electrophysiological feature, often observed in recordings from mouse CA1 pyramidal cells, which has been so far ignored by experimentalists and modelers. It consists of a large and dynamic increase in the depolarization baseline (i.e. the minimum value of the membrane potential between successive action potentials during a sustained input) in response to strong somatic current injections. Such an increase can directly affect neurotransmitter release properties and, more generally, efficacy of synaptic transmission. However, it cannot be explained by any currently available conductance-based computational model. Here we present a model addressing this issue, demonstrating that experimental recordings can be reproduced by assuming that an input current modifies, in a time-dependent manner, the electrical and permeability properties of the neuron membrane by shifting the ionic reversal potentials and channel kinetics. For this reason, we propose that any detailed model of ion channel kinetics, for neurons exhibiting this characteristic, should be adapted to correctly represent the response and the synaptic integration process during strong and sustained inputs. "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266900",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I_CaT, I_CaL"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampus CA1 pyramidal cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@pa.ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Migliore"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-01-18T22:16:28.837",
+ "ver_number": 18
+ },
+ "266901": {
+ "class_id": 19,
+ "created": "2021-01-24T07:38:13.283",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266901,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267021,
+ "object_name": "Tomko M, Benuskova L, Jedlicka P (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Reduced-morphology model of CA1 pyramidal cells optimized + validated w/ HippoUnit (Tomko et al '21)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here we employ the HippoUnit tests to optimize and validate our new compartmental model with reduced morphology. We show that our model is able to account for the following six well-established characteristic anatomical and physiological properties of CA1 pyramidal cells: (1) The reduced dendritic morphology contains all major dendritic branch classes. In addition to anatomy, the model reproduces also 5 key physiological features, including (2) somatic electrophysiological responses, (3) depolarization block, (4) EPSP attenuation (5) action potential (AP) backpropagation, and (6) synaptic integration at oblique dendrites."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266901",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "matus.tomko@fmph.uniba.sk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Matus Tomko"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-01-09T05:54:19.527",
+ "ver_number": 12
+ },
+ "266902": {
+ "citation": {
+ "attr_id": 391,
+ "value": "The paper describing this model is being revised for J. Neurophysiol. Acceptance is not guaranteed."
+ },
+ "class_id": 19,
+ "created": "2021-01-29T14:24:05.653",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266902,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267234,
+ "object_name": "Traub RD, Tu Y, Whittington MA (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Piriform cortex network model with multicompartment neurons for cell assemblies (Traub et al 2021)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model contains layer 2 and layer 3 pyr cells, semilunar cells, and multiple types of superficial and deep interneurons. Used to investigate how cell assemblies and sharp waves emerge in different parameter regimes. Correlated with experimental recording. May be useful to better understand how the structure could be used for associative memory."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266902",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rtraub@us.ibm.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roger Dennis Traub"
+ },
+ "ver_date": "2021-12-17T13:28:22.973",
+ "ver_number": 4
+ },
+ "266905": {
+ "class_id": 19,
+ "created": "2021-02-10T12:37:04.26",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266905,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266908,
+ "object_name": "Conde, James"
+ },
+ {
+ "object_id": 240367,
+ "object_name": "Dewell, Richard Burkett [dewell at bcm.edu]"
+ },
+ {
+ "object_id": 33804,
+ "object_name": "Gabbiani, F"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 5232,
+ "object_name": "Traub RD, Wong RK, Miles R, Michelson H (1991)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "CA3 hippocampal pyramidal neuron with voltage-clamp intrinsic conductance data (Traub et al 1991)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a third-party implementation of the model from Traub et al 1991; as of 2021, Google Scholar reports about 780 citation articles. This model was one of the first biophysical models of a hippocampal pyramidal neuron with realistic conductances and the conductance equations have been used as a starting point for many models since, particularly those examining calcium dynamics and bursting."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266905",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dewell@bcm.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard B. Dewell"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2021-02-22T19:46:30.927",
+ "ver_number": 10
+ },
+ "266910": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Giacopelli et al., 2021"
+ },
+ "class_id": 19,
+ "created": "2021-02-12T07:59:08.997",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266910,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 262437,
+ "object_name": "Giacopelli, Giuseppe [giuseppe.giacopelli at unipa.it]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267172,
+ "object_name": "Giacopelli G, Tegolo D, Migliore M (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "The role of network connectivity on epileptiform activity (Giacopelli et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 188553,
+ "object_name": "Abstract Hindmarsh-Rose neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A number of potentially important mechanisms have been identified as key players to generate epileptiform activity, such as genetic mutations, activity-dependent alteration of synaptic functions, and functional network reorganization at the macroscopic level. Here we study how network connectivity at cellular level can affect the onset of epileptiform activity, using computational model networks with different wiring properties. The model suggests that networks connected as in real brain circuits are more resistant to generate seizure-like activity. The results suggest new experimentally testable predictions on the cellular network connectivity in epileptic individuals, and highlight the importance of using the appropriate network connectivity to investigate epileptiform activity with computational models."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266910",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Migliore"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115960,
+ "object_name": "Generic"
+ }
+ ]
+ },
+ "ver_date": "2021-10-21T22:19:06.677",
+ "ver_number": 7
+ },
+ "266925": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.biorxiv.org/content/10.1101/2020.10.23.352120v1"
+ },
+ "class_id": 19,
+ "created": "2021-02-16T15:52:58.697",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266925,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266932,
+ "object_name": "Balmer TS, Borges-Merjane C, Trussell LO (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Ambient glutamate shapes AMPA receptor responses to simulated transients (Balmer et al. 2021)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To explore how ambient glutamate contributes to the generation of ultra-slow signaling through AMPARs at the cerebellar unipolar brush cell synapse, we created this 13-state kinetic model in NEURON. A tool was also created to produce trains of glutamate concentration transients using 2D or 3D diffusion equations, a sum of up to 3 exponentials, or an alpha function that can be applied to the AMPA receptor model. \r\nAfter compiling the model using mkrndll, run 'mosinit_fast-flow.hoc' to simulate fast application of glutamate to the AMPA receptor model. 'mosinit_GluTransTrainTool_demo.hoc' opens a session where trains of synaptic glutamate transients can be created using various equations. The top panel shows the glutamate concentration transients (in mM) and the bottom panel shows the AMPA receptor mediated currents (in nA)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266925",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Desensitization"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timothy.balmer@asu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tim Balmer"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2021-02-22T11:09:47.463",
+ "ver_number": 7
+ },
+ "266928": {
+ "class_id": 19,
+ "created": "2021-02-18T00:27:18.62",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266928,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247695,
+ "object_name": "Denizot, Audrey [audrey.denizot at inria.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 144556,
+ "object_name": "STEPS"
+ }
+ ]
+ },
+ "name": "Reaction-diffusion sims of Ca2+ signals in astrocytic branchlets at the nanoscale (Denizot et al 22)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Reaction-Diffusion simulations are performed in geometries that were designed from the latest data available from super-resolution microscopy on astrocytes, published by Arizono et al., Nature Communications, 2020. The high spatial resolution of this model allows to propose plausible mechanisms by which astrocyte morphology at the nanoscale, notably shaft width, can influence local calcium dynamics and thus affect specialized neuron-astrocyte communication."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266928",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "audrey.denizot3@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Audrey Denizot"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 153715,
+ "object_name": "IP3"
+ }
+ ]
+ },
+ "ver_date": "2022-09-29T01:22:59.547",
+ "ver_number": 13
+ },
+ "266929": {
+ "class_id": 19,
+ "created": "2021-02-19T17:38:57.62",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266929,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146501,
+ "object_name": "Nicola, Wilten [wnicola at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267381,
+ "object_name": "Haidey JN, Peringod G, Institoris A, Gorzo KA, Nicola W, Vandal M, Ito K, Liu S, Fielding C, Visser F, Nguyen MD (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Astrocyte and Blood Vessel Calcium Imaging Tracking code (Haidey et al 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Code for tracking Astrocytes/Blood vessels in Calcium Imaging based recordings from ...\r\n\r\nData files should be loaded as .tiff stacks with several options for processing (see matlab file). \r\n\r\nThe main-script is tracking_script.m which can be used to track multiple .tiff stacks simultaneously \r\n\r\nThe sub-function distance finder outputs various metrics computed from the blood vessel tracking, (e.g. blood vessel width measured in several ways, etc.) \r\n\r\nThese metrics, among others (e.g. cross sectional area, etc.) are then recorded into an .xls file as the final output. \r\n\r\nFor further details, please see \r\n\r\nHaidey JN, Peringod G, Institoris A, Gorzo KA, Nicola W, Vandal M, Ito K, Liu S, Fielding C, Visser F, Nguyen MD. Astrocytes regulate ultra-slow arteriole oscillations via stretch-mediated TRPV4-COX-1 feedback. Cell Reports. 2021 Aug 3;36(5):109405.\r\n\r\nhttps://doi.org/10.1016/j.celrep.2021.109405"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266929",
+ "other_type": {
+ "attr_id": 305,
+ "value": "Astrocyte and Bloodvessel"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wilten.nicola@ucalgary.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Wilten Nicola"
+ },
+ "ver_date": "2022-05-17T20:04:15.853",
+ "ver_number": 10
+ },
+ "266933": {
+ "alternative_version": {
+ "attr_id": 314,
+ "value": [
+ {
+ "object_id": 266977,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "citation": {
+ "attr_id": 391,
+ "value": "33301053"
+ },
+ "class_id": 19,
+ "created": "2021-02-22T16:12:58.183",
+ "default_file_notes": {
+ "attr_id": 392,
+ "value": "MATLAB"
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266933,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266949,
+ "object_name": "Webster-Wood, Victoria A"
+ },
+ {
+ "object_id": 266950,
+ "object_name": "Gill, Jeffrey P"
+ },
+ {
+ "object_id": 266951,
+ "object_name": "Thomas, Peter J"
+ },
+ {
+ "object_id": 266952,
+ "object_name": "Chiel, Hillel J"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 266953,
+ "object_name": "Behavioral switching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266936,
+ "object_name": "Webster-Wood VA, Gill JP, Thomas PJ, Chiel HJ (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 266937,
+ "object_name": "Boolean network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Multifunctional control of feeding in Aplysia (Webster-Wood et al. 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 65418,
+ "object_name": "Aplysia feeding CPG neurons"
+ },
+ {
+ "object_id": 52414,
+ "object_name": "Aplysia interneuron"
+ },
+ {
+ "object_id": 52415,
+ "object_name": "Aplysia motor neuron"
+ },
+ {
+ "object_id": 116700,
+ "object_name": "Aplysia B31/B32 neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Hybrid Boolean network implementation of a functional model of key feeding behaviors (biting, swallowing, rejection) and behavioral switching induced by sensory cues. Incorporates known neural connectivity and a mechanical model of the feeding apparatus."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266933",
+ "other_type": {
+ "attr_id": 305,
+ "value": "Hybrid Boolean network"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "carnevalet@protonmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ted Carnevale"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2021-03-16T18:12:52.87",
+ "ver_number": 11
+ },
+ "266941": {
+ "class_id": 19,
+ "created": "2021-02-26T18:17:23.633",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266941,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261880,
+ "object_name": "Farokhniaee, AmirAli [aafarokh at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 185022,
+ "object_name": "Beta oscillations"
+ },
+ {
+ "object_id": 116944,
+ "object_name": "Deep brain stimulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266973,
+ "object_name": "Farokhniaee A, Lowery M (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Thalamo-cortical microcircuit (TCM) (AmirAli Farokhniaee and Madeleine M. Lowery 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 266971,
+ "object_name": "Neocortex layer 5 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model of exaggerated beta rhythm observed in the motor cortex, similar to animal and humans with Parkinson\u2019s disease. It is obtained by manually changing the specific cortical, thalamic and thalamocortical synaptic connections, motivated by the previous studies in the field. More importantly and in addition, it serves as a thalamocortical network model of deep brain stimulation, a therapy used for Parkinson\u2019s disease. We computationally stimulated the layer 5 pyramidal neurons of the cortex by direct injected currents to those pyramidal cells and observed well-known patterns in experimental studies, such as attenuation of the exaggerated beta rhythm, formation of excited and inhibited clusters of neurons in the motor cortex and the optimum value for the stimulation, both in amplitude and frequency domains, to obtain the most attenuated beta rhythm.\r\n "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266941",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "aafarokh@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "AmirAli Farokhniaee"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2021-03-15T15:06:15.467",
+ "ver_number": 11
+ },
+ "266948": {
+ "citation": {
+ "attr_id": 391,
+ "value": "27807272"
+ },
+ "class_id": 19,
+ "created": "2021-03-01T17:11:29.8",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266948,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266969,
+ "object_name": "Heras, Francisco J. H."
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64175,
+ "object_name": "Electrotonus"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 266965,
+ "object_name": "Gain-bandwidth product (GBWP)"
+ },
+ {
+ "object_id": 266966,
+ "object_name": "Phenomenological inductance"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266963,
+ "object_name": "Heras FJ, Laughlin SB, Niven JE (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 266970,
+ "object_name": "pHHotoreceptor"
+ }
+ ]
+ },
+ "name": "Voltage-gated conductances can counteract filtering effect of membrane capacitance (Heras et al '16)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 266964,
+ "object_name": "Insect photoreceptor"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Phenomenological inductance generated by voltage-gated ionic conductances (Na or K) can increase the gain bandwidth product of subthreshold signaling (e.g. psps) in a neuron, reducing the attenuation and slowing caused by membrane capacitance."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266948",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "carnevalet@protonmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ted Carnevale"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 266968,
+ "object_name": "Honeybee (Apis mellifera)"
+ },
+ {
+ "object_id": 266967,
+ "object_name": "Blowfly (Calliphora vicina)"
+ }
+ ]
+ },
+ "ver_date": "2021-03-24T10:55:55.927",
+ "ver_number": 12
+ },
+ "266954": {
+ "class_id": 19,
+ "created": "2021-03-06T20:00:51.66",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266954,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182782,
+ "object_name": "Sadeh, Sadra [s.sadeh at ucl.ac.uk]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267124,
+ "object_name": "Sadeh S, Clpath C (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "E-I balance modulates formation and dynamics of neuronal assemblies (Sadeh and Clopath, 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Here we studied this question in large-scale cortical networks composed of excitatory (E) and inhibitory (I) neurons. We found that the dynamics of the network in which neuronal assemblies are embedded is important for their induction. In networks with strong E-E coupling at the border of E-I balance, increasing the number of perturbed neurons enhanced the potentiation of ensembles. This was, however, accompanied by off-target potentiation of connections from unperturbed neurons. When strong E-E connectivity was combined with dominant E-I interactions, formation of ensembles became specific. Counter-intuitively, increasing the number of perturbed neurons in this regime decreased the average potentiation of individual synapses, leading to an optimal assembly formation at intermediate sizes. This was due to potent lateral inhibition in this regime, which also slowed down the formation of neuronal assemblies, resulting in a speed-accuracy trade-off in the performance of the networks in pattern completion and behavioral discrimination. Our results therefore suggest that the two regimes might be suited for different cognitive tasks, with fast regimes enabling crude detections and slow but specific regimes favoring finer discriminations.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266954",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "s.sadeh@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sadra Sadeh"
+ },
+ "ver_date": "2023-02-13T10:53:49.21",
+ "ver_number": 8
+ },
+ "266961": {
+ "citation": {
+ "attr_id": 391,
+ "value": "30830905"
+ },
+ "class_id": 19,
+ "created": "2021-03-11T12:25:38.287",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 88118,
+ "object_name": "I_KLT"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266961,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128503,
+ "object_name": "Goldwyn, Joshua [jhgoldwyn at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3632,
+ "object_name": "Coincidence Detection"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 266997,
+ "object_name": "Two-port analysis of electrotonus"
+ },
+ {
+ "object_id": 266998,
+ "object_name": "Voltage transfer ratio"
+ },
+ {
+ "object_id": 266999,
+ "object_name": "Equivalent PI circuit"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266996,
+ "object_name": "Goldwyn JH, Remme MWH, Rinzel J (2019)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Coincidence detection in MSO principal cells (Goldwyn et al. 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88110,
+ "object_name": "Medial Superior Olive (MSO) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "How a particular combination of anatomical and biophysical properties results in a short integration window (good for detection of closely-coincident inputs) while also enabling efficient axonal firing with brief interspike intervals (needed to faithfully report a series of coincidences between high frequency presynaptic spike trains)."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266961",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "carnevalet@protonmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ted Carnevale"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 143145,
+ "object_name": "Auditory brainstem"
+ }
+ ]
+ },
+ "ver_date": "2021-05-19T09:23:52.717",
+ "ver_number": 19
+ },
+ "266974": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 33285114\r\nDOI: 10.1016/j.bpj.2020.11.2264\r\nDiekman and Wei (2021) Circadian Rhythms of Early Afterdepolarizations and Ventricular Arrhythmias in a Cardiomyocyte Model. Biophysical Journal 120:319-333."
+ },
+ "class_id": 19,
+ "created": "2021-03-15T16:47:27.13",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266974,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 232101,
+ "object_name": "Diekman, Casey O. [casey.o.diekman at njit.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 141450,
+ "object_name": "Cardiac pacemaking"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266976,
+ "object_name": "Diekman CO, Wei N (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Cardiac models of circadian rhythms in early afterdepolarizations & arrhythmias (Diekman & Wei 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We fit a simplified Luo-Rudy model to voltage-clamp data showing a circadian rhythm in L-type calcium conductance. Simulations of the model (single-cell and 2-D spatial versions) suggest that circadian rhythms in early afterdepolarizations may contribute to daily rhythms in cardiac arrhythmias and sudden cardiac death."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266974",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "casey.o.diekman@njit.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Casey O. Diekman"
+ },
+ "ver_date": "2021-03-15T16:59:17.083",
+ "ver_number": 5
+ },
+ "266980": {
+ "citation": {
+ "attr_id": 391,
+ "value": "The relationship between oscillations in brain regions and functional connectivity: a critical analysis with the aid of neural mass models, Brain Sciences, accepted with revision"
+ },
+ "class_id": 19,
+ "created": "2021-03-18T10:39:48.553",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266980,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263678,
+ "object_name": "Ricci, Giulia [Giulia.Ricci at unibo.it]"
+ },
+ {
+ "object_id": 261628,
+ "object_name": "Magosso, Elisa [elisa.magosso at unibo.it]"
+ },
+ {
+ "object_id": 239531,
+ "object_name": "Ursino, Mauro [mauro.ursino at unibo.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267019,
+ "object_name": "Ricci G, Magosso E, Ursino M (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 50657,
+ "object_name": "MATLAB (web link to model)"
+ },
+ {
+ "object_id": 263677,
+ "object_name": "Trentool"
+ }
+ ]
+ },
+ "name": "Neural Mass Model for relationship between Brain Rhythms + Functional Connectivity (Ricci et al '21)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 265,
+ "object_name": "Neocortex L5/6 pyramidal GLU cell"
+ },
+ {
+ "object_id": 184134,
+ "object_name": "Neocortex layer 5 interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Neural Mass Model (NMM) generates biologically reliable mean field potentials of four interconnected regions of interest (ROIs) of the cortex, each simulating a different brain rhythm (in theta, alpha, beta and gamma ranges). These neuroelectrical signals originate from the assumption that ROIs influence each other via of excitatory or by-synaptic inhibitory connections. Besides receiving long-range synapses from other ROIs, each one receives an external input and superimposed Gaussian white noise. We used the NMM to simulate different connectivity networks of four ROIs, by varying both the synaptic strengths and the inputs. The purpose of this study is to investigate how the transmission of brain rhythms behaves under linear and nonlinear conditions. To this aim, we investigated the performance of eight Functional Connectivity (FC) estimators (Correlation, Delayed Correlation, Coherence, Lagged Coherence, Temporal Granger Causality, Spectral Granger Causality, Phase Synchronization and Transfer Entropy) in detecting the connectivity network changes. Results suggest that when a ROI works in the linear region, its capacity to transmit its rhythm increases, while when it saturates, the oscillatory activity becomes strongly affected by other ROIs. Software included here allows the simulation of mean field potentials of four interconnected ROIs, their visualization, both in time and frequency domains, and the estimation of the related FC with eight different methods (for Transfer Entropy the Trentool package is needed)."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266980",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "giulia.ricci29@unibo.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Giulia Ricci"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2021-04-11T18:51:00.657",
+ "ver_number": 3
+ },
+ "266984": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Rich S, Moradi Chameh H, Sekulic V, Valiante TA, Skinner FK. Modeling Reveals Human-Rodent Differences in H-Current Kinetics Influencing Resonance in Cortical Layer 5 Neurons. Cereb Cortex. 2021 Jan 5;31(2):845-872. doi: 10.1093/cercor/bhaa261. PMID: 33068000; PMCID: PMC7906797."
+ },
+ "class_id": 19,
+ "created": "2021-03-22T19:02:35.587",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266984,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266473,
+ "object_name": "Rich, Scott [sbrich at umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 266988,
+ "object_name": "Rich S, Moradi Chameh H, Sekulic V, Valiante TA, Skinner FK (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Human Cortical L5 Pyramidal Cell (Rich et al. 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 266971,
+ "object_name": "Neocortex layer 5 pyramidal cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This paper presents a full spiking, biophysically detailed multi-compartment model of a human cortical layer 5 (L5) pyramidal cell, where model development was primarily based on morphological and electrophysiological data from the same neuron. Focus was placed on capturing distinctly human dynamics of the h-channel and led to the articulation of a novel model of this channel's dynamics in humans. This led to an explanation for the surprising lack of subthreshold resonance seen in these cells in the human as opposed to rodent setting."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266984",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sbrich@umich.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Scott Rich"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2021-03-23T19:10:36.967",
+ "ver_number": 5
+ },
+ "266989": {
+ "citation": {
+ "attr_id": 391,
+ "value": "33509950"
+ },
+ "class_id": 19,
+ "created": "2021-03-24T16:01:26.62",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 266989,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267038,
+ "object_name": "Bichler EK, Cavarretta F, Jaeger D (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Ventromedial Thalamocortical Neuron (Bichler et al 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Biophysical computer modeling of a thalamic neuron demonstrated that an increase in rebound spiking can also be accounted for by a decrease in the M-type potassium current. Modeling also showed that an increase in sag with hyperpolarizing steps found after 6-OHDA treatment could in part but not fully be accounted for by the decrease in M-type current. These findings support the hypothesis that homeostatic changes in BGMT neural properties following 6-OHDA treatment likely influence the signal processing taking place in the BG thalamocortical network in Parkinson's disease.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/266989",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "francesco.cavarretta@emory.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Francesco Cavarretta"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2021-05-05T09:31:20.853",
+ "ver_number": 5
+ },
+ "267009": {
+ "class_id": 19,
+ "created": "2021-03-25T14:53:02.337",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 185501,
+ "object_name": "Kir2 leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267009,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244383,
+ "object_name": "Zang, Yunliang "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ },
+ {
+ "object_id": 267007,
+ "object_name": "Energy consumption"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Diameter, Myelination and Na/K pump interactions affect axonal resilience to high frequency spiking",
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267009",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zangyl1983@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yunliang Zang"
+ },
+ "ver_date": "2021-07-29T11:34:45.823",
+ "ver_number": 3
+ },
+ "267010": {
+ "class_id": 19,
+ "created": "2021-03-26T00:23:11.847",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267010,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146501,
+ "object_name": "Nicola, Wilten [wnicola at uwaterloo.ca]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267616,
+ "object_name": "Al-Darabsah I, Chen L, Nicola W, Campbell SA (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Impact of Small Time Delays on the Onset of Oscillations and Synchrony (Al-Darabsah et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Code to compute Lyapunov Exponents with Delay in the Wilson-Cowan system: \r\n\r\nAl-Darabsah, I., Chen, L., Nicola, W., & Campbell, S. A. (2021). The Impact of Small Time Delays on the Onset of Oscillations and Synchrony in Brain Networks. Frontiers in Systems Neuroscience, 58."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267010",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Wilson-Cowan"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wilten.nicola@ucalgary.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Wilten Nicola"
+ },
+ "ver_date": "2023-01-20T12:45:48.78",
+ "ver_number": 6
+ },
+ "267013": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Jones S, Zylberberg J, Schoppa N. Cellular and Synaptic Mechanisms That Differentiate Mitral Cells and Superficial Tufted Cells Into Parallel Output Channels in the Olfactory Bulb. Front Cell Neurosci. 2020;14:614377. Published 2020 Dec 22. doi:10.3389/fncel.2020.614377\r\nMLA"
+ },
+ "class_id": 19,
+ "created": "2021-04-02T15:13:07.353",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267013,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267015,
+ "object_name": "Jones S, Zylberberg J, Schoppa N (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Cellular and Synaptic Mechanisms Differentiate Mitral & Superficial Tufted Cells (Jones et al 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 185340,
+ "object_name": "Olfactory bulb (accessory) mitral cell"
+ },
+ {
+ "object_id": 207694,
+ "object_name": "Olfactory bulb main tufted cell external"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"To evaluate how... different electrophysiological aspects contributed to spiking of the output MCs and sTCs, we used computational modeling. By exchanging the different cell properties in our modeled MCs and sTCs, we could evaluate each property's contribution to spiking differences between these cell types. This analysis suggested that the higher sensitivity of spiking in sTCs vs. MCs reflected both their larger monosynaptic OSN signal as well as their higher input resistance, while their smaller prolonged currents had a modest opposing effect. Taken together, our results indicate that both synaptic and intrinsic cellular features contribute to the production of parallel output channels in the olfactory bulb.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267013",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shellytessajones@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shelly Jones"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115950,
+ "object_name": "Olfactory bulb"
+ }
+ ]
+ },
+ "ver_date": "2021-04-03T14:16:53.33",
+ "ver_number": 7
+ },
+ "267018": {
+ "class_id": 19,
+ "created": "2021-04-08T14:42:26.313",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267018,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267374,
+ "object_name": "McDougal RA, Conte C, Eggleston L, Newton AJH, Galijasevic H (2022)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Efficient simulation of 3D reaction-diffusion in models of neurons (McDougal et al, 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Validation, visualization, and analysis scripts for NEURON's 3D reaction-diffusion support."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267018",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "robert.mcdougal@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Robert McDougal"
+ },
+ "ver_date": "2022-05-17T14:07:01.31",
+ "ver_number": 11
+ },
+ "267023": {
+ "class_id": 19,
+ "created": "2021-04-13T05:11:07.297",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267023,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267065,
+ "object_name": "Ness N, Schultz SR (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Grid cell-to-place cell transformation model w AD-related synaptic loss (Ness and Schultz 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulation of grid-cell-to-place cell transformation with interneuron-mediated feedback inhibition, BCM learning and synaptic turnover. Generates place cell activity with stable place cell density over time. Excitatory synapse and/or inhibitory synapse loss can be implemented to analyse the effect of synaptic loss on place cell function."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267023",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Medial entorhinal cortex grid cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "n.ness19@imperial.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Natalie Ness"
+ },
+ "ver_date": "2021-06-21T11:21:37.207",
+ "ver_number": 4
+ },
+ "267026": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Stinchcombe AR, Hu C, Walch OJ, Faught SD, Wong KY and Forger DB\r\n(2021) M1-Type, but Not M4-Type, Melanopsin Ganglion Cells Are Physiologically Tuned to the Central Circadian Clock. Front. Neurosci. 15:652996. doi: 10.3389/fnins.2021.652996"
+ },
+ "class_id": 19,
+ "created": "2021-04-22T09:54:35.337",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267026,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "M1 and M4 intrinsically photosensitive retinal ganglion cells (Stinchcombe et al. 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Conductance-based models of the somatic membrane voltage in M1 and M4 intrinsically photosensitive retinal ganglion cells."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267026",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stinch@math.toronto.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Adam Stinchcombe"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2021-05-06T10:15:31.92",
+ "ver_number": 4
+ },
+ "267027": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 32069073"
+ },
+ "class_id": 19,
+ "created": "2021-04-22T15:39:29.323",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267027,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267032,
+ "object_name": "Law NC, Marinelli I, Bertram R, Corbin KL, Schildmeyer C, Nunemaker CS (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Model for pancreatic beta-cells (Law et al. 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This model is used to explain how chronic stimulation of pancreatic beta-cells can lead to compensation that restores calcium oscillations and electrical bursting."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267027",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rbertram@fsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Bertram"
+ },
+ "ver_date": "2021-04-25T16:35:42.85",
+ "ver_number": 7
+ },
+ "267033": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Interneuronal dynamics facilitate the initiation of cortical spreading depression, \r\nWolfgang Stein, Allison L Harris, bioRxiv 2021.04.25.441350; doi: https://doi.org/10.1101/2021.04.25.441350"
+ },
+ "class_id": 19,
+ "created": "2021-04-27T15:39:58.22",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267033,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 167716,
+ "object_name": "Spreading depression"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267371,
+ "object_name": "Stein W, Harris AL (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Cortical Interneuron & Pyramidal Cell Model of Cortical Spreading Depression (Stein & Harris 2022)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This 2-cell cortical circuit model consists of a negative feedback loop between a single compartment pyramidal cell and a single compartment interneuron. Ion concentrations in the extra- and intracellular spaces are included in the model. The model is used to test the contribution of cortical inhibitory interneurons to the initiation of cortical spreading depression, as characterized by spike block in the pyramidal cell. Results show that interneuronal inhibition provides a wider dynamic range to the circuit and generally improves stability against spike block. Despite these beneficial effects, strong interneuronal firing contributed to rapidly changing extracellular ion concentrations, which facilitated hyperexcitation and led to spike block first in the interneuron and then in the pyramidal cell. The model results demonstrate that while the role of interneurons in cortical microcircuits is complex, they are critical to the initiation of pyramidal cell spike block and CSD. See reference below for more details."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267033",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Allison L Harris"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cortical Pyramidal Neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "alharri@ilstu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Allison L Harris"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-05-08T12:23:18.44",
+ "ver_number": 6
+ },
+ "267035": {
+ "class_id": 19,
+ "created": "2021-04-29T15:23:50.473",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267035,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267036,
+ "object_name": "Sinha, Ankur"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52404,
+ "object_name": "Pathophysiology"
+ },
+ {
+ "object_id": 267053,
+ "object_name": "Structural plasticity"
+ },
+ {
+ "object_id": 267051,
+ "object_name": "Neurite growth"
+ },
+ {
+ "object_id": 267052,
+ "object_name": "Neurite loss"
+ },
+ {
+ "object_id": 267054,
+ "object_name": "Homeostatic plasticity"
+ },
+ {
+ "object_id": 267055,
+ "object_name": "Balanced networks"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267045,
+ "object_name": "Sinha A, Metzner C, Davey N, Adams R, Schumker M, Steuber V (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ }
+ ]
+ },
+ "name": "Growth Rules for Repair of Asynch Irregular Networks after Peripheral Lesions (Sinha et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A model of peripheral lesions and the resulting activity-dependent rewiring in a simplified balanced cortical network model that\r\nexhibits biologically realistic Asynchronous Irregular (AI) activity, used to derive activity dependent growth rules\r\nfor different synaptic elements: dendritic and axonal."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267035",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "a.sinha2@herts.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ankur Sinha"
+ },
+ "ver_date": "2021-06-02T10:14:37.88",
+ "ver_number": 10
+ },
+ "267039": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Susin E, Destexhe A. 2021. Integration, coincidence detection and resonance in networks of spiking neurons expressing gamma oscillations and asynchronous states. bioRxiv doi: 10.1101/2021.05.03.442436"
+ },
+ "class_id": 19,
+ "created": "2021-05-05T08:11:19.213",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267039,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267042,
+ "object_name": "Susin, Eduarda [eduardadsusin at gmail dot com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267041,
+ "object_name": "Susin E, Destexhe A (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "PING, ING and CHING network models for Gamma oscillations in cortex (Susin and Destexhe 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "These models were published at:\r\n\r\nSusin E, Destexhe A. 2021. Integration, coincidence detection and resonance in networks of spiking neurons expressing gamma oscillations and asynchronous states. bioRxiv doi: 10.1101/2021.05.03.442436 \r\n\r\n\r\nIn this article, we constructed conductance-based network models of gamma oscillations, based on different cell types found in cerebral cortex: Regular Spiking (RS), Fast Spiking (FS) and Chattering cells. The models were adjusted to extracellular unit recordings in humans, where gamma oscillations always coexist with the asynchronous firing mode. We considered three different mechanisms to generate Gamma, first a mechanism based on the interaction between pyramidal neurons and interneurons (PING), second a mechanism in which gamma is generated in interneuron networks (ING) and third, a mechanism which relies on gamma oscillations generated by pacemaker Chattering neurons (CHING). We found that in all cases, the presence of Gamma oscillations tends to diminish the responsiveness of the networks to external inputs. We tested different paradigms and found none in which Gamma oscillations would favor information flow compared to asynchronous states."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267039",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "eduardadsusin@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Eduarda Susin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T11:11:44.383",
+ "ver_number": 8
+ },
+ "267046": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Calvin, O.L. & Redish, A.D. (2021). Global disruption in excitation-inhibition balance can cause localized network dysfunction and schizophrenia-like context-integration deficits. PLoS Computational Biology. TBD"
+ },
+ "class_id": 19,
+ "created": "2021-05-05T12:34:31.94",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267046,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ },
+ {
+ "object_id": 83539,
+ "object_name": "Attractor Neural Network"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267641,
+ "object_name": "Calvin OL, Redish AD (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 266899,
+ "object_name": "Agent-based model"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Leaky Integrate and Fire Neuron Model of Context Integration (Calvin, Redish 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The maintenance of the contextual information has been shown to be sensitive to changes in excitation-inhbition (EI) balance. We constructed a multi-structure, biophysically-realistic agent that could perform context-integration as is assessed by the dot probe expectancy task. The agent included a perceptual network, a working memory network, and a decision making system and was capable of successfully performing the dot probe expectancy task. Systemic manipulation of the agent\u2019s EI balance produced localized dysfunction of the memory structure, which resulted in schizophrenia-like deficits at context integration."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267046",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Context Integration"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Calvin, Olivia [ocalvin@umn.edu]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ocalvin@umn.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Olivia Louise Calvin"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:54:20.823",
+ "ver_number": 13
+ },
+ "267047": {
+ "class_id": 19,
+ "created": "2021-05-12T06:21:52.18",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267047,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 235462,
+ "object_name": "Spreading depolarization"
+ },
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267105,
+ "object_name": "Lemaire L, Desroches M, Krupa M, Pizzamiglio L, Scalmani P, Mantegazza M (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Two-neuron conductance-based model with dynamic ion concentrations to study NaV1.1 channel mutations",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Gain of function mutations of SCN1A, the gene coding for the voltage-gated sodium channel NaV1.1, cause familial hemiplegic migraine type 3 (FHM-3), whereas loss of function mutations cause different types of epilepsy. \r\n\r\nTo study those mutations, we developed a two-neuron conductance-based model of interconnected GABAergic and pyramidal glutamatergic neurons, with dynamic ion concentrations. We modeled FHM-3 mutations with persistent sodium current in the GABAergic neuron and epileptogenic mutations by decreasing the fast-inactivating sodium conductance in the GABAergic neuron."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267047",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "louisiane.lemaire@inria.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Louisiane Lemaire"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2021-08-17T09:35:59.813",
+ "ver_number": 42
+ },
+ "267048": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Prediction of Neural Diameter From Morphology to Enable Accurate Simulation, J.D. Reed and K.T. Blackwell, Frontiers in Neuroinformatics, In Press"
+ },
+ "class_id": 19,
+ "created": "2021-05-20T10:37:12.137",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267048,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ },
+ {
+ "object_id": 267077,
+ "object_name": "Reed, Jonathon"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267079,
+ "object_name": "Reed JD, Blackwell KT (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 186718,
+ "object_name": "MOOSE/PyMOOSE"
+ }
+ ]
+ },
+ "name": "Reconstructed neuron (cerebellar, hippocampal, striatal) sims using predicted diameters (Reed et al)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 266781,
+ "object_name": "Striatal projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Many neuron morphologies in NeuroMorpho.org do not contain accurate dendritic diameters that are needed for simulations. We used a set of archives which did have realistic morphologies to derive equations predicting dendritic diameter, and to create morphologies using the predictions.\r\nThe equations and new morphologies are derived by\r\n1. extracting morphology features from swc files (morph_feature_extract.py)\r\n2. using multiple regression to derive equations predicting diameter, (morph_feature_extract.py )\r\n3. using the equations to create the new morphology files from original swc file (shape_shifter.py).\r\nThe python programs are all available from github.com/neurord/ShapeShifter\r\nWe simulated the original morphologies and the morphologies with predicted diameter in Moose, evaluating the response to current injection and synaptic input. The code provided implements those simulations"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267048",
+ "other_type": {
+ "attr_id": 305,
+ "value": "reconstructed dendrites"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kim T Blackwell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2021-07-07T17:39:41.633",
+ "ver_number": 4
+ },
+ "267049": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 33815062"
+ },
+ "class_id": 19,
+ "created": "2021-05-21T16:46:34.943",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 254,
+ "object_name": "I CNG"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267049,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267076,
+ "object_name": "Gorodetski L, Loewenstern Y, Faynveitz A, Bar-Gad I, Blackwell KT, Korngreen A (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 186718,
+ "object_name": "MOOSE/PyMOOSE"
+ }
+ ]
+ },
+ "name": "Information trans. through Entopeduncular nucleus modified by synaptic plasticity (Gorodetsky et al)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Multicompartmental model of EP neuron was created using automatic parameter optimization. We included both short term plasticity and long term plasticity. We simulated the response to inputs from globus pallidus, striatum and subthalamic nucleus. We show that dopamine long term plasticity enhances information transmission from striatum and reduces GPe and STN information transmission."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267049",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "entopeduncular neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kim T Blackwell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2021-07-07T15:56:11.503",
+ "ver_number": 4
+ },
+ "267050": {
+ "class_id": 19,
+ "created": "2021-05-28T19:38:22.463",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267050,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 247215,
+ "object_name": "Newton, Adam J H [adam.newton at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267362,
+ "object_name": "Huertas MA, Newton AJH, McDougal RA, Sacktor TC, Shouval HZ (2022)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Conditions for synaptic specificity in maintenance phase of synaptic plasticity (Huertas et al, '22)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Long-lasting effects on synaptic efficacies are associated with the sustained increase in concentration of specific proteins like PKM?. Assuming that the long-term maintenance of synaptic plasticity is accomplished by a molecular switch we perform simulations using the reaction-diffusion package in NEURON and analytical calculations to determine the limits of synapse specificity during maintenance."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267050",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "adam.newton@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Adam John Hunter Newton"
+ },
+ "ver_date": "2022-04-25T11:45:47.11",
+ "ver_number": 8
+ },
+ "267056": {
+ "class_id": 19,
+ "created": "2021-06-03T13:45:29.2",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267056,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 263070,
+ "object_name": "Medlock, Laura [laura.medlock at mail.utoronto.ca]"
+ },
+ {
+ "object_id": 267057,
+ "object_name": "Sekiguchi, Kazutaka [kazutaka.sekiguchi at shionogi.co.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 267059,
+ "object_name": "Pain processing"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267317,
+ "object_name": "Medlock L, Sekiguchi K, Hong S, Dura-Bernal S, Lytton WW, Prescott SA (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 195884,
+ "object_name": "NetPyNE"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Spinal Dorsal Horn Network Model (Medlock et al 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 128582,
+ "object_name": "Spinal cord lamina I neuron"
+ },
+ {
+ "object_id": 267058,
+ "object_name": "Spinal cord lamina I-III interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To explore spinal dorsal horn (SDH) network function, we developed a computational model of the circuit that is tightly constrained by experimental data. Our model comprises conductance-based model neurons that reproduce the characteristic firing patterns of excitatory and inhibitory spinal neurons. Excitatory spinal neuron subtypes defined by calretinin, somatostatin, delta-opioid receptor, protein kinase C gamma, or vesicular glutamate transporter 3 expression or by transient/central spiking/morphology and inhibitory neuron subtypes defined by parvalbumin or dynorphin expression or by islet morphology were synaptically connected according to available qualitative data. Synaptic weights were adjusted to produce firing in projection neurons, defined by neurokinin-1 expression, matching experimentally measured responses to a range of mechanical stimulus intensities. Input to the circuit was provided by three types of afferents (A\u00df, Ad, and C-fibres) whose firing rates were also matched to experimental data."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267056",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "laura.medlock@mail.utoronto.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Laura Medlock"
+ },
+ "ver_date": "2022-03-10T12:47:50.48",
+ "ver_number": 15
+ },
+ "267063": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Viktor J\u00e1nos Ol\u00e1h, Gergely Tarcsay and J\u00e1nos Brunner (2021) Small size of recorded neuronal structures confines the accuracy in direct axonal voltage measurements"
+ },
+ "class_id": 19,
+ "created": "2021-06-17T20:05:20.583",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267063,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267084,
+ "object_name": "Ol\u00e1h, Viktor J\u00e1nos"
+ },
+ {
+ "object_id": 267085,
+ "object_name": "Tarcsay, Gergely"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267083,
+ "object_name": "Ol\u00e1h VJ, Tarcsay G, Brunner J (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Realistic amplifier model (Ol\u00e1h et al. 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we built a model that was verified by small axonal recordings. The model accurately recreated actual action potential measurements with typical recording artefacts and predicted the native electrical behavior. The simulations verified that recording instruments substantially filter voltage recordings. Moreover, we revealed that instrumentation directly interferes with local signal generation depending on the size of the recorded structures, which complicates the interpretation of recordings from smaller structures, such as axons. However, our model offers a straightforward approach that predicts the native waveforms of fast voltage signals and the underlying conductances even from the smallest neuronal structures...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267063",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "realistic amplifier"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "brunner.janos@koki.hu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Janos Brunner"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2021-07-15T08:27:48.39",
+ "ver_number": 6
+ },
+ "267066": {
+ "class_id": 19,
+ "created": "2021-06-23T05:12:53.95",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267066,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266547,
+ "object_name": "Lupascu, Carmen Alina "
+ },
+ {
+ "object_id": 253930,
+ "object_name": "Giacalone, Elisabetta [elisabetta.giacalone at pa.ibf.cnr.it]"
+ },
+ {
+ "object_id": 33737,
+ "object_name": "Migliore, Michele [Michele.Migliore at Yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267266,
+ "object_name": "Spoleti E, Krashia P, La Barbera L, Nobili A, Lupascu CA, Giacalone E, Keller F, Migliore M, Renzi M, D'Amelio M (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A model of ventral Hippocampal CA1 pyramidal neurons of Tg2576 AD mice (Spoleti et al. 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Gradual decline in cognitive and non-cognitive functions are considered clinical hallmarks of Alzheimer's Disease (AD). Post-mortem autoptic analysis shows the presence of amyloid \u00df deposits, neuroinflammation and severe brain atrophy. However, brain circuit alterations and cellular derailments, assessed in very early stages of AD, still remain elusive. The understanding of these early alterations is crucial to tackle defective mechanisms.\r\n\r\nIn a previous study we proved that the Tg2576 mouse model of AD displays functional deficits in the dorsal hippocampus and relevant behavioural AD-related alterations. We had shown that these deficits in Tg2576 mice correlate with the precocious degeneration of dopamine (DA) neurons in the Ventral Tegmental Area (VTA) and can be restored by L-DOPA treatment. Due to the distinct functionality and connectivity of dorsal versus ventral hippocampus, here we investigated neuronal excitability and synaptic functionality in the ventral CA1 hippocampal sub-region of Tg2576 mice. We found an age-dependent alteration of cell excitability and firing in pyramidal neurons starting at 3 months of age, that correlates with reduced levels in the ventral CA1 of tyrosine hydroxylase \u2013 the rate-limiting enzyme of DA synthesis. Additionally, at odds with the dorsal hippocampus, we found no alterations in basal glutamatergic transmission and long-term plasticity of ventral neurons in 8-month old Tg2576 mice compared to age-matched controls. Last, we used computational analysis to model the early derailments of firing properties observed and hypothesize that the neuronal alterations found could depend on dysfunctional sodium and potassium conductances, leading to anticipated depolarization-block of action potential firing. The present study depicts that impairment of cell excitability and homeostatic control of firing in ventral CA1 pyramidal neurons is a prodromal feature in Tg2576 AD mice.\r\n"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267066",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampus CA1 ventral pyramidal neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "carmen.lupascu@ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Carmen Alina Lupascu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-01-21T13:10:50.977",
+ "ver_number": 23
+ },
+ "267067": {
+ "class_id": 19,
+ "created": "2021-06-26T13:35:33.483",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92083,
+ "object_name": "Nav1.2 SCN2A"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267067,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 224842,
+ "object_name": "Ben-Shalom, Roy [rbenshalom at ucdavis.edu]"
+ },
+ {
+ "object_id": 267070,
+ "object_name": "Kyoung, Henry [hkyoung at berkeley.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267628,
+ "object_name": "Spratt PWE, Alexander RPD, Ben-Shalom R, Sahagun A, Kyoung H, Keeshen CM, Sanders SJ, Bender KJ (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Hyperexcitability from Nav1.2 channel loss in neocortical pyramidal cells (Spratt et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 266971,
+ "object_name": "Neocortex layer 5 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Based on the Layer 5 thick-tufted pyramidal cell from the Blue Brain Project, we modify the distribution of the sodium channel Nav1.2 to recapitulate an increase in excitability observed in ex vivo slice experiments."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267067",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "bens.roy@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roy Ben-Shalom"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 147188,
+ "object_name": "Prefrontal cortex (PFC)"
+ }
+ ]
+ },
+ "ver_date": "2023-04-30T16:03:58.983",
+ "ver_number": 12
+ },
+ "267073": {
+ "citation": {
+ "attr_id": 391,
+ "value": "bioRxiv 2020.11.04.368571; doi: https://doi.org/10.1101/2020.11.04.368571"
+ },
+ "class_id": 19,
+ "created": "2021-07-02T08:31:59.89",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267073,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 53429,
+ "object_name": "Blackwell, Avrama [avrama at gmu.edu]"
+ },
+ {
+ "object_id": 189720,
+ "object_name": "Jedrzejewska-Szmek, Joanna "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267095,
+ "object_name": "Miningou NT, Jedrzejewska-Szmek J, Blackwell KT (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 139757,
+ "object_name": "NeuroRD"
+ }
+ ]
+ },
+ "name": "Dynamics of ERK signaling pathways during L-LTP induction(Miningou et al 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Biochemical model of five signaling pathways (3 activated by cAMP and 2 activated by calcium) leading to ERK activation during L-LTP induction. Simulations show that calcium and cAMP work synergistically to activate ERK and that stimuli given with large inter-trial intervals activate more ERK than shorter intervals. Epac and RasGRF pathways contribute to early dynamics and PKA and CaMKII contribute to late dynamics of ERK activation."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267073",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Miningou, Nadiatou"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kim T Blackwell"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:50:27.793",
+ "ver_number": 3
+ },
+ "267086": {
+ "class_id": 19,
+ "created": "2021-07-21T13:56:52.037",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267086,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267291,
+ "object_name": "Zhang Y, Smolen PD, Cleary LJ, Byrne JH (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Interactions among kinase cascades underlying LTP in Aplysia sensory neurons (Zhang et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52413,
+ "object_name": "Aplysia sensory neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ },
+ {
+ "object_id": 267292,
+ "object_name": "Neurotrophin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Computational model incorporating positive and negative feedback loops of proteins in Aplysia to study \"the dynamics of kinase activity produced by different stimulus protocols and predict the critical roles of kinase interactions in the dynamics of these pathways.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267086",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yili.zhang@uth.tmc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yili Zhang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2022-02-11T11:24:11.133",
+ "ver_number": 7
+ },
+ "267093": {
+ "class_id": 19,
+ "created": "2021-08-09T17:52:14.123",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267093,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267148,
+ "object_name": "Abdulla, Muhammad [muhammadabdulla at ufl.edu]"
+ },
+ {
+ "object_id": 267149,
+ "object_name": "Phillips, Ryan [ryanp at pitt.edu]"
+ },
+ {
+ "object_id": 125612,
+ "object_name": "Rubin, Jonathan E [jonrubin at pitt.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 267152,
+ "object_name": "Dynamic extracellular concentrations"
+ },
+ {
+ "object_id": 267153,
+ "object_name": "Ramping"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267151,
+ "object_name": "Abdulla M, Phillips R, Rubin J (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Dynamics of ramping bursts in a respiratory pre-Botzinger Complex model (Abdulla et al, 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 232103,
+ "object_name": "PreBotzinger complex neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This single-neuron model is, to the authors' knowledge, the first to capture the pre-inspiratory ramping aspects of preBotzinger Complex inspiratory neurons' activity patterns, in which relatively slow tonic spiking gradually progresses to faster spiking and a full-blown burst, with a corresponding gradual development of an underlying plateau potential. The key to this pattern is the incorporation of the dynamics of the extracellular potassium ion concentration, which is here integrated into an existing model for pre-BotC neuron bursting along with some parameter adjustments. Using fast-slow decomposition, this activity can be shown to be a form of parabolic bursting, but with burst termination at a homoclinic bifurcation rather than at a SNIC bifurcation."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267093",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "dynamic extracellular potassium"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jonrubin@pitt.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jonathan Rubin"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:51:02.233",
+ "ver_number": 7
+ },
+ "267103": {
+ "class_id": 19,
+ "created": "2021-08-11T19:04:28.533",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267103,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267155,
+ "object_name": "Pham DJ, Yu GJ, Bouteiller JC, Berger TW (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Look-Up Table Synapse (LUTsyn) models for AMPA and NMDA (Pham et al., 2021)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Fast input-output synapse model of glutamatergic receptors AMPA and NMDA that can capture nonlinear interactions via look-up table abstraction. Speeds are comparable to 'linear' exponential synapses.\r\n\r\nDownload LUT files at: https://senselab.med.yale.edu/modeldb/data/267103/LUTs.zip"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267103",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "robert.mcdougal@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Duy-Tan Pham"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-06T10:53:23.23",
+ "ver_number": 17
+ },
+ "267106": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Meredith Lodge, Maria-Clemencia Hernandez, Jan M. Schulz, and Josef Bischofberger, Sparsification of AP firing in adult-born hippocampal granule cells via voltage-dependent a5-GABAA receptors\r\nCELL REPORTS 2021"
+ },
+ "class_id": 19,
+ "created": "2021-08-23T20:44:26.557",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267106,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 258947,
+ "object_name": "Schulz, Jan M [j.schulz at unibas.ch]"
+ },
+ {
+ "object_id": 267107,
+ "object_name": "Bischofberger, Josef"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 155599,
+ "object_name": "Neurogenesis"
+ },
+ {
+ "object_id": 185463,
+ "object_name": "Pattern Separation"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267110,
+ "object_name": "Lodge M, Hernandez MC, Schulz JM, Bischofberger J (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "DG adult-born granule cell: nonlinear a5-GABAARs control AP firing (Lodge et al, 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "GABA can depolarize immature neurons close to the action potential (AP) threshold in development and adult neurogenesis. Nevertheless, GABAergic synapses effectively inhibit AP firing in newborn granule cells of the adult hippocampus as early as 2 weeks post mitosis. Parvalbumin and dendrite-targeting somatostatin interneurons activate a5-subunit containing GABAA receptors (a5-GABAARs) in young neurons, which show a voltage dependent conductance profile with increasing conductance around the AP threshold. The present computational models show that the depolarized GABA reversal potential promotes NMDA receptor activation. However, the voltage-dependent conductance of a5-GABAARs in young neurons is crucial for inhibition of AP firing to generate balanced and sparse firing activity. "
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267106",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "j.schulz@unibas.ch"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jan Michael Schulz"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:10:32.403",
+ "ver_number": 7
+ },
+ "267116": {
+ "citation": {
+ "attr_id": 391,
+ "value": "S\u00e6tra MJ, Einevoll GT, Halnes G (2021) An electrodiffusive neuron-extracellular-glia model for exploring the genesis of slow potentials in the brain. PLoS Comput Biol 17(7): e1008143. https://doi.org/10.1371/journal.pcbi.1008143"
+ },
+ "class_id": 19,
+ "created": "2021-08-26T15:01:41.64",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 144382,
+ "object_name": "Osmosis-driven water flux"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267116,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ },
+ {
+ "object_id": 267119,
+ "object_name": "Electrodiffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267118,
+ "object_name": "S\u00e6tra MJ, Einevoll GT, Halnes G (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "name": "The electrodiffusive neuron-extracellular-glia (edNEG) model (S\u00e6tra et al. 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 189094,
+ "object_name": "Pinsky-Rinzel CA1/3 pyramidal cell "
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We here present the electrodiffusive neuron-extracellular-glia (edNEG) model, which we believe is the first model to combine compartmental neuron modeling with an electrodiffusive framework for intra- and extracellular ion concentration dynamics in a local piece of neuro-glial brain tissue. The edNEG model (i) keeps track of all intraneuronal, intraglial, and extracellular ion concentrations and electrical potentials, (ii) accounts for action potentials and dendritic calcium spikes in neurons, (iii) contains a neuronal and glial homeostatic machinery that gives physiologically realistic ion concentration dynamics, (iv) accounts for electrodiffusive transmembrane, intracellular, and extracellular ionic movements, and (v) accounts for glial and neuronal swelling caused by osmotic transmembrane pressure gradients. The edNEG model accounts for the concentration-dependent effects on ECS potentials that the standard models neglect. Using the edNEG model, we analyze these effects by splitting the extracellular potential into three components: one due to neural sink/source configurations, one due to glial sink/source configurations, and one due to extracellular diffusive currents ...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267116",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "martejulie@simula.no"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Marte J. S\u00e6tra"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2021-08-31T21:36:12.127",
+ "ver_number": 5
+ },
+ "267120": {
+ "citation": {
+ "attr_id": 391,
+ "value": "D Voina, S Recanatesi, B Hu, E Shea-Brown, S Mihalas, \u201cSingle circuit in V1 capable of switching contexts during movement using inhibitory population as a switch\u201d\r\n\r\nhttps://www.biorxiv.org/content/10.1101/2020.09.24.309500v1"
+ },
+ "class_id": 19,
+ "created": "2021-08-31T01:23:20.68",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267120,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267121,
+ "object_name": "Voina, Doris"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 266853,
+ "object_name": "Receptive field"
+ },
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 147931,
+ "object_name": "Orientation selectivity"
+ },
+ {
+ "object_id": 230581,
+ "object_name": "Stimulus selectivity"
+ },
+ {
+ "object_id": 267122,
+ "object_name": "Context integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267650,
+ "object_name": "Voina D, Recanatesi S, Hu B, Shea-Brown E, Mihalas S (2022)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Switching circuit for optimal context integration during static + moving contexts (Voina et al 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The brain processes information at all times and much of that information is context-dependent.The visual system presents an important example: processing is ongoing, but the context changes dramatically when an animal is still vs. running. How is context-dependent information processing achieved? We take inspiration from recent neurophysiology studies on the role of distinct cell types in primary visual cortex (V1). We find that relatively few \u201cswitching units\u201d \u2014 akin to the VIP neuron type in V1 in that they turn on and off in the running vs. still context and have connections to and from the main population \u2014 are sufficient to drive context dependent image processing. We demonstrate this in a model of feature integration and in a test of image denoising. The underlying circuit architecture illustrates a concrete computational role for the multiple cell types under increasing study across the brain, and may inspire more flexible neurally inspired computing architectures."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267120",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "VIP, PYR, SSM, SST, PV"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dorisvoina@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Doris Voina"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 266986,
+ "object_name": "Visual cortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-15T14:40:07.76",
+ "ver_number": 5
+ },
+ "267128": {
+ "class_id": 19,
+ "created": "2021-09-06T05:56:52.147",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267128,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267171,
+ "object_name": "Medalla M, Chang W, Iba\u00f1ez S, Guillamon-Vivancos T, Nittmann M, Kapitonava A, Busch SE, Moore TL, Rosene DL, Luebke JI (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Layer-specific pyramidal cell props underlie diverse ACC motor + limbic networks (Medalla et al '21)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"A MATLAB-based model of pyramidal-interneuron network was extended from [modeldb.yale.edu/138421]... to simulate how intrinsic biophysical properties and inhibition can affect network synchrony and oscillatory frequencies in ACC L3 and L5... Four different networks were simulated depending on a subset of empirically derived biophysical, morphological and connectional properties of lamina- and target- specific ACC pyramidal neurons... our model is constrained by in vitro whole cell patch clamp recording data from the soma.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267128",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sara.i.solas@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sara Ibanez"
+ },
+ "ver_date": "2021-10-20T10:29:30.533",
+ "ver_number": 7
+ },
+ "267132": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Resurgent Na+ currents promote ultrafast spiking in projection neurons that drive fine motor control"
+ },
+ "class_id": 19,
+ "created": "2021-09-13T14:05:15.937",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267132,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267133,
+ "object_name": "Dagostin, Andre [dagostia at ohsu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267645,
+ "object_name": "Zemel BM, Nevue AA, Dagostin A, Lovell PV, Mello CV, Gersdorff HV (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 83509,
+ "object_name": "IGOR Pro"
+ }
+ ]
+ },
+ "name": "Resurgent sodium transient current in zebra finch RA (Zemel et al., 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 267134,
+ "object_name": "Zebra Finch RA projection neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "RA projection neurons in zebra finches display different levels of resurgent INa through development. This work reports that projection neurons in the adult zebra finch song nucleus RA display: 1) robust high-frequency firing, 2) ultra-short half-width spike waveforms, 3) superfast Na+ current inactivation kinetics and 4) large resurgent Na+ currents (INaR). Dynamic clamping provides evidence of INaR role in neuronal excitability. The model is composed by one gate with an activating and one inactivating particle which describe a transient inward current triggered by neuronal depolarization."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267132",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dagostia@ohsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Andre Dagostin"
+ },
+ "ver_date": "2023-02-13T11:12:27.4",
+ "ver_number": 11
+ },
+ "267139": {
+ "citation": {
+ "attr_id": 391,
+ "value": "S\u00e6tra MJ, Einevoll GT, Halnes G (2020) An electrodiffusive, ion conserving Pinsky-Rinzel model with homeostatic mechanisms. PLoS Comput Biol 16(4): e1007661"
+ },
+ "class_id": 19,
+ "created": "2021-09-17T11:30:23.003",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ },
+ {
+ "object_id": 88209,
+ "object_name": "Na/Ca exchanger"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267139,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 267119,
+ "object_name": "Electrodiffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267141,
+ "object_name": "S\u00e6tra MJ, Einevoll GT, Halnes G (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "The electrodiffusive Pinsky-Rinzel (edPR) model (S\u00e6tra et al., 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 189094,
+ "object_name": "Pinsky-Rinzel CA1/3 pyramidal cell "
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The edPR model is \"what we may refer to as \u201ca minimal neuronal model that\r\nhas it all\u201d. By \u201chas it all\u201d, we mean that it (1) has a spatial extension, (2) considers both extracellular- and \r\nintracellular dynamics, (3) keeps track of all ion concentrations (Na+, K+, Ca2+, and\r\nCl-) in all compartments, (4) keeps track of all electrical potentials in all compartments, \r\n(5) has differential expression of ion channels in soma versus dendrites, \r\nand can fire somatic APs and dendritic calcium spikes, \r\n(6) contains the homeostatic machinery that ensures that it maintains a realistic dynamics in the membrane potential\r\nand all ion concentrations during long-time activity, and (7) accounts for transmembrane,\r\nintracellular and extracellular ionic movements due to both diffusion and electrical migration,\r\nand thus ensures a consistent relationship between ion concentrations and electrical charge.\r\nBeing based on a unified framework for intra- and extracellular dynamics, the model\r\nthus accounts for possible ephaptic effects from extracellular dynamics, as neglected in \r\nstandard feedforward models based on volume conductor theory. By \u201cminimal\u201d\r\nwe simply mean that we reduce the number of spatial compartments to the minimal, which in\r\nthis case is four, i.e., two neuronal compartments (a soma and a dendrite), plus two extracellular \r\ncompartments (outside soma and outside dendrite). Technically, the model was \r\nconstructed by adding homeostatic mechanisms and ion concentration dynamics to an existing\r\nmodel, i.e., the two-compartment Pinsky-Rinzel (PR) model, and embedding in it a \r\nconsistent electrodiffusive framework, i.e., the previously developed Kirchhoff-Nernst-Planck framework.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267139",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "martejulie@simula.no"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Marte J. S\u00e6tra"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2021-09-19T19:47:04.53",
+ "ver_number": 3
+ },
+ "267140": {
+ "class_id": 19,
+ "created": "2021-09-17T17:45:46.2",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92087,
+ "object_name": "Nav1.6 SCN8A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267140,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267353,
+ "object_name": "Upchurch CM, Combe CL, C Knowlton, V Rousseau, Gasparini S, Canavier CC (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Long-Term Inactivation of Na+ Channels as a Mech of Adaptation in CA1 Pyr Cells (Upchurch et al '22)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Ramps were applied to CA1 pyramidal neurons from male rats in vitro (slice electrophysiology) and in silico (multi-compartmental NEURON model). Under control conditions, CA1 neurons fired more action potentials at higher frequencies on the up-ramp versus the down-ramp. This effect was more pronounced for dendritic compared to somatic ramps. We incorporated a four-state Markov scheme for NaV1.6 channels into our model and calibrated the spatial dependence of long-term inactivation according to the literature; this spatial dependence was sufficient to explain the difference in dendritic versus somatic ramps. Long-term inactivation reduced the firing frequency by decreasing open-state occupancy, and reduced spike amplitude during trains by decreasing occupancy in closed states, which comprise the available pool...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267140",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cupchu@lsuhsc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Carol Upchurch"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-04-02T14:10:43.427",
+ "ver_number": 4
+ },
+ "267142": {
+ "class_id": 19,
+ "created": "2021-09-20T11:10:19.193",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267142,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266890,
+ "object_name": "Kilb, Werner [wkilb at uni-mainz.de]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267188,
+ "object_name": "Lombardi A, Luhmann HJ, Kilb W (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Spatial constrains of GABAergic rheobase shift (Lombardi et al., 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In this models we investigated how the threshold eGABA, at which GABAergic inhibition switches to excitation, depends on the spatiotemporal constrains in a ball-and-stick neurons and a neurons with a topology derived from an reconstructed neuron."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267142",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "GABA reversal potential"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Ball-and-stick neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wkilb@uni-mainz.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Werner Kilb"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:57:35.727",
+ "ver_number": 4
+ },
+ "267144": {
+ "class_id": 19,
+ "created": "2021-09-25T05:07:08.393",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267144,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 261615,
+ "object_name": "Maes, Amadeus [amadeus.maes at gmail.com]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267784,
+ "object_name": "Maes A, Barahona M, Clopath C (2023)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Long- and short-term history effects in a spiking network model of statistical learning (Maes et al accepted)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ },
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We map inverse transform learning onto spiking networks. We show that the model manages to learn from repeated observations of a variable and samples from the target distribution during spontaneous dynamics."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267144",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "amadeus.maes@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Amadeus Maes"
+ },
+ "ver_date": "2023-07-24T20:22:57.57",
+ "ver_number": 3
+ },
+ "267145": {
+ "citation": {
+ "attr_id": 391,
+ "value": "DOI : 10.1007/s10827-021-00797-2"
+ },
+ "class_id": 19,
+ "created": "2021-09-27T15:01:50.98",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267145,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267164,
+ "object_name": "Akosy T, Shouval HZ (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Active intrinsic conductances in networks, transients, activity, plasticity (Akosy and Shouval 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we show that by including a small number of additional active conductances we can produce recurrent networks that are both more robust and exhibit firing-rate statistics that are more consistent with experimental results. We show that this holds both for bi-stable recurrent networks, which are thought to underlie working memory and for slowly decaying networks which might underlie the estimation of interval timing. We also show that by including these conductances, such networks can be trained to using a simple learning rule to predict temporal intervals that are an order of magnitude larger than those that can be trained in networks of leaky integrate and fire neurons.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267145",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "harel.shouval@uth.tmc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Harel Shouval"
+ },
+ "ver_date": "2021-10-08T15:32:12.16",
+ "ver_number": 4
+ },
+ "267146": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Ferrario, Andrea, et al. \"Whole animal modelling reveals neuronal mechanisms of decision-making and reproduces unpredictable swimming in frog tadpoles.\" bioRxiv (2021)."
+ },
+ "class_id": 19,
+ "created": "2021-09-29T06:45:11.627",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267146,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239343,
+ "object_name": "Ferrario, Andrea [andrea.ferrario at plymouth.ac.uk]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267200,
+ "object_name": "Ferrario A, Palyanov A, Koutsikou S, Li W, Soffe S, Roberts A, Borisyuk R (2021)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Central Nervous System tadpole model in Matlab and NEURON-Python (Ferrario et al, 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is the source code for three compuational models used for generating connectivity and swimming dynamics of spinal cord and hindbrain neurons in the Xenopus tadpoles using biological data. The model reproduces the initiation, continuation, termination and accelaration of forward swimming."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267146",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "A.A.Ferrario@exeter.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Andrea Ferrario"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 1361,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 239013,
+ "object_name": "Xenopus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:17:15.033",
+ "ver_number": 6
+ },
+ "267157": {
+ "citation": {
+ "attr_id": 391,
+ "value": "34491914"
+ },
+ "class_id": 19,
+ "created": "2021-10-07T13:33:25.497",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ },
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 92082,
+ "object_name": "Nav1.1 SCN1A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267157,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 235462,
+ "object_name": "Spreading depolarization"
+ },
+ {
+ "object_id": 267152,
+ "object_name": "Dynamic extracellular concentrations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267162,
+ "object_name": "Chever O, Zerimech S, Scalmani P, Lemaire L, Pizzamiglio L, Loucif A, Ayrault M, Krupa M, Desroches M, Duprat F, L\u00e9na I, Cest\u00e8le S, Mantegazza M (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Initiation of spreading depolarization by GABAergic neuron hyperactivity & NaV 1.1 (Chever et al 21)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Experimentally, we show that acute pharmacological activation of NaV1.1 (the main Na+ channel of interneurons) or optogenetic-induced hyperactivity of GABAergic interneurons is sufficient to ignite CSD in the neocortex by spiking-generated extracellular K+ build-up. Neither GABAergic nor glutamatergic synaptic transmission were required for CSD initiation. CSD was not generated in other brain areas, suggesting that this is a neocortex-specific mechanism of CSD initiation. Gain-of-function mutations of NaV1.1 (SCN1A) cause Familial Hemiplegic Migraine type-3 (FHM3), a subtype of migraine with aura, of which CSD is the neurophysiological correlate. Our results provide the mechanism linking NaV1.1 gain-of-function to CSD generation in FHM3.\r\n\r\nThose findings are supported by the two-neuron conductance-based model with dynamic ion concentrations we developed."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267157",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "louisiane.lemaire@orange.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Louisiane Lemaire"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2021-10-19T08:50:25.557",
+ "ver_number": 11
+ },
+ "267165": {
+ "citation": {
+ "attr_id": 391,
+ "value": "33616035"
+ },
+ "class_id": 19,
+ "created": "2021-10-11T11:43:22.36",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267165,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267177,
+ "object_name": "Lazar, Aurel A."
+ },
+ {
+ "object_id": 267178,
+ "object_name": "Liu, Tinghai"
+ },
+ {
+ "object_id": 267179,
+ "object_name": "Turkcan, Mehmet Kerem"
+ },
+ {
+ "object_id": 267180,
+ "object_name": "Zhou, Yiyin"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267182,
+ "object_name": "Lazar AA, Liu T, Turkcan MK, Zhou Y (2021)"
+ }
+ ]
+ },
+ "name": "Accelerating with FlyBrainLab discovery of the functional logic of Drosophila brain (Lazar et al 21)",
+ "notes": {
+ "attr_id": 24,
+ "value": "In recent years, a wealth of Drosophila neuroscience data have become available including cell type and connectome/synaptome datasets for both the larva and adult fly. To facilitate integration across data modalities and to accelerate the understanding of the functional logic of the fruit fly brain, we have developed FlyBrainLab, a unique open-source computing platform that integrates 3D exploration and visualization of diverse datasets with interactive exploration of the functional logic of modeled executable brain circuits. FlyBrainLab\u2019s User Interface, Utilities Libraries and Circuit Libraries bring together neuroanatomical, neurogenetic and electrophysiological datasets with computational models of different researchers for validation and comparison within the same platform. Seeking to transcend the limitations of the connectome/synaptome, FlyBrainLab also provides libraries for molecular transduction arising in sensory coding in vision/olfaction. Together with sensory neuron activity data, these libraries serve as entry points for the exploration, analysis, comparison, and evaluation of circuit functions of the fruit fly brain."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267165",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "FlyBrainLab"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ted Carnevale"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2021-10-27T21:11:22.507",
+ "ver_number": 20
+ },
+ "267173": {
+ "class_id": 19,
+ "created": "2021-10-25T03:42:53.86",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267173,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206278,
+ "object_name": "Kastellakis, George [gkastel at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 267410,
+ "object_name": "Synaptic Tagging and Capture"
+ },
+ {
+ "object_id": 180821,
+ "object_name": "Hebbian plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267416,
+ "object_name": "Chowdhury A, Luchetti A, Fernandes G, Filho DA, Kastellakis G, Tzilivaki A, Ramirez EM, Tran MY, Poirazi P, Silva AJ (2022)"
+ },
+ {
+ "object_id": 206391,
+ "object_name": "Kastellakis G, Silva AJ, Poirazi P (2016)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Locus Coeruleus blocking model (Chowdhury et al.)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... Here, we show that Locus Coeruleus (LC) cells projecting to dCA1 have a key permissive role in contextual memory linking, without affecting contextual memory formation, and that this effect is mediated by dopamine. Additionally, we found that LC to dCA1 projecting neurons modulate the excitability of dCA1 neurons, and the extent of overlap between dCA1 memory ensembles, as well as the stability of coactivity patterns within these ensembles...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267173",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gkastel@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "George Kastellakis"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:56:46.067",
+ "ver_number": 14
+ },
+ "267174": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Mauro Ursino*, Giulia Ricci, Laura Astolfi, Floriana Pichiorri, Manuela Petti and Elisa Magosso, (2021)\r\nA Novel Method to Assess Motor Cortex Connectivity and Event Related Desynchronization Based on Mass Models\r\nBrain sciences\r\n(accepted with minor revision)"
+ },
+ "class_id": 19,
+ "created": "2021-10-26T04:56:28.333",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267174,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239531,
+ "object_name": "Ursino, Mauro [mauro.ursino at unibo.it]"
+ },
+ {
+ "object_id": 263678,
+ "object_name": "Ricci, Giulia [Giulia.Ricci at unibo.it]"
+ },
+ {
+ "object_id": 261628,
+ "object_name": "Magosso, Elisa [elisa.magosso at unibo.it]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267204,
+ "object_name": "Ursino M, Ricci G, Astolfi L, Pichiorri F, Petti M, Magosso E (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Motor Cortex Connectivity & Event Related Desynchronization Based on Neural Mass Models (Ursino 21)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Knowledge of motor cortex connectivity is of great value in cognitive neuroscience, in order to provide a better understanding of motor organization and its alterations in pathological conditions. Traditional methods provide connectivity estimations which may vary depending on the task. This work aims to propose a new method for motor connectivity assessment based on the hypothesis of a task-independent connectivity network, assuming nonlinear behavior. The model considers six cortical regions of interest (ROIs) involved in hand movement. The dynamics of each region is simulated using a neural mass model, which reproduces the oscillatory activity through the interaction among four neural populations. Parameters of the model have been assigned to simulate both power spectral densities and coherences of a patient with left-hemisphere stroke during: resting condition, movement of the affected and movement of the unaffected hand. The presented model can simulate the three conditions using a single set of connectivity parameters, assuming that only inputs to the ROIs change from one condition to the other. The proposed procedure represents an innovative method to assess a brain circuit, which does not rely on a task-dependent connectivity network, and allows brain rhythms and desynchronization to be assessed on a quantitative basis. \r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267174",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "giulia.ricci29@unibo.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Giulia Ricci"
+ },
+ "ver_date": "2021-11-26T11:47:20.013",
+ "ver_number": 11
+ },
+ "267176": {
+ "citation": {
+ "attr_id": 391,
+ "value": "DOI: 10.1007/s10827-020-00763-4"
+ },
+ "class_id": 19,
+ "created": "2021-10-27T06:18:04.633",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267176,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267186,
+ "object_name": "Zhang, Qiang"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267185,
+ "object_name": "Zhang Q, Dai Y (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Spinal motoneuron recruitment regulated by ionic channels during fictive locomotion (Zhang & Dai 20)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 117815,
+ "object_name": "Spinal cord motor neuron fast fatiguing"
+ },
+ {
+ "object_id": 117814,
+ "object_name": "Spinal cord motor neuron fatigue resistant"
+ },
+ {
+ "object_id": 117813,
+ "object_name": "Spinal cord motor neuron slow twitch"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we investigated the channel mechanism regulating the motoneuron recruitment. Three types of motoneuron pools including slow (S), fatigue-resistant (FR) and fast-fatigable (FF) motoneurons were constructed based on the membrane proprieties of cat lumbar motoneurons. The transient sodium (NaT), persistent sodium (NaP), delayed-rectifier potassium [K(DR)], Ca2+-dependent K+ [K(AHP)] and L-type calcium (CaL) channels were included in the models...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267176",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "2487657812@qq.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Qiang Zhang"
+ },
+ "ver_date": "2023-02-06T11:35:52.613",
+ "ver_number": 11
+ },
+ "267183": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Bano-Otalora & Moye et al (2021) Daily electrical activity in the master circadian clock of a diurnal mammal, eLife, https://doi.org/10.7554/eLife.68179"
+ },
+ "class_id": 19,
+ "created": "2021-10-28T09:50:12.923",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267183,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 232101,
+ "object_name": "Diekman, Casey O. [casey.o.diekman at njit.edu]"
+ },
+ {
+ "object_id": 267193,
+ "object_name": "Moye, Matthew"
+ },
+ {
+ "object_id": 267194,
+ "object_name": "Saghafi, Soheil"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 145886,
+ "object_name": "Circadian Rhythms"
+ },
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267192,
+ "object_name": "Bano-Otalora B, Moye MJ, Brown T, Lucas RJ, Diekman CO, Belle MDC (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "HH model of SCN neurons including a transient K+ channel (Bano-Otalora et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This MATLAB code is associated with the paper \"Daily electrical activity in the master circadian clock of a diurnal mammal\" by Beatriz Bano-Otalora, Matthew J Moye, Timothy Brown, Robert J Lucas, Casey O Diekman, Mino DC Belle. eLife 2021; 10:e68719\r\nDOI: https://doi.org/10.7554/eLife.68179\r\n\r\nIt simulates a Hodgkin-Huxley-type model of the electrical activity of suprachiasmatic nucleus (SCN) neurons in the diurnal rodent Rhabdomys pumilio. Model parameters were inferred from current-clamp recordings using data assimilation (DA) algorithms available at https://github.com/mattmoye/neuroDA"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267183",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "casey.o.diekman@njit.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Casey O. Diekman"
+ },
+ "ver_date": "2022-03-31T14:47:18.2",
+ "ver_number": 5
+ },
+ "267184": {
+ "citation": {
+ "attr_id": 391,
+ "value": "The manuscript associated with this paper is currently under review. When it is published, we would like to include the citation to make this publicly available."
+ },
+ "class_id": 19,
+ "created": "2021-10-28T11:56:05.553",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267184,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 225299,
+ "object_name": "Multiscale"
+ },
+ {
+ "object_id": 58584,
+ "object_name": "Rate-coding model neurons"
+ },
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267211,
+ "object_name": "Volk VL, Hamilton LD, Hue DR, Shelburne KB, Fitzpatrick CK (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 195884,
+ "object_name": "NetPyNE"
+ },
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Neuromusculoskeletal modeling with neural and finite element models (Volk et al, 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 117813,
+ "object_name": "Spinal cord motor neuron slow twitch"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In this study, we present a predictive NMS model that uses an embedded neural architecture within a finite element (FE) framework to simulate muscle activation. A previously developed neuromuscular model of a motor neuron was embedded into a simple FE musculoskeletal model. Input stimulation profiles from literature were simulated in the FE NMS model to verify effective integration of the software platforms. Motor unit recruitment and rate coding capabilities of the model were evaluated. The integrated model reproduced previously published output muscle forces with an average error of 0.0435 N. The integrated model effectively demonstrated motor unit recruitment and rate coding in the physiological range based upon motor unit discharge rates and muscle force output.\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267184",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Abaqus"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "victoriavolk@u.boisestate.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Victoria Volk"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2023-02-06T11:40:29.877",
+ "ver_number": 8
+ },
+ "267187": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Nicoletti M, Loppini A, Chiodo L, Folli V, Ruocco G, et al. (2019) Biophysical modeling of C. elegans neurons: Single ion currents and whole-cell dynamics of AWCon and RMD. PLOS ONE 14(7): e0218738. https://doi.org/10.1371/journal.pone.0218738. PMID: 31260485"
+ },
+ "class_id": 19,
+ "created": "2021-11-04T10:59:30.993",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267187,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267244,
+ "object_name": "Nicoletti, Martina"
+ },
+ {
+ "object_id": 267245,
+ "object_name": "Loppini, Alessandro"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267241,
+ "object_name": "Nicoletti M, Loppini A, Chiodo L, Folli V, Ruocco G, Filippi S (2019)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Biophysical models of AWCon and RMD C. elegans neurons (M. Nicoletti at al. 2019)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 267242,
+ "object_name": "C elegans AWCon"
+ },
+ {
+ "object_id": 267243,
+ "object_name": "C elegans motor neuron RMD"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here are presented the Hodgkin-Huxley models of AWCon and RMD cells of the C. elegans nervous system as reported in Nicoletti et al. 2019. Cells are stimulated both in voltage and current clamp."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267187",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "a.loppini@unicampus.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alessandro Loppini"
+ },
+ "ver_date": "2022-01-02T15:38:02.677",
+ "ver_number": 2
+ },
+ "267189": {
+ "class_id": 19,
+ "created": "2021-11-11T05:16:00.963",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267189,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267213,
+ "object_name": "Zhang X, Hancock R, Santaniello S (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Computational model of cerebellar tDCS (Zhang et al., 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 136179,
+ "object_name": "Cerebellum deep nucleus neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This archive contains models used in (Zhang et al. 2021) and simulates Purkinje cell, granule cell, and deep cerebellar neuron activities under cerebellar tDCS (transcranial direct current stimulation)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267189",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "xu.3.zhang@uconn.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Xu Zhang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-01-27T14:59:32.08",
+ "ver_number": 12
+ },
+ "267201": {
+ "citation": {
+ "attr_id": 391,
+ "value": "@article{Fardet2020,\r\n title = {Simple Models Including Energy and Spike Constraints Reproduce Complex Activity Patterns and Metabolic Disruptions},\r\n author = {Fardet, Tanguy and Levina, Anna},\r\n year = {2020},\r\n journal = {PLOS Computational Biology},\r\n volume = {16},\r\n number = {12},\r\n pages = {e1008503},\r\n publisher = {{Public Library of Science}},\r\n issn = {1553-7358},\r\n doi = {10.1371/journal.pcbi.1008503},\r\n url = {https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1008503},\r\n abstract = {In this work, we introduce new phenomenological neuronal models (eLIF and mAdExp) that account for energy supply and demand in the cell as well as the inactivation of spike generation how these interact with subthreshold and spiking dynamics. Including these constraints, the new models reproduce a broad range of biologically-relevant behaviors that are identified to be crucial in many neurological disorders, but were not captured by commonly used phenomenological models. Because of their low dimensionality eLIF and mAdExp open the possibility of future large-scale simulations for more realistic studies of brain circuits involved in neuronal disorders. The new models enable both more accurate modeling and the possibility to study energy-associated disorders over the whole time-course of disease progression instead of only comparing the initially healthy status with the final diseased state. These models, therefore, provide new theoretical and computational methods to assess the opportunities of early diagnostics and the potential of energy-centered approaches to improve therapies.},\r\n keywords = {Action potentials,Behavior,Bioenergetics,Depolarization,Dynamical systems,Membrane potential,Neurons,Single neuron function}\r\n}"
+ },
+ "class_id": 19,
+ "created": "2021-11-24T09:11:17.18",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267201,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 121254,
+ "object_name": "Depolarization block"
+ },
+ {
+ "object_id": 139270,
+ "object_name": "Anoxic depolarization"
+ },
+ {
+ "object_id": 267007,
+ "object_name": "Energy consumption"
+ },
+ {
+ "object_id": 136252,
+ "object_name": "Rebound firing"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267205,
+ "object_name": "Fardet T, Levina A (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ },
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "eLIF and mAdExp: energy-based integrate-and-fire neurons (Fardet and Levina 2020)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 240378,
+ "object_name": "Abstract integrate-and-fire neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The eLIF and mAdExp neurons respectively extend the leaky integrate-and-fire and adaptive exponential (AdExp) neuron models.\r\nThey include a new variable modelling the availability of energy substrate and model constraints that energy availability may have on the subthreshold and spiking dynamics.\r\nIn the paper, we show how these models can reproduce complex dynamics and prove especially useful to model metabolic disruption, for instance in large-scale models of epilepsy or other diseases with metabolic components, such as Alzheimer, or Parkinson.\r\nGit repository: https://git.sr.ht/~tfardet/elif-madexp"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267201",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tanguy Fardet [tanguy.fardet at tuebingen.mpg.de]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tanguy.fardet@tuebingen.mpg.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tanguy Fardet"
+ },
+ "ver_date": "2021-11-26T11:28:28.42",
+ "ver_number": 3
+ },
+ "267219": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Parker, J.R.,Klishko, A.N., Prilutsky, B.I., Cymbalyuk,G.S. (2021). Asymmetric and transient properties of reciprocal activity of antagonists during the paw-shake response in the cat. PLoS Computational Biology. To appear."
+ },
+ "class_id": 19,
+ "created": "2021-12-10T16:30:07.917",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267219,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267269,
+ "object_name": "Parker JR, Klishko AN, Prilutsky BI, Cymbalyuk GS (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Cat Locomotion and Paw-Shaking Central Pattern Generator Model (Parker et al 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We suggest that the cat paw-shaking response is generated as a transient response of the locomotor CPG. Our general prediction is that this CPG is multifunctional, and in addition to the locomotor rhythm, it can generate a transient, ten-times faster, paw-shake-like response to a stimulus. In our multistable half-center oscillator (HCO) CPG model, we applied perturbations to the locomotor pattern which resulted in a transient paw-shake-like pattern that eventually returned back to the locomotor pattern. We showed that the inactivation of the slow inward current that drives the locomotor rhythm produced asymmetry of the transient flexor and extensor activity in a symmetric HCO model. To test predictions from our model about the transient nature of the paw-shake response, we compared burst durations (BDs) and interburst intervals (IBIs) of the model half-centers in consecutive cycles of paw-shake-like responses with the with the BD and IBI of electromyographic (EMG) activity bursts of cat hindlimb flexors and extensors recorded during a paw-shake response. In both cases, we found similar asymmetric trends in the BD and IBI throughout a paw-shake response."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267219",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Multifunctional CPG"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Cat Locomotion CPG"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Hodgkin-Huxley model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jessiraeparker2@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jessica Parker"
+ },
+ "ver_date": "2022-01-29T17:36:56.163",
+ "ver_number": 4
+ },
+ "267221": {
+ "class_id": 19,
+ "created": "2021-12-15T09:28:05.46",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267221,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206377,
+ "object_name": "Chavlis, Spyridon [schavlis at imbb.forth.gr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Hippocampal CA1 microcircuit model including somatic and dendritic inhibition",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 190560,
+ "object_name": "Hippocampus CA1 stratum oriens lacunosum-moleculare interneuron "
+ },
+ {
+ "object_id": 227332,
+ "object_name": "Hippocampus CA1 basket cell - CCK/VIP"
+ },
+ {
+ "object_id": 249699,
+ "object_name": "Hippocampal CA1 CR/VIP cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Here, we investigate the role of (dis)inhibition on the lateral entorhinal cortex (LEC) induced dendritic spikes on hippocampal CA1 pyramidal cells. The circuit model consists of pyramidal, SST+, CCK+, CR+/VIP+, and CCK+/VIP+ cells."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267221",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Hippocampus CA1 CCK cell"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "NEURON with python"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Circuit model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "schavlis@imbb.forth.gr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Spyridon Chavlis"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ },
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-12-19T13:54:09.037",
+ "ver_number": 7
+ },
+ "267222": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Orr SA, Ahn S, Park C, Miller TH, Kassai M and Issa FA (2021) Social Experience Regulates Endocannabinoids Modulation of Zebrafish Motor Behaviors. Front. Behav. Neurosci. 15:668589. doi: 10.3389/fnbeh.2021.668589"
+ },
+ "class_id": 19,
+ "created": "2021-12-15T15:25:04.997",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267222,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267233,
+ "object_name": "Ahn, Sungwoo"
+ },
+ {
+ "object_id": 152294,
+ "object_name": "Park, Choongseok [cpark at ncat.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267232,
+ "object_name": "Orr SA, Ahn S, Park C, Miller TH, Kassai M, Issa FA (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Mauthner cell with two pre-synaptic cells, an inhibitory and an excitatory cell (Orr et al 2021)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 184489,
+ "object_name": "Endocannabinoid"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To study the role of endocannabinoids system in the modulation of social status-dependent zebrafish motor behavior, we constructed a neuronal network, which consists of Mauthner cell with two pre-synaptic cells, an inhibitory cell and an excitatory cell."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267222",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cpark@ncat.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Choongseok Park"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 223,
+ "object_name": "Dopaminergic Receptor"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2022-01-06T20:38:13.58",
+ "ver_number": 6
+ },
+ "267250": {
+ "class_id": 19,
+ "created": "2022-01-06T14:02:31.84",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267250,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267727,
+ "object_name": "Cao F, Ralph M. R., Stinchcombe A. R. (2022)."
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Phenomenological model of the mouse circadian pacemaker (Cao et al., 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 145884,
+ "object_name": "Suprachiasmatic nucleus (SCN) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A phenomenological model of the mouse circadian pacemaker as found in the suprachiasmatic nucleus. The model is intrinsically rhythmic and responds to light input."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267250",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stinch@math.toronto.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Adam Stinchcombe"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-04-26T10:52:28.673",
+ "ver_number": 6
+ },
+ "267253": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Sharples SA, Parker J, Cruz JM, Vargas A, Lognon AP, Cheng N, Young L, Shonak A, Cymbalyuk G, Whelan PJ. Mechanisms of Episodic Rhythmicity Contributions of h-and Na+/K+ pump currents to the generation of episodic and continuous rhythmic activities. 2021. Frontiers in Cellular Neuroscience. 579. Accepted."
+ },
+ "class_id": 19,
+ "created": "2022-01-11T21:07:40.647",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267253,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267277,
+ "object_name": "Parker, Jessica"
+ },
+ {
+ "object_id": 267278,
+ "object_name": "Varga, Alex"
+ },
+ {
+ "object_id": 267279,
+ "object_name": "Cymbalyuk, Gennady"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267276,
+ "object_name": "Sharples SA, Parker J, Cruz JM, Vargas A, Lognon AP, Cheng N, Young L, Shonak A, Cymbalyuk G, Whelan PJ (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Mouse Episodic and Continuous Locomotion CPG (Sharples et al, 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 267281,
+ "object_name": "Spinal cord Ia interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 214,
+ "object_name": "Glycine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We modeled the locomotion CPG in neonatal mice, and our model produces both episodic and continuous locomotion, similar to activity seen in experimental recordings of motor neurons in the isolated spinal cords of neonatal mice. Our model is presented in Sharples SA, Parker J, Cruz JM, Vargas A, Lognon AP, Cheng N, Young L, Shonak A, Cymbalyuk G, Whelan PJ. Mechanisms of Episodic Rhythmicity Contributions of h-and Na+/K+ pump currents to the generation of episodic and continuous rhythmic activities. 2021. Frontiers in Cellular Neuroscience. 579. Accepted."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267253",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Ca, slow inactivation, low voltage-activated"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "spinal interneurons"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Hodgkin-Huxley style HCO"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "jessiraeparker2@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jessica Parker"
+ },
+ "ver_date": "2023-02-13T11:07:03.54",
+ "ver_number": 8
+ },
+ "267259": {
+ "class_id": 19,
+ "created": "2022-01-20T11:20:44.283",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 146506,
+ "object_name": "NKCC1"
+ },
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267259,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266959,
+ "object_name": "Kelley, Craig"
+ },
+ {
+ "object_id": 247215,
+ "object_name": "Newton, Adam J H [adam.newton at yale.edu]"
+ },
+ {
+ "object_id": 33738,
+ "object_name": "Lytton, William [bill.lytton at downstate.edu]"
+ },
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 235462,
+ "object_name": "Spreading depolarization"
+ },
+ {
+ "object_id": 167716,
+ "object_name": "Spreading depression"
+ },
+ {
+ "object_id": 183016,
+ "object_name": "Reaction-diffusion"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267541,
+ "object_name": "Kelley C, Newton AJH, Hrabetova S, McDougal RA, Lytton WW (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Spreading Depolarization in Brain Slices (Kelley et al. 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "A tissue-scale model of spreading depolarization (SD) in brain slices.\r\nWe used the NEURON simulator's reaction-diffusion framework to implement embed thousands of neurons \r\n(based on the the model from Wei et al. 2014)\r\nin the extracellular space of a brain slice, which is itself embedded in an bath solution.\r\nWe initiate SD in the slice by elevating extracellular K+ in a spherical region at the center of the slice.\r\nEffects of hypoxia and propionate on the slice were modeled by appropriate changes to the volume fraction \r\nand tortuosity of the extracellular space and oxygen/chloride concentrations."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267259",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "craig.kelley@downstate.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Craig Kelley"
+ },
+ "ver_date": "2022-08-27T17:46:04.79",
+ "ver_number": 6
+ },
+ "267260": {
+ "class_id": 19,
+ "created": "2022-01-20T17:03:52.757",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267260,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267749,
+ "object_name": "Lameu EL, Rasiah NP, Baimoukhametova DV, Loewen SP, Bains JS, Nicola W (2022)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Particle-Swarm Based Modelling Reveals Two Distinct Classes of CRH^{PVN} Neurons (Lameu et al 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ },
+ {
+ "object_id": 267750,
+ "object_name": "Hypothalamus PVN CRH neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... We developed a computational modelling platform that uses particle swarm optimization to rapidly and accurately fit biophysical neuron models to patched CRHPVN neurons. A model was fitted to each patched neuron without the use of dynamic clamping, or other procedures requiring sophisticated inputs and fitting algorithms. Any neuron undergoing standard current clamp step protocols for a few minutes can be fitted by this procedure...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267260",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ewandson.ll@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ewandson Luiz Lameu"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-06-01T10:44:14.267",
+ "ver_number": 7
+ },
+ "267280": {
+ "citation": {
+ "attr_id": 391,
+ "value": "An hypothesis concerning distinct schemes of olfactory activation evoked by perceived vs. non-perceived input. By: Roger D. Traub and the late Miles A. Whittington. Proceedings of the National Academy of Sciences USA, in press (Feb. 1, 2022)"
+ },
+ "class_id": 19,
+ "created": "2022-02-01T13:21:51.42",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267280,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33800,
+ "object_name": "Traub, Roger D [rtraub at us.ibm.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "piriform plus endopiriform circuit model. Pyramidal cells, multipolar neurons, interneurons.",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "An extension of the model of piriform cortex published in Reviews in the Neurosciences, by R.D. Traub, Yuhai Tu, Miles A. Whittington"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267280",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rtraub@us.ibm.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roger D. Traub"
+ },
+ "ver_date": "2022-02-15T13:32:21.653",
+ "ver_number": 2
+ },
+ "267286": {
+ "citation": {
+ "attr_id": 391,
+ "value": "The hyperpolarization-activated current shifts the dynamic range of a voltage-dependent electrical synapse\r\nWolfgang Stein, Margaret L. DeMaegd, Lena Yolanda Braun, Andr\u00e9s Vidal-Gadea, Allison L. Harris, Carola St\u00e4dele\r\nbioRxiv 2021.12.16.472972; doi: https://doi.org/10.1101/2021.12.16.472972"
+ },
+ "class_id": 19,
+ "created": "2022-02-04T14:44:39.313",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267286,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267034,
+ "object_name": "Harris, Allison L"
+ },
+ {
+ "object_id": 267097,
+ "object_name": "Stein, Wolfgang [wstein@ilstu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267308,
+ "object_name": "Stein W, DeMaegd ML, Braun LY, Vidal-Gadea A, Harris AL, St\u00e4dele C (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 143722,
+ "object_name": "Mathematica"
+ }
+ ]
+ },
+ "name": "Hyperpolarization-activated inward current and dynamic range of electrical synapse (Stein et al '22)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114276,
+ "object_name": "Stomatogastric Ganglion (STG) Modulatory commissural neuron 1 (MCN1)"
+ },
+ {
+ "object_id": 114303,
+ "object_name": "Stomatogastric Ganglion (STG) Lateral Gastric (LG) cell"
+ },
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Electrical synaptic transmission and voltage-gated ionic currents are often studied independently from one another. This model allows to study the interactions between the hyperpolarization-activated inward ionic current and a rectifying electrical synapse. Two single compartment nonspiking neurons are coupled through a rectifying electrical synapse. Current pulses are applied into the presynaptic neuron. The amplitude of the electrical postsynaptic potentials is measured. Ih can be added to either the pre- or postsynaptic neuron, or both. The cells represent the the MCN1 and LG neurons in the crab stomatogastric ganglion."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267286",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wstein@ilstu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Wolfgang Stein"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "ver_date": "2022-02-28T12:56:07.81",
+ "ver_number": 4
+ },
+ "267293": {
+ "class_id": 19,
+ "created": "2022-02-15T08:00:03.183",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267293,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 147118,
+ "object_name": "Maki-Marttunen, Tuomo [tuomomm at uio.no]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267539,
+ "object_name": "M\u00e4ki-Marttunen T, M\u00e4ki-Marttunen V (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Simulations of modulation of HCN channels in L5PCs (M\u00e4ki-Marttunen and M\u00e4ki-Marttunen, 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 266971,
+ "object_name": "Neocortex layer 5 pyramidal cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ },
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... In this work, we build upon existing biophysically detailed models of thick-tufted layer V pyramidal cells and model the effects of over- and under-expression of Ih channels as well as their neuromodulation by dopamine (gain of Ih function) and acetylcholine (loss of Ih function). We show that Ih channels facilitate the action potentials of layer V pyramidal cells in response to proximal dendritic stimulus while they hinder the action potentials in response to distal dendritic stimulus at the apical dendrite. We also show that the inhibitory action of the Ih channels in layer V pyramidal cells is due to the interactions between Ih channels and a hot zone of low voltage-activated Ca2+ channels at the apical dendrite. Our simulations suggest that a combination of Ih-enhancing neuromodulation at the proximal apical dendrite and Ih-inhibiting modulation at the distal apical dendrite can increase the layer V pyramidal excitability more than any of the two neuromodulators alone...\""
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267293",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "tuomo.maki-marttunen@tuni.fi"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Tuomo M\u00e4ki-Marttunen"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T11:01:57.24",
+ "ver_number": 9
+ },
+ "267295": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Jorge F. Mejias and Xiao-Jing Wang, Mechanisms of distributed working memory in a large-scale network of macaque neocortex, eLife 11:e72136, 2022. DOI: 10.7554/eLife.72136"
+ },
+ "class_id": 19,
+ "created": "2022-02-16T13:11:26.593",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267295,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 249591,
+ "object_name": "Mejias, Jorge [j.f.mejias at uva.nl]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 82787,
+ "object_name": "Working memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267296,
+ "object_name": "Mejias JF, Wang XJ (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Distributed working memory in large-scale macaque brain model (Mejias and Wang, 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This code simulates working memory in a large-scale cortical network of the macaque brain. The model is constrained by anatomical data and provides a simple framework to explain the widespread activation of cortical areas during working memory."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267295",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "j.f.mejias@uva.nl"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jorge Mejias"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:17:45.427",
+ "ver_number": 4
+ },
+ "267297": {
+ "citation": {
+ "attr_id": 391,
+ "value": "A MODEL OF WORKING MEMORY FOR ENCODING MULTIPLE ITEMS AND ORDERED SEQUENCES EXPLOITING THE THETA-GAMMA CODE by Mauro Ursino, Nicole Cesaretti, Gabriele Pirazzini, in press (with minor revision) on Cognitive Neurodynamics"
+ },
+ "class_id": 19,
+ "created": "2022-02-24T05:03:44.69",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267297,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239531,
+ "object_name": "Ursino, Mauro [mauro.ursino at unibo.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267301,
+ "object_name": "Ursino M, Cesaretti N, Pirazzini G (in press)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A model of working memory for encoding multiple items (Ursino et al, in press)",
+ "notes": {
+ "attr_id": 24,
+ "value": "We present an original neural network model, based on oscillating neural masses, to investigate mechanisms at the basis of working memory in different conditions. Simulations show that the trained network is able to desynchronize up to nine items without a fixed order using the gamma rhythm. Moreover, the network can replicate a sequence of items using a gamma rhythm nested inside a theta rhythm. The reduction in some parameters, mainly concerning the strength of GABAergic synapses, induce memory alterations which mimic neurological deficits. Finally, the network, isolated from the external environment simulates an\u201cimagination phase\u201d."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267297",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mauro.ursino@unibo.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mauro Ursino"
+ },
+ "ver_date": "2022-02-25T16:18:24.463",
+ "ver_number": 3
+ },
+ "267298": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Rachel Humphries, Jack R. Mellor, Cian O'Donnell,\r\nAcetylcholine Boosts Dendritic NMDA Spikes in a CA3 Pyramidal Neuron Model,\r\nNeuroscience, 2021, ISSN 0306-4522\r\nhttps://doi.org/10.1016/j.neuroscience.2021.11.014\r\nPMID: 34780920"
+ },
+ "class_id": 19,
+ "created": "2022-02-25T05:54:08.29",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267298,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267305,
+ "object_name": "Humphries, Rachel"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267303,
+ "object_name": "Humphries R, Mellor JR, O'Donnell C (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Acetylcholine Boosts Dendritic NMDA Spikes in a CA3 Pyramidal Neuron Model (Humphries et al., 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was used to compare the nonlinearity of NMDA inputs between dendritic sections in a CA3 pyramidal neuron as well as investigate the effect of cholinergic modulation/potassium channel inhibition on this dendritic NMDA-mediated nonlinearity."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267298",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Dendritic NMDA spikes"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "Ka, Kir, SK, BK, AHP, Km, Ka, Kdr, HCN, Calcium"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rachel.humphries@bristol.ac.uk"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Rachel Humphries"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-02-25T13:16:10.113",
+ "ver_number": 4
+ },
+ "267306": {
+ "class_id": 19,
+ "created": "2022-02-26T14:06:46.047",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267306,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 253928,
+ "object_name": "Tell, Fabien [fabien.tell at univ-amu.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267558,
+ "object_name": "Moubarak E, Inglebert Y, Tell F, Goaillard J-M (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Morphological determinants of action potential dynamics in substantia nigra (Moubarak et al 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 267559,
+ "object_name": "Dopaminergic substantia nigra neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model allows to simulate pacemaking activity in 37 fully reconstructed neurons. Calcium and sodium conductances vary by 11 increments in the Axon bearing dendrite part to simulate a 11*11*37 models. For each model Action potential (AP) properties are measured : frequency, amplitude, Threshold, Half duration, max first and second derivative. AP and conductances traces are then saved in a csv file."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267306",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fabien.tell@univ-amu.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fabien TELL"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2022-09-18T15:43:21.127",
+ "ver_number": 12
+ },
+ "267307": {
+ "class_id": 19,
+ "created": "2022-02-28T09:44:10.913",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267307,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 128378,
+ "object_name": "Linaro, Daniele [daniele.linaro at unige.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 3637,
+ "object_name": "Parameter Fitting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267331,
+ "object_name": "Linaro D, Levy MJ, Hunt DL (in review)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Hippocampal CA3 thorny and a-thorny principal neuron models (Linaro et al in review)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 259,
+ "object_name": "Hippocampus CA3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This repository contains two populations of biophysically detailed models of murine hippocampal CA3 pyramidal neurons based on the two principal cell types that comprise this region. They are the result of a data-driven approach aimed at optimizing the model parameters by utilizing high-resolution morphological reconstructions and patch-clamp electrophysiology data together with a multi-objective optimization algorithm.\r\n\r\nThe models quantitatively match the cell type-specific firing phenotypes and recapitulate the intrinsic population-level variability observed in the data. Additionally, the conductance values found by the optimization algorithm are consistent with differentially expressed ion channel genes in single-cell transcriptomic data for the two cell types.\r\n\r\nThe models have further been employed to investigate the cell type-specific biophysical properties involved in the generation of complex-spiking output driven by synaptic input and to show that a-thorny bursting cells are capable of encoding more information in their firing output than their counterparts, thorny regular spiking neurons.\r\n\r\nReference:\r\n\r\nLinaro D, Levy MJ, and Hunt, DL. Cell type-specific mechanisms of information transfer in data-driven biophysical models of hippocampal CA3 principal neurons. (2022) PLOS Computational Biology"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267307",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "danielelinaro@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniele Linaro"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-03-25T13:12:11.563",
+ "ver_number": 5
+ },
+ "267309": {
+ "class_id": 19,
+ "created": "2022-03-08T20:58:54.447",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267309,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267320,
+ "object_name": "Yang, Jane"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 267007,
+ "object_name": "Energy consumption"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267322,
+ "object_name": "Yang J, Shakil H, Ratt\u00e9 S, Prescott SA (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A modified Morris-Lecar model with gM and gAHP (Yang et al., 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model code for BioRxiv https://www.biorxiv.org/content/10.1101/2020.12.04.410787\r\n\r\nPlease see readme.txt to get started. "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267309",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "strawcup@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jane Yang"
+ },
+ "ver_date": "2023-02-13T10:11:41.847",
+ "ver_number": 14
+ },
+ "267310": {
+ "class_id": 19,
+ "created": "2022-03-10T04:18:15",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267310,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267401,
+ "object_name": "Berry, Hughes [hughes.berry at inria.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267400,
+ "object_name": "Moyse LB, Berry H (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "name": "Modulation of cortical Up-Down state switching by astrocytes (Moyse & Berry, 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 245940,
+ "object_name": "Abstract rate-based neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Recent experimental studies have suggested that the astrocytes of the local network can actually control the emergence of Up-Down regimes. Here we propose and study a neural net-\r\nwork model to explore the implication of astrocytes in this dynamical phenomenon. We consider three populations of cells: excitatory neurons, inhibitory neurons and astrocytes, interconnected by gliotransmission events, from neurons to astrocytes and back. We derive two models for this three-population system: a rate model and a stochastic\r\nspiking neural network with thousands of neurons and astrocytes. In numerical simulations of these three-population models, the presence of astrocytes is indeed observed\r\nto promote the emergence of Up-Down regimes with realistic characteristics."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267310",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "lisa.blum-moyse@inria.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Lisa Blum Moyse"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T11:04:08.28",
+ "ver_number": 4
+ },
+ "267311": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Bock, T., Negrean, A., & Siegelbaum, A.S. (2022). Somatic depolarization enhances hippocampal CA1 dendritic spike propagation and distal input-driven synaptic plasticity. Journal of Neuroscience."
+ },
+ "class_id": 19,
+ "created": "2022-03-10T11:18:52.527",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267311,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267314,
+ "object_name": "Negrean, Adrian [negreanadrian at gmail.com]"
+ },
+ {
+ "object_id": 267315,
+ "object_name": "Bock, Tobias [htb2110 at columbia.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267313,
+ "object_name": "Bock T, Negrean A, Siegelbaum AS (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Depolarization Enhacement of Dendritic Spike Propagation (Bock et al 2022)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model shows that small subthreshold depolarization of the soma powerfully enhances the propagation of dendritic spikes, through inactivation of dendritic A-type potassium channels."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267311",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "negreanadrian@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Adrian Negrean"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2022-03-12T13:31:07.633",
+ "ver_number": 9
+ },
+ "267318": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Processing of cell assemblies in the lateral entorhinal cortex; by Roger D. Traub and Miles A. Whittington; in press, Reviews in the Neurosciences"
+ },
+ "class_id": 19,
+ "created": "2022-03-12T14:54:29.813",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267318,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267319,
+ "object_name": "Traub RD, Whittington MA (in press)"
+ },
+ {
+ "object_id": 267234,
+ "object_name": "Traub RD, Tu Y, Whittington MA (2021)"
+ },
+ {
+ "object_id": 267323,
+ "object_name": "Traub RD, Whittington MA (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 45540,
+ "object_name": "FORTRAN"
+ }
+ ]
+ },
+ "name": "Lateral entorhinal cortex network model (Traub and Whittington, in press)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 222437,
+ "object_name": "Entorhinal cortex pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Circuits of multicompartment cells, including fan cells, layer 2 and layer 3 pyramidal cells, and multiple interneuron types; developed from model of piriform cortex (Traub, Tu and Whittington, Reviews in the Neurosciences), and Traub and Whittington, PNAS 2022"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267318",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rtraub@us.ibm.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Roger D. Traub"
+ },
+ "ver_date": "2022-03-13T22:08:02.103",
+ "ver_number": 4
+ },
+ "267324": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Phasic dopamine changes and Hebbian mechanisms during probabilistic reversal learning in striatal circuits: a computational study, by Miriam Schirru, Florence V\u00e9ronneau-Veilleux, Fahima Nekka and Mauro Ursino,\r\nin press on International Journal of Molecular Sciences"
+ },
+ "class_id": 19,
+ "created": "2022-03-18T06:36:40.693",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267324,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 239531,
+ "object_name": "Ursino, Mauro [mauro.ursino at unibo.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267328,
+ "object_name": "Schirru M, V\u00e9ronneau-Veilleux F, Nekka F, Ursino M (in press)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Phasic dopamine changes, Hebbian mechs during reversal learning in striatum (Schirru et al in press)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150619,
+ "object_name": "Neostriatum spiny neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A model simulating probabilistic action selection in the basal ganglia and reversal learning, with the possibility to use different versions of the Hebb rule and a flexible behavior for dopamine phasic changes "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267324",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Miriam Schirru"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mauro.ursino@unibo.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mauro Ursino"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ },
+ {
+ "object_id": 197,
+ "object_name": "D2"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2022-03-19T14:49:20.12",
+ "ver_number": 7
+ },
+ "267329": {
+ "class_id": 19,
+ "created": "2022-03-24T11:11:03.27",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 222730,
+ "object_name": "I Na, slow inactivation"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267329,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244486,
+ "object_name": "Booth, Victoria [vbooth at umich.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267506,
+ "object_name": "Miller J, Ryu H, Wang X, Booth V, Campbell SA (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Patterns of synchronization in 2D networks of inhibitory neurons (Miller et al, 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 146805,
+ "object_name": "Abstract Wang-Buzsaki neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We study sychronization in a 2D network of instrinsically oscillatory inhibitory neurons with connections to first nearest neighbours (horizontally, vertically and diagonally) and second nearest neighbours (horizonally and vertically)"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267329",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "sacampbell@uwaterloo.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sue Ann Campbell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T11:10:25.303",
+ "ver_number": 12
+ },
+ "267334": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Kim SY, Lim W (2021) Effect of Diverse Recoding of Granule Cells on Optokinetic Response in A Cerebellar Ring Network with Synaptic Plasticity. Neural Networks 134: 173-204"
+ },
+ "class_id": 19,
+ "created": "2022-03-27T21:35:31.837",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267334,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267341,
+ "object_name": "Kim, Sang-Yoon"
+ },
+ {
+ "object_id": 267342,
+ "object_name": "Lim, Woochang"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 140966,
+ "object_name": "Sensory processing"
+ },
+ {
+ "object_id": 267345,
+ "object_name": "Effective Optokinetic Response (OKR)"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267343,
+ "object_name": "Kim SY, Lim W (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "Cerebellar Model for the Optokinetic Response (Kim and Lim 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ },
+ {
+ "object_id": 246493,
+ "object_name": "Cerebellum interneuron Golgi GABA cell"
+ },
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 144503,
+ "object_name": "Inferior olive neuron"
+ },
+ {
+ "object_id": 267346,
+ "object_name": "Vestibular nucleus neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We consider a cerebellar spiking neural network for the optokinetic response (OKR). Individual granule (GR) cells exhibit diverse spiking patterns which are in-phase, anti-phase, or complex out-of-phase with respect to their population-averaged firing activity. Then, these diversely-recoded signals via parallel fibers (PFs) from GR cells are effectively depressed by the error-teaching signals via climbing fibers from the inferior olive which are also in-phase ones. Synaptic weights at in-phase PF-Purkinje cell (PC) synapses of active GR cells are strongly depressed via strong long-term depression (LTD), while those at anti-phase and complex out-of-phase PF-PC synapses are weakly depressed through weak LTD. This kind of \u2018\u2018effective\u2019\u2019 depression at the PF-PC synapses causes a big modulation in firings of PCs, which then exert effective inhibitory coordination on the vestibular nucleus (VN) neuron (which evokes OKR). For the firing of the VN neuron, the learning gain degree, corresponding to the modulation gain ratio, increases with increasing the learning cycle, and it saturates."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267334",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wclim@icn.re.kr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Woochang Lim"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2022-04-02T12:37:11.567",
+ "ver_number": 5
+ },
+ "267338": {
+ "class_id": 19,
+ "created": "2022-03-30T18:44:58.487",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267338,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267349,
+ "object_name": "Via, Guillem"
+ },
+ {
+ "object_id": 267605,
+ "object_name": "Baravalle, Roman"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 249458,
+ "object_name": "Theta oscillations"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "MEC PV-positive fast-spiking interneuron network generates theta-nested fast oscillations",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 222438,
+ "object_name": "Entorhinal cortex fast-spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We use a computational model of a network of Fast-Spiking Parvalbumin-positive Basket Cells to study its synchronizing properties. The intrinsic properties of neurons, properties of chemical synapses and of gap junctions are calibrated using electrophysiological recordings in mice Medial Entorhinal Cortex slices. The neurons synchronize, generating Fast Oscillations nested in an external theta drive. We show how gap junctions are necessary for the generation of the oscillations, how hyperpolarizing chemical synapses give rise to more robust fast oscillations, compared to shunting ones, and how short-term depression in the chemical synapses confine the fast oscillation on a narrow range of phases from the external theta drive."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267338",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I_Kv1, I_Kv3, I_leak"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gviarodriguez@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Guillem Via"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2022-11-29T12:55:21.12",
+ "ver_number": 20
+ },
+ "267339": {
+ "class_id": 19,
+ "created": "2022-03-31T04:03:59.78",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267339,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ },
+ {
+ "object_id": 116907,
+ "object_name": "Direction Selectivity"
+ },
+ {
+ "object_id": 185343,
+ "object_name": "Persistent activity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267720,
+ "object_name": "Coppolino S, Migliore M (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 116010,
+ "object_name": "PyNN"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Explainable AI for spatial navigation based on hippocampal circuitry (Coppolino + Migliore 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Learning to navigate a complex environment is not a difficult task for a mammal. For example, finding\r\nthe correct way to exit a maze following a sequence of cues, does not need a long training session. Just\r\na single or a few runs through a new environment is, in most cases, sufficient to learn an exit path\r\nstarting from anywhere in the maze. This ability is in striking contrast with the well-known difficulty\r\nthat any deep learning algorithm has in learning a trajectory through a sequence of objects. Being\r\nable to learn an arbitrarily long sequence of objects to reach a specific place could take, in general,\r\nprohibitively long training sessions. This is a clear indication that current artificial intelligence methods\r\nare essentially unable to capture the way in which a real brain implements a cognitive function. In\r\nprevious work, we have proposed a proof-of-principle model demonstrating how, using hippocampal\r\ncircuitry, it is possible to learn an arbitrary sequence of known objects in a single trial. We called\r\nthis model SLT (Single Learning Trial). In the current work, we extend this model, which we will call\r\ne-STL, to introduce the capability of navigating a classic four-arms maze to learn, in a single trial,\r\nthe correct path to reach an exit ignoring dead ends. We show the conditions under which the e-\r\nSLT network, including cells coding for places, head-direction, and objects, can robustly and efficiently\r\nimplement a fundamental cognitive function. The results shed light on the possible circuit organization\r\nand operation of the hippocampus and may represent the building block of a new generation of\r\nartificial intelligence algorithms for spatial navigation."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267339",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "simone.coppolino@ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Simone Coppolino"
+ },
+ "ver_date": "2023-04-07T11:41:11.963",
+ "ver_number": 11
+ },
+ "267355": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Nav1.2 and BK channels interaction shapes the action potential in the axon initial segment"
+ },
+ "class_id": 19,
+ "created": "2022-04-11T10:13:14.67",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267355,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244680,
+ "object_name": "Filipis, Luiza [luizafilipu at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267701,
+ "object_name": "Filipis L, Bl\u00f6mer LA, Montnach J, Loussouarn G, De Waard M, Canepari M (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "AIS model of L5 cortical pyramidal neuron (Filipis et al., 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 266971,
+ "object_name": "Neocortex layer 5 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "In neocortical layer-5 pyramidal neurons, the action potential (AP) is generated in the axon initial segment\r\n(AIS) when the membrane potential (Vm) reaches the threshold for activation of NaV1.6 and Nav1.2 voltage-\r\ngated Na+ channels, that differ in spatial distribution and biophysical properties. Here, we used ultrafast Na+, Vm\r\nand Ca2+ imaging in combination with pharmacological blocks of different channels to demonstrate the exclusive\r\nrole of each of them in shaping the generating AP. We mimicked the experimental results with this NEURON model where the role of the different ion channels tested reproduced the experimental evidence.\r\n\r\nNav1.2 and BK channels interaction shapes the action potential in the axon initial segment\r\nDOI: 10.1113/JP283801"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267355",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "luizafilipu@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Filipis Luiza"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-03-23T15:16:01.1",
+ "ver_number": 6
+ },
+ "267357": {
+ "class_id": 19,
+ "created": "2022-04-18T17:54:18.023",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267357,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267724,
+ "object_name": "Knowlton C, Canavier CC (2022)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Pacemaking, Bursting, and Depolarization Block in Midbrain Dopamine Neurons (Knowlton et al. 2022)",
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267357",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cknow1@lsuhsc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Christopher Knowlton"
+ },
+ "ver_date": "2023-04-26T11:29:48.343",
+ "ver_number": 5
+ },
+ "267363": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Accepted for publication in PNAS. \r\nTitle: TRPC4 and GIRK channels underlie neuronal coding\r\nof firing patterns that reflect Gq/11\u2013Gi/o coincidence signals\r\nof variable strengths\r\nAuthors: Jinbin Tian, Jane Yang, William C. Joslin, Veit Flockerzi, Steven A. Prescott, Lutz Birnbaumer, Michael X. Zhu,"
+ },
+ "class_id": 19,
+ "created": "2022-04-27T16:48:08.3",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267363,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267320,
+ "object_name": "Yang, Jane"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267366,
+ "object_name": "Tian J, Yang J, Joslin WC, Flockerzi V, Prescott SA, Birnbaumer L, Zhu MX (accepted)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A modified Morris-Lecar with TRPC4 & GIRK (Tian et al. 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulates differential activation of TRPC4 and GIRK channel to reproduce various spiking patterns underlying Gq/11\u2013Gi/o coincidence signals.\r\nThe attached code reproduces Fig.5B-F in Tian et al. 2022. Please see readme.txt to get started."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267363",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "strawcup@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Jane Yang"
+ },
+ "ver_date": "2022-05-03T19:58:52.517",
+ "ver_number": 3
+ },
+ "267382": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Liang Chen, Sue Ann Campbell, Exact mean-field models for spiking neural networks with adaptation, https://arxiv.org/abs/2203.08341"
+ },
+ "class_id": 19,
+ "created": "2022-05-24T15:35:36.273",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267382,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267383,
+ "object_name": "Chen, Liang"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267498,
+ "object_name": "Chen L, Campbell SA (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Exact mean-field models for Izhikevich networks (Chen and Campbell 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Main code on time series and bifurcation diagrams from the paper L. Chen and S. A. Campbell, Exact mean-field models for spiking neural networks with adaptation (preprint: https://arxiv.org/abs/2203.08341)"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267382",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "L477chen@uwaterloo.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Liang Chen"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "ver_date": "2022-07-23T12:02:12.657",
+ "ver_number": 18
+ },
+ "267384": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Ben-Shalom, Roy, et al. \"NeuroGPU: Accelerating multi-compartment, biophysically detailed neuron simulations on GPUs.\" Journal of neuroscience methods 366 (2022): 109400."
+ },
+ "class_id": 19,
+ "created": "2022-05-27T20:05:30.44",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267384,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 224842,
+ "object_name": "Ben-Shalom, Roy [rbenshalom at ucdavis.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267390,
+ "object_name": "Ben-Shalom R, Ladd A, Artherya NS, Cross C, Kim KG, Sanghevi H, Korngreen A, Bouchard KE, Bender KJ (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 267385,
+ "object_name": "NeuroGPU"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "NeuroGPU example on L5_TTPC1_cADpyr232_1 (Ben-Shalom 2022)(Ramaswamy et al., 2015)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 266971,
+ "object_name": "Neocortex layer 5 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This shows an example use case of building NeuroGPU simulation around a model pyramidal cell from the BBP portal. While the simulation can be run without python, we show how to update the parameters and run the simulation in python."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267384",
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "NeuroGPU"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zladd@berkeley.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alexander Ladd"
+ },
+ "ver_date": "2023-05-01T18:58:30.4",
+ "ver_number": 15
+ },
+ "267391": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Michael Lewis Italiano et al 2022 J. Neural Eng. in press https://doi.org/10.1088/1741-2552/ac72c2"
+ },
+ "class_id": 19,
+ "created": "2022-05-30T03:23:41.17",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267391,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267662,
+ "object_name": "Italiano, Michael L"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267394,
+ "object_name": "Italiano ML, Guo T, Lovell NH, Tsai D (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A 3D population model of midget retinal ganglion cells at the human fovea (Italiano et al, 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A robust means of generating eccentricity-dependent and morphologically realistic and three-dimensional populations of midget retinal ganglion cells at the central human retina (specifically, at the (para-)foveal region)."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267391",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Michael L Italiano [m.italiano@unsw.edu.au]"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Population"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michael.italiano39@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michael Lewis Italiano"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2023-02-21T09:51:47.117",
+ "ver_number": 20
+ },
+ "267395": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 35695984"
+ },
+ "class_id": 19,
+ "created": "2022-06-14T19:55:58.84",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267395,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267396,
+ "object_name": "Hoshino O, Zheng M, Fukuoka Y (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A sensorimotor-spinal cord model (Hoshino et al. 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "To elucidate how the flattening of sensory tuning due to a deficit in tonic inhibition slows motor responses, we simulated a neural network model in which a sensory cortical network (NS) and a motor cortical network (NM) are reciprocally connected, and the NM projects to spinal motoneurons (Mns). The NS was presented with a feature stimulus and the reaction time of Mns was measured. The flattening of sensory tuning in NS caused by decreasing the centration of GABA in extracellular space resulted in a decrease in the stimulus-sensitive NM pyramidal cell activity while increasing the stimulus-insensitive NM pyramidal cell activity, thereby prolonging the reaction time of Mns to the applied feature stimulus. We suggest that a reduction in extracellular GABA concentration in sensory cortex may interfere with selective activation in motor cortex, leading to slowing the activation of spinal motoneurons and therefore to slowing motor responses."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267395",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ysohoshino@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Osamu Hoshino"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2022-06-17T22:22:39.193",
+ "ver_number": 6
+ },
+ "267499": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Gentiletti D, de Curtis M, Gnatkovsky V and Suffczynski P (2022), Focal seizures are organized by feedback between neural activity and ion concentration changes. eLife"
+ },
+ "class_id": 19,
+ "created": "2022-07-25T08:22:08.723",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 127083,
+ "object_name": "I_AHP"
+ },
+ {
+ "object_id": 148257,
+ "object_name": "I_HCO3"
+ },
+ {
+ "object_id": 146505,
+ "object_name": "KCC2"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 144382,
+ "object_name": "Osmosis-driven water flux"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267499,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267502,
+ "object_name": "Suffczynski, Piotr [Piotr.Suffczynski at fuw.edu.pl]"
+ },
+ {
+ "object_id": 222320,
+ "object_name": "Gentiletti, Damiano [gentiletti.damiano at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 52405,
+ "object_name": "Epilepsy"
+ },
+ {
+ "object_id": 267152,
+ "object_name": "Dynamic extracellular concentrations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267505,
+ "object_name": "Gentiletti D, de Curtis M, Gnatkovsky V, Suffczynski P (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A focal seizure model with ion concentration changes (Gentiletti et al., 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 222437,
+ "object_name": "Entorhinal cortex pyramidal cell"
+ },
+ {
+ "object_id": 222438,
+ "object_name": "Entorhinal cortex fast-spiking interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Computer model was used to investigate the possible mechanisms of seizure initiation, progression and termination. The model was developed by complementing the Hodgkin-Huxley equations with activity-dependent changes in intra- and extracellular ion concentrations. The model incorporates a number of ionic mechanisms such as: active and passive membrane currents, inhibitory synaptic GABAA currents, Na/K pump, KCC2 cotransporter, glial K buffering, radial diffusion between extracellular space and bath, and longitudinal diffusion between dendritic and somatic compartments in pyramidal cells."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267499",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "piotr.suffczynski@fuw.edu.pl"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Piotr Suffczynski"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 119191,
+ "object_name": "Entorhinal cortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:11:03.5",
+ "ver_number": 6
+ },
+ "267501": {
+ "_citation_text": "",
+ "_implementers_text": "",
+ "class_id": 19,
+ "created": "2022-07-28T07:53:26.12",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "expmotivation": "",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267501,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "L2/3 V1 Pyramidal Cell model (modified Park et al., 2019; a/n: 231185) (Petousakis et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 266,
+ "object_name": "Neocortex L2/3 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": ""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267501",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kepetousakis@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Petousakis Konstantinos-Evangelos"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 266986,
+ "object_name": "Visual cortex"
+ }
+ ]
+ },
+ "ver_date": "2022-07-28T07:55:15",
+ "ver_number": 2
+ },
+ "267508": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Steephen, J. E. (2011). Excitability range of medium spiny neurons widens through the combined effects of inward rectifying potassium current inactivation and dopaminergic modulation. Neurocomputing, 74(18), 3884-3897."
+ },
+ "class_id": 19,
+ "created": "2022-08-11T03:32:43.887",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 267528,
+ "object_name": "Kir, inactivating"
+ }
+ ]
+ },
+ "gene": {
+ "attr_id": 476,
+ "value": [
+ {
+ "object_id": 122824,
+ "object_name": "IRK"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267508,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 121109,
+ "object_name": "Steephen, John Eric [johneric at duk.ac.in]"
+ },
+ {
+ "object_id": 267527,
+ "object_name": "Padmakumar, Mithun [mithun.padmakumar at duk.ac.in]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 97752,
+ "object_name": "Delay"
+ },
+ {
+ "object_id": 222956,
+ "object_name": "Neuromodulation"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 151471,
+ "object_name": "Steephen JE (2011)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Effects of Dopamine Modulation and KIR Inactivation in NAc Medium Spiny Neurons (Steephen 2011)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 112837,
+ "object_name": "Nucleus accumbens spiny projection neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Due to the involvement of nucleus accumbens (NAc) medium spiny neurons (MSNs) in diverse behaviors, their excitability changes can have broad functional significance. Dopamine modulates the biophysical behavior of MSNs. In ~40% of MSNs, inward rectifying potassium (KIR) currents inactivate significantly, imparting greater excitability. Employing a 189-compartment computational model of the MSN and using spatiotemporally distributed synaptic inputs, the regulation of excitability by KIR inactivation and dopaminergic modulation was investigated and quantitatively characterized. It was shown that by forming different combinations, these regulating agents could fine tune MSN excitability across a wide range. With existing evidence indicating MSNs with and without KIR inactivation to be the likely targets for D2- and D1-receptor mediated modulations, respectively, the present findings suggest that dopaminergic channel modulation may intensify the existing excitability difference between them by suppressing the excitability of MSNs without KIR inactivation while further enhancing the excitability of the more excitable MSNs with KIR inactivation. On the other hand, the combined modulation of channels and synapses by dopamine may reverse the relative excitability of one cell type with respect to the other.\r\n\r\nThis model contains a complete biophysical model of MSN cell. The application allows the user to vary the cell properties by choosing the type of KIR channels included (inKIR or non-inKIR), the type of Dopamine receptors (D1R or D2R) and the modulation mechanism (Intrinsic modulation , Intrinsic-synaptic modulation, or No modulation). The user can also choose between the single pulse current clamp stimulation or a physiologically realistic synaptic stimulation scheme. More details are available in the Help provided with the application."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267508",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mithun.padmakumar@duk.ac.in"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mithun Padmakumar"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ },
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2022-08-23T14:47:15.227",
+ "ver_number": 6
+ },
+ "267509": {
+ "citation": {
+ "attr_id": 391,
+ "value": "EGGER, R., SCHMITT, A. C., WALLACE, D. J., SAKMANN, B., OBERLAENDER, M. & KERR, \r\nJ. N. 2015. Robustness of sensory-evoked excitation is increased by inhibitory inputs to \r\ndistal apical tuft dendrites. Proc Natl Acad Sci U S A, 112, 14072-7.\r\nSCHULZ, J. M., KNOFLACH, F., HERNANDEZ, M. C. & BISCHOFBERGER, J. 2018. Dendrite\u0002targeting interneurons control synaptic NMDA-receptor activation via nonlinear alpha5-\r\nGABAA receptors. Nat Commun, 9, 3576.\r\nSTADLER, K., BIERWIRTH, C., STOENICA, L., BATTEFELD, A., REETZ, O., MIX, E., \r\nSCHUCHMANN, S., VELMANS, T., ROSENBERGER, K., BRAUER, A. U., LEHNARDT, \r\nS., NITSCH, R., BUDT, M., WOLFF, T., KOLE, M. H. & STRAUSS, U. 2014. Elevation in \r\ntype I interferons inhibits HCN1 and slows cortical neuronal oscillations. Cereb Cortex,\r\n24, 199-210.\r\nZOMORRODI, R., KROGER, H. & TIMOFEEV, I. 2008. Modeling thalamocortical cell: impact of \r\nca channel distribution and cell geometry on firing pattern. Front Comput Neurosci, 2, 5."
+ },
+ "class_id": 19,
+ "created": "2022-08-12T12:45:24.01",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267509,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267540,
+ "object_name": "Proddutur, Archana"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267530,
+ "object_name": "Ridner DJ, Proddutur A, Lur G (2022)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cell-type specific integration of feedforward and feedback synaptic inputs (Ridner et al, 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Simple compartmental model is used to explore and predict channel mechanisms that underlie differences in non-integration of synaptic inputs to posterior parietal cortex pyramidal subtypes, namely regular spiking cell and intrinsically bursting cell."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267509",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "posterior parietal cortex pyramidal cells"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "aproddutur@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Archana Proddutur"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:16:25.78",
+ "ver_number": 14
+ },
+ "267510": {
+ "class_id": 19,
+ "created": "2022-08-13T13:30:01.353",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267510,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267549,
+ "object_name": "Kamaleddin MA, Shifman A, Abdollahi N, Sigal D, Ratt\u00e9 S, Prescott SA (accepted)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Physiological noise facilitates multiplexed coding of vibrotactile signals in somatosensory cortex",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154778,
+ "object_name": "Abstract integrate-and-fire adaptive exponential (AdEx) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Simulations were conducted using a modified AdEx model. All simulations were performed in Brian2 with the Euler-Maruyama algorithm with fixed time step of 10 \u00b5s ."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267510",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Nooshin Abdollahi\r\nAaron Shifman"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nooshin.abdollahi@mail.utoronto.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Nooshin Abdollahi"
+ },
+ "ver_date": "2022-09-02T15:28:07.743",
+ "ver_number": 3
+ },
+ "267511": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Large-scale biophysically detailed model of somatosensory thalamocortical circuits in NetPyNE.\r\nFront. Neuroinform. doi: 10.3389/fninf.2022.884245"
+ },
+ "class_id": 19,
+ "created": "2022-08-16T13:06:11.77",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267511,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 182905,
+ "object_name": "Dura-Bernal, Salvador [salvadordura at gmail.com]"
+ },
+ {
+ "object_id": 267522,
+ "object_name": "Borges, Fernando da Silva"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3644,
+ "object_name": "Short-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267521,
+ "object_name": "Borges FS, Moreira JVS, Takarabe LM, Lytton WW, Dura-Bernal S (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Biophysically detailed model of somatosensory thalamocortical circuit",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Large-scale biophysically detailed model of somatosensory thalamocortical circuits in NetPyNE"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267511",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Somatosensory"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fernandodasilvaborges@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fernando da Silva Borges"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ },
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ }
+ ]
+ },
+ "ver_date": "2023-02-13T10:13:42.48",
+ "ver_number": 5
+ },
+ "267512": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Front. Cell. Neurosci., 2022\r\nhttps://doi.org/10.3389/fncel.2022.966636"
+ },
+ "class_id": 19,
+ "created": "2022-08-22T01:39:19.817",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "icg_channel_details": {
+ "attr_id": 640,
+ "value": [
+ {
+ "object_id": 267513,
+ "object_name": "ICG Detail_267512"
+ },
+ {
+ "object_id": 267514,
+ "object_name": "ICG Detail_267512"
+ },
+ {
+ "object_id": 267515,
+ "object_name": "ICG Detail_267512"
+ }
+ ]
+ },
+ "id": 267512,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266539,
+ "object_name": "Kamiya, Haruyuki [kamiya at med.hokudai.ac.j]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 267006,
+ "object_name": "Analog coding"
+ },
+ {
+ "object_id": 267005,
+ "object_name": "Subthreshold signaling"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267516,
+ "object_name": "Kamiya H (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Axonal subthreshold voltage signaling along hippocampal mossy fiber (Kamiya 2022)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Subthreshold depolarization of soma passively propagates into the axons for a substantial distance and thereby caused enhancement of the transmitter release from the axon terminals of hippocampal mossy fibers. Here we developed the granule cell-mossy fiber model implemented with axonal sodium potassium and calcium channels and explored the mechanisms underlying analog modulation of the action potential-evoked transmitter release by subthreshold voltage signaling along the axons. Action potential-induced calcium entry to the terminals was reduced, while subthreshold depolarization itself caused small calcium entry."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267512",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Subthreshold signaling"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kamiya@med.hokudai.ac.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Haruyuki Kamiya"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-08-23T13:06:14.473",
+ "ver_number": 10
+ },
+ "267531": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://pubmed.ncbi.nlm.nih.gov/35974119/"
+ },
+ "class_id": 19,
+ "created": "2022-08-24T05:01:20.663",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267531,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267533,
+ "object_name": "Gandolfi, Daniela"
+ },
+ {
+ "object_id": 267534,
+ "object_name": "Mapelli, Jonathan"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267536,
+ "object_name": "Gandolfi D, Mapelli J, Solinas S, De Schepper R, Geminiani A, Casellato C, D'Angelo E, Migliore M (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Scaffold model of mouse CA1 hippocampus. (Gandolfi et al 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The model allows to connect point neurons based on probability clouds generated on morpho-anatomical landmarks"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267531",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Gandolfi Daniela (UNIMORE), Mapelli Jonathan (UNIMORE)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "daniela.gandolfi@unimore.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniela Gandolfi"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2022-08-26T12:41:28.6",
+ "ver_number": 5
+ },
+ "267550": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Huang, C., Zeldenrust, F., & Celikel, T. (2022). Cortical Representation of Touch in Silico. Neuroinformatics. https://doi.org/10.1007/s12021-022-09576-5 (PMID 35486347)"
+ },
+ "class_id": 19,
+ "created": "2022-09-09T06:11:25.457",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267550,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150218,
+ "object_name": "Zeldenrust, Fleur [fleurzeldenrust at gmail.com]"
+ },
+ {
+ "object_id": 267555,
+ "object_name": "Huang, Chao"
+ },
+ {
+ "object_id": 267556,
+ "object_name": "Celikel, T"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 264553,
+ "object_name": "Spatial connectivity"
+ },
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267554,
+ "object_name": "Huang C, Zeldenrust F, Celikel T (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Realistic barrel cortical column - Matlab (Huang et al., 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 267557,
+ "object_name": "Barrel cortex L2/3 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Reconstructed rodent barrel cortical column (thalamic filter-and-fire input, L4 and L2/3 spiking neurons) based on measured distributions, so each run will create a different connectivity). Includes 13 types of inhibitory and excitatory neurons, implemented as Izhikevich neurons. Includes both a Matlab and a Python (NetPyNe) implementation."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267550",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "f.zeldenrust@neurophysiology.nl"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fleur Zeldenrust"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228597,
+ "object_name": "Barrel cortex"
+ }
+ ]
+ },
+ "ver_date": "2022-09-18T15:32:03.457",
+ "ver_number": 3
+ },
+ "267551": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Huang, C., Zeldenrust, F., & Celikel, T. (2022). Cortical Representation of Touch in Silico. Neuroinformatics. https://doi.org/10.1007/s12021-022-09576-5 (PMID 35486347)"
+ },
+ "class_id": 19,
+ "created": "2022-09-09T06:21:17.773",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267551,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 150218,
+ "object_name": "Zeldenrust, Fleur [fleurzeldenrust at gmail.com]"
+ },
+ {
+ "object_id": 267555,
+ "object_name": "Huang, Chao"
+ },
+ {
+ "object_id": 267556,
+ "object_name": "Celikel, T"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3647,
+ "object_name": "Long-term Synaptic Plasticity"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ },
+ {
+ "object_id": 264553,
+ "object_name": "Spatial connectivity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267554,
+ "object_name": "Huang C, Zeldenrust F, Celikel T (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 195884,
+ "object_name": "NetPyNE"
+ }
+ ]
+ },
+ "name": "Realistic barrel cortical column - NetPyNE (Huang et al., 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154741,
+ "object_name": "Abstract Izhikevich neuron"
+ },
+ {
+ "object_id": 267557,
+ "object_name": "Barrel cortex L2/3 pyramidal cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Reconstructed rodent barrel cortical column (thalamic filter-and-fire input, L4 and L2/3 spiking neurons) based on measured distributions, so each run will create a different connectivity). Includes 13 types of inhibitory and excitatory neurons, implemented as Izhikevich neurons. Includes both a Matlab and a Python (NetPyNe) implementation."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267551",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Matteo Cantarelli \r\nSalvador Dura-Bernal\u00a0\r\nEugenio Urdapilleta"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "f.zeldenrust@neurophysiology.nl"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fleur Zeldenrust"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228597,
+ "object_name": "Barrel cortex"
+ }
+ ]
+ },
+ "ver_date": "2022-09-18T15:35:00.74",
+ "ver_number": 4
+ },
+ "267552": {
+ "class_id": 19,
+ "created": "2022-09-12T17:48:22.27",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 136104,
+ "object_name": "I ANO2"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ },
+ {
+ "object_id": 243504,
+ "object_name": "IK Bkca"
+ },
+ {
+ "object_id": 112841,
+ "object_name": "I Krp"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267552,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189722,
+ "object_name": "Dorman, Daniel B "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267584,
+ "object_name": "Dorman DB, Blackwell KT (in press)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 186718,
+ "object_name": "MOOSE/PyMOOSE"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Spiny Projection Neuron Ca2+ based plasticity is robust to in vivo spike train (Dorman&Blackwell)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 260,
+ "object_name": "Neostriatum medium spiny direct pathway GABA cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...we address the sensitivity of plasticity to trial-to-trial variability and delineate how spatiotemporal synaptic input patterns produce plasticity with in vivo-like conditions using a data-driven computational model with a calcium-based plasticity rule. Using in vivo spike train recordings as inputs, we show that plasticity is strongly robust to trial-to-trial variability of spike timing, and derive general synaptic plasticity rules describing how spatiotemporal patterns of synaptic inputs control the magnitude and direction of plasticity...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267552",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kblackw1@gmu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Kim T Blackwell"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ }
+ ]
+ },
+ "ver_date": "2022-09-30T12:41:41.17",
+ "ver_number": 6
+ },
+ "267561": {
+ "citation": {
+ "attr_id": 391,
+ "value": "M. Fazli, R. Bertram, \"Network Properties of Electrically Coupled Bursting Pituitary Cells\", Frontiers in Endocrinology, 13:936160, 2022. PMID: 35872987"
+ },
+ "class_id": 19,
+ "created": "2022-09-22T13:33:05.483",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267561,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267571,
+ "object_name": "Bertram, Richard [rbertram at fsu.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267581,
+ "object_name": "Fazli M, Bertram R (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Network dynamics of electrically coupled pituitary cells (Fazli and Bertram, 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The model simulates a network of electrically coupled pituitary cells that are intrinsic bursters. The cells are homogeneous and the coupling is weak."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267561",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rbertram@fsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Bertram"
+ },
+ "ver_date": "2022-09-23T13:00:08.74",
+ "ver_number": 4
+ },
+ "267562": {
+ "citation": {
+ "attr_id": 391,
+ "value": "P. A. Fletcher, I. Marinelli, R. Bertram, L. S. Satin, A. S. Sherman, \"Pulsatile Basal Insulin Secretion is Driven by Glycolytic Oscillations\", Physiology, 37, DOI:10.1152/physiol.00044.2021, 2022. PMID: 35378996."
+ },
+ "class_id": 19,
+ "created": "2022-09-22T13:52:04.657",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267562,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267571,
+ "object_name": "Bertram, Richard [rbertram at fsu.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267580,
+ "object_name": "Fletcher PA, Marinelli I, Bertram R, Satin LS, Sherman AS (2022)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Model for pusatile insulin secretion at basal levels of glucose (Fletcher et al, 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This model describes the basis of pulsatile insulin secretion from islet beta-cells at basal levels of glucose, where the cells are not electrically active."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267562",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "pancreatic beta cells"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rbertram@fsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Bertram"
+ },
+ "ver_date": "2022-09-23T12:47:20.087",
+ "ver_number": 5
+ },
+ "267563": {
+ "citation": {
+ "attr_id": 391,
+ "value": "J. Kimrey, T. Vo, R. Bertram, \"Canards Underlie Both Electrical and Calcium-Induced Early Afterdepolarizations in a Model for Cardiac Myocytes\", SIAM Journal on Applied Dynamical Systems, 21:1059-1091, 2022."
+ },
+ "class_id": 19,
+ "created": "2022-09-22T15:42:56.18",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267563,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267571,
+ "object_name": "Bertram, Richard [rbertram at fsu.edu]"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267579,
+ "object_name": "Kimrey J, Vo T, Bertram R (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "A model for early afterdepolarizations in the cardiomyocyte action potential (Kimrey et al., 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The model demonstrates a common dynamic mechanism for calcium-dependent and calcium-independent early afterdepolarizations in cardiomyocytes."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267563",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rbertram@fsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Bertram"
+ },
+ "ver_date": "2022-09-23T12:39:31.653",
+ "ver_number": 4
+ },
+ "267564": {
+ "citation": {
+ "attr_id": 391,
+ "value": "I. Marinelli, B. M. Thompson, V. S. Parekh, P. A. Fletcher, L. Gerardo-Giorda, A. S. Sherman, R. Bertram, \"Oscillations in K(ATP) Conductance Drive Slow Calcium Oscillations in Pancreatic Beta-Cells\", Biophysical Journal, 121:1449-1464, 2022. PMCID: PMC9072586"
+ },
+ "class_id": 19,
+ "created": "2022-09-22T16:04:25.633",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267564,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267571,
+ "object_name": "Bertram, Richard [rbertram at fsu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267577,
+ "object_name": "Marinelli I, Thompson BM, Parekh VS, Fletcher PA, Gerardo-Giorda L, Sherman AS, Satin LS, Bertram R (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Integrated Oscillator Model for pancreatic islet beta-cells (Marinelli et al., 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 267582,
+ "object_name": "Pancreatic Beta Cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This version of the Integrated Oscillator Model for pancreatic beta-cells includes variables for oxidative phosphorylation, as well as glycolysis, electrical activity, and calcium dynamics."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267564",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rbertram@fsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Bertram"
+ },
+ "ver_date": "2022-09-23T14:18:31.737",
+ "ver_number": 6
+ },
+ "267565": {
+ "citation": {
+ "attr_id": 391,
+ "value": "I. Marinelli, V. Parekh, P. Fletcher, B. Thompson, J. Ren, X. Tang, T.L. Saunders, J. Ha, A. Sherman, R. Bertram, L. S. Satin, \"Slow Oscillations Persist in Panccreatic Beta Cells Lacking Phosphofructokinase M\", Biophysical Journal, 121:692-704, 2022. PMCID: PMC8948000"
+ },
+ "class_id": 19,
+ "created": "2022-09-22T16:38:55.96",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 87769,
+ "object_name": "ATP-senstive potassium current"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267565,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267571,
+ "object_name": "Bertram, Richard [rbertram at fsu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267574,
+ "object_name": "Marinelli I, Parekh V, Fletcher P, Thompson B, Ren J, Tang X, Saunders TL, Ha J, Sherman A, Bertram R, Satin LS (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Model for pancreatic beta-cells with two isoforms of PFK (Marinelli et al., 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This version of the Integrated Oscillator Model has two PFK isoforms, as well as modules for oxidative phosphorylation, electrical activity, and intracellular calcium."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267565",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "pancreatic beta cells"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rbertram@fsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Bertram"
+ },
+ "ver_date": "2022-09-23T11:38:28.837",
+ "ver_number": 5
+ },
+ "267566": {
+ "citation": {
+ "attr_id": 391,
+ "value": "P.J. Duncan, M. Fazli, N.. Romano, P. Le Tissier, R. Bertram, M.J. Shipston, \"Chronic Stress Facilitates Bursting Electrical Activity in Pituitary Corticotrophs\", Journal of Physiology, 600:313-332, 2022. PMID: 34855218"
+ },
+ "class_id": 19,
+ "created": "2022-09-22T16:55:40.603",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267566,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267571,
+ "object_name": "Bertram, Richard [rbertram at fsu.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267570,
+ "object_name": "Duncan PJ, Fazli M, Roman\u00f2 N, Le Tissier P, Bertram R, Shipston MJ (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Stochastic model for pituitary corticotrophs (Duncan et al., 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This model describes the electrical activity of pituitary corticotrophs, in which bursting occurs due to the stochastic opening of BK-type potassium channels."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267566",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "rbertram@fsu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard Bertram"
+ },
+ "ver_date": "2022-09-23T11:05:06.84",
+ "ver_number": 3
+ },
+ "267583": {
+ "class_id": 19,
+ "created": "2022-09-27T20:51:32.073",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267583,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267604,
+ "object_name": "Wang YC, Rudi J, Velaso J, Sinha N, Idumah G, Powers RK, Heckman CJ, Chardon MK (2022)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Parallel Tempering MCMC on Liu et al 1998 (Wang et al 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we propose using a particular Markov chain Monte Carlo (MCMC) algorithm, which has the advantage of inferring parameters in a Bayesian framework. The Bayesian approach is designed to be suitable for multimodal solutions to inverse problems. We introduce and demonstrate the method using a three-channel HH model. We then focus on the inference of nine parameters in an eight-channel HH model, which we analyze in detail. We explore how the MCMC algorithm can uncover complex relationships between inferred parameters using five injected current levels. The MCMC method provides as a result a nine-dimensional posterior distribution, which we analyze visually with solution maps or landscapes of the possible parameter sets...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267583",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ywang11@calstatela.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Y. Curtis Wang"
+ },
+ "ver_date": "2022-11-22T11:22:59.827",
+ "ver_number": 2
+ },
+ "267586": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Separability of Human Motor Memories during Reaching Adaptation with Force Cues. Crevecoeur et al., 2022, PLoS Computational Biology, 10.1371/journal.pcbi.1009966"
+ },
+ "class_id": 19,
+ "created": "2022-10-06T08:23:27.82",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267586,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 259370,
+ "object_name": "Crevecoeur, Fr\u00e9d\u00e9ric "
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Simulations of Reaching Adaptation and Control (Crevecoeur et al., 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The code provided is the one that was used to produce the simulations in Fig. 6. The main script is script_AC.m, which calls several subroutines. The routine script_AC.m defines the online learning rates and simulate a series of trials with either only offline learning, or both offline and online learning. The offline component of learning is identical for the two series. It calls adaptiveReaching.m and adaptiveLQG.m. The former defines the model matrices and the latter runs the simulation of a movement trajectory. Importantly, these two subroutines are the same as those published with our previous study (Crevecoeur et al., eNeuro, 7(1), 2020) and can be accessed at this link: http://modeldb.yale.edu/261466 . Two other functions are added to the model files: the functions expfit.m and expfitdual.m, which are called to extract the time constants associated with exponential models including one or two decay rates, respectively. The routines also use the function nlinfit.m and nlparci.m of the Statistics and Machine Learning Toolbox (Mathworks, Matlab R2017b)."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267586",
+ "other_type": {
+ "attr_id": 305,
+ "value": "Motor control"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "frederic.crevecoeur@uclouvain.be"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Fr\u00e9d\u00e9ric Crevecoeur"
+ },
+ "ver_date": "2022-10-22T07:57:22.633",
+ "ver_number": 2
+ },
+ "267587": {
+ "citation": {
+ "attr_id": 391,
+ "value": "36124673"
+ },
+ "class_id": 19,
+ "created": "2022-10-06T13:28:21.803",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267587,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 144398,
+ "object_name": "LFPy"
+ }
+ ]
+ },
+ "name": "Human L5 Cortical Circuit (Guet-McCreight)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 230198,
+ "object_name": "Neocortex U1 interneuron basket PV GABA cell"
+ },
+ {
+ "object_id": 230211,
+ "object_name": "Neocortex U1 interneuron bipolar VIP/CR GABA cell"
+ },
+ {
+ "object_id": 266971,
+ "object_name": "Neocortex layer 5 pyramidal cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We used L5 Pyr neuron models fit to electrophysiology data from younger and older individuals to simulate detailed human layer 5 microcircuits. These circuits also included detailed parvalbumin+ (PV), somatostatin+ (SST), and vasoactivate intestinal polypeptide+ (VIP) inhibitory interneuron models."
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267587",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "I Kv3.1, IKp, IKt, ICa_HVA, ICa_LVA"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Guet-McCreight, Alexandre [agmccrei@ at gmail.com]\r\nHay, Etay [etay.hay at camh.ca]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex U1 interneuron martinotti SOM GABA cell"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "agmccrei@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Alexandre Guet-McCreight"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-10-18T11:12:27.863",
+ "ver_number": 4
+ },
+ "267589": {
+ "class_id": 19,
+ "created": "2022-10-15T21:36:38.907",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267589,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 186894,
+ "object_name": "Tikidji-Hamburyan, Ruben [ruben.tikidji.hamburyan at gmail.com] "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267734,
+ "object_name": "Tikidji-Hamburyan RA, Govindaiah G, Guido W, Colonnese MT (accepted)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Decorrelation in the developing visual thalamus (Tikidji-Hamburyan et al, accepted)",
+ "notes": {
+ "attr_id": 24,
+ "value": "The developing visual thalamus and cortex extract positional information encoded in\r\nthe correlated activity of retinal ganglion cells by synaptic plasticity, allowing for the refinement of\r\nconnectivity. Here, we use a biophysical model of the visual thalamus during the initial visual circuit\r\nrefinement period to explore the role of synaptic and circuit properties in the regulation of such\r\nneural correlations. We find that the NMDA receptor dominance, combined with weak recurrent\r\nexcitation and inhibition characteristic of this age, prevents the emergence of spike-\u00adcorrelations\r\nbetween thalamocortical neurons on the millisecond timescale. Such precise correlations, which\r\nwould emerge due to the broad, unrefined connections from the retina to the thalamus, reduce the\r\nspatial information contained by thalamic spikes, and therefore we term them \"parasitic\" correlations.\r\nOur results suggest that developing synapses and circuits evolved mechanisms to compensate for\r\nsuch detrimental parasitic correlations arising from the unrefined and immature circuit."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267589",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Dorsal lateral geniculate nucleus, thalamocortical"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "phenomenological"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ruben.tikidji.hamburyan@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ruben Tikidji-Hamburyan"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-05-10T13:11:56.053",
+ "ver_number": 13
+ },
+ "267591": {
+ "class_id": 19,
+ "created": "2022-10-17T21:03:04.72",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267591,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267779,
+ "object_name": "Kato M, De Schutter E (2023)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 267776,
+ "object_name": "NeuroDevSim"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Purkinje cell dendritic tree selection in early cerebellar development (Kato + De Schutter)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ },
+ {
+ "object_id": 7346,
+ "object_name": "Cerebellum interneuron granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "value": "\"The study presents the first computational model that simultaneously simulates Purkinje cell growth and the dynamics of granule cell migrations during the first two postnatal weeks, allowing exploration of the role of physical and synaptic interactions upon dendritic selection. The model suggests that interaction with parallel fibers is important to establish the distinct planar morphology of Purkinje cell dendrites. Specific rules to select which dendritic trees to keep or retract result in larger winner trees with more synaptic contacts than using random selection. A rule based on afferent synaptic activity was less effective than rules based on dendritic size or numbers of synapses.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267591",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mizuki.kato@oist.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mizuki Kato"
+ },
+ "ver_date": "2023-06-28T21:18:13.21",
+ "ver_number": 9
+ },
+ "267594": {
+ "class_id": 19,
+ "created": "2022-10-19T12:19:16.967",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267594,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 240367,
+ "object_name": "Dewell, Richard Burkett [dewell at bcm.edu]"
+ },
+ {
+ "object_id": 33804,
+ "object_name": "Gabbiani, F"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3636,
+ "object_name": "Spatio-temporal Activity Patterns"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ },
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "LGMD - ON excitation to dendritic field C",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116948,
+ "object_name": "Locust Lobula Giant Movement Detector (LGMD) neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neuron model code used in \"Contrast-polarity specific mapping improves efficiency of neuronal computation for collision detection\". This model adapts previous LGMD model to investigate the effects of newly discovered ON excitation impinging on dendritic field C"
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267594",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ricky Morse"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dewell@bcm.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Richard B. Dewell"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 262707,
+ "object_name": "Locust"
+ }
+ ]
+ },
+ "ver_date": "2022-11-03T10:12:29.973",
+ "ver_number": 4
+ },
+ "267595": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://pubmed.ncbi.nlm.nih.gov/35021088/"
+ },
+ "class_id": 19,
+ "created": "2022-10-21T12:57:28.23",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267595,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 22012,
+ "object_name": "Depression"
+ },
+ {
+ "object_id": 240955,
+ "object_name": "Major Depression Disease (MDD)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 144398,
+ "object_name": "LFPy"
+ }
+ ]
+ },
+ "name": "Human layer 2/3 cortical microcircuits in health and depression (Yao et al, 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 184130,
+ "object_name": "Neocortex layer 2-3 interneuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "master",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267595",
+ "other_gene": {
+ "attr_id": 477,
+ "value": "Somatostatin"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Yao, Heng Kang [kant.yao at mail.utoronto.ca]\r\nGuet-McCreight, Alexandre [agmccrei at gmail.com]\r\nHay, Etay [etay.hay at camh.ca]"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neocortex layer 2-3 pyramidal neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kant.yao@mail.utoronto.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Heng Yao"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2022-10-22T07:53:03.897",
+ "ver_number": 3
+ },
+ "267596": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Muller SZ, Abbott LF and Sawtell NB, Interaction between Dendritic and Axonal Spiking Reconciles Homeostasis and Learning - under review."
+ },
+ "class_id": 19,
+ "created": "2022-10-26T17:03:25.157",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267596,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 260748,
+ "object_name": "Muller, Salomon Z [szm2106 at columbia.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3629,
+ "object_name": "Dendritic Action Potentials"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267737,
+ "object_name": "Muller SZ, Abbott LF, Sawtell NB (accepted)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 8114,
+ "object_name": "Dendrite"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "ELL Medium Ganglion Cell (Mormyrid fish) (Muller et al, 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 260746,
+ "object_name": "ELL Medium Ganglion cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In addition to the action potentials used for axonal signaling, many neurons generate dendritic 'spikes' associated with synaptic plasticity. However, in order to control both plasticity and signaling, synaptic inputs must be able to differentially modulate the firing of these two spike types. Here we investigate this issue in the electrosensory lobe (ELL) of weakly electric mormyrid fish, where separate control over axonal and dendritic spikes is essential for the transmission of learned predictive signals from inhibitory interneurons to the output stage of the circuit. Through a combination of experimental and modeling studies, we uncover a novel mechanism by which sensory input selectively modulates the rate of dendritic spiking by adjusting the amplitude of backpropagating axonal action potentials. Interestingly, this mechanism does not require spatially segregated synaptic inputs or dendritic compartmentalization, but relies instead on an electrotonically distant spike initiation site in the axon\u2014a common biophysical feature of neurons. \""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267596",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "szm2106@columbia.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Salomon Z Muller"
+ },
+ "ver_date": "2023-05-17T18:17:41.47",
+ "ver_number": 17
+ },
+ "267598": {
+ "citation": {
+ "attr_id": 391,
+ "value": "An Adaptive GLIF model for hippocampal CA1 pyramidal neurons and interneurons"
+ },
+ "class_id": 19,
+ "created": "2022-11-08T11:26:15.597",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267598,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 2015407,
+ "object_name": "Marasco A et al. (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 2832,
+ "object_name": "NEST"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Adaptive Generalized Leaky Integrate-and-Fire Model (AGLIF) (Marasco et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267598",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "solinas@uniss.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Sergio Solinas"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-10-19T00:36:07.12",
+ "ver_number": 20
+ },
+ "267599": {
+ "citation": {
+ "attr_id": 391,
+ "value": "10.1101/2022.10.24.513511"
+ },
+ "class_id": 19,
+ "created": "2022-11-14T13:22:00.7",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 267783,
+ "object_name": "I TRPM4"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267599,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 33801,
+ "object_name": "Canavier, CC"
+ },
+ {
+ "object_id": 267782,
+ "object_name": "Upchurch, Carol M"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267781,
+ "object_name": "Combe CL, Upchurch CM, Canavier CC, Gasparini S (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Cholinergic Modulation Shifts the Response of CA1 Pyramidal Cells to Depolarizing Ramps via TRPM4 Channels with Potential Implications for Place Cell Firing (Combe et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Model of Cholinergic modulation of a CA1 pyramidal cell through TRPM4, includes a nanodomain"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267599",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "cupchu@lsuhsc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Carol Upchurch"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-07-10T10:56:05.033",
+ "ver_number": 8
+ },
+ "267610": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Sodium channel slow inactivation normalizes firing in axons with uneven conductance distributions"
+ },
+ "class_id": 19,
+ "created": "2022-12-27T12:19:41.723",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267610,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244383,
+ "object_name": "Zang, Yunliang "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3541,
+ "object_name": "Action Potential Initiation"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 114307,
+ "object_name": "Conduction failure"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267711,
+ "object_name": "Zang Y, Marder E, Marom S"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Heterogeneous axon model (Zang et al, accepted)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The Na+ channels that are important for action potentials show rapid inactivation, a state in which they do not conduct, although the membrane potential remains depolarized. Rapid inactivation is a determinant of millisecond scale phenomena, such as spike shape and refractory period. Na+ channels also inactivate orders of magnitude more slowly, and this slow inactivation has impacts on excitability over much longer time scales than those of a single spike or a single inter-spike interval. Here, we focus on the contribution of slow inactivation to the resilience of axonal excitability when ion channels are unevenly distributed along the axon. We study models in which the voltage-gated Na+ and K+ channels are unevenly distributed along axons with different variances, capturing the heterogeneity that biological axons display. In the absence of slow inactivation, many conductance distributions result in spontaneous tonic activity. Faithful axonal propagation is achieved with the introduction of Na+ channel slow inactivation. This \u201cnormalization\u201d effect depends on relations between the kinetics of slow inactivation and the firing frequency. Consequently, neurons with characteristically different firing frequencies will need to implement different sets of channel properties to achieve resilience. The results of this study demonstrate the importance of the intrinsic biophysical properties of ion channels in normalizing axonal function."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267610",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "axon"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ylzang@brandeis.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yunliang Zang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115962,
+ "object_name": "Unknown"
+ }
+ ]
+ },
+ "ver_date": "2023-04-05T10:47:03.1",
+ "ver_number": 15
+ },
+ "267611": {
+ "citation": {
+ "attr_id": 391,
+ "value": "On the long time behaviour of single stochastic Hodgkin-Huxley neurons with constant signal, and a construction of circuits of interacting neurons showing self-organized rhythmic oscillations. \r\narXiv:2203.16160\r\nMathematical Neuroscience and Applications (MNA), to appear"
+ },
+ "class_id": 19,
+ "created": "2023-01-02T13:17:06.367",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267611,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267612,
+ "object_name": "H\u00f6pfner, Reinhard"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 150209,
+ "object_name": "R"
+ }
+ ]
+ },
+ "name": "On the long time behaviour of single stochastic Hodgkin-Huxley neurons (H\u00f6pfner 2023)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This is the R program associated to the paper \r\nR. Hoepfner \r\nOn the long time behaviour of \r\nsingle stochastic Hodgkin-Huxley neurons with constant signal, \r\nand a construction of circuits of interacting neurons \r\nshowing self-organized rhythmic interactions \r\nMathematical Neuroscience and Applications, to appear \r\narXiv:2203:16160 "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267611",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hoepfner@mathematik.uni-mainz.de"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Reinhard Hoepfner"
+ },
+ "ver_date": "2023-01-10T15:08:51.493",
+ "ver_number": 10
+ },
+ "267613": {
+ "citation": {
+ "attr_id": 391,
+ "value": "not available"
+ },
+ "class_id": 19,
+ "created": "2023-01-14T14:25:26.523",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267613,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 98011,
+ "object_name": "Place cell/field"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Dendritic mechanisms underlying the formation of a Place Cell (Mazzara et al. 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267613",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Camille Mazzara camille.mazzara@ibf.cnr.it"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "camille.mazzara@ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Camille Mazzara"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-12-01T05:15:30.42",
+ "ver_number": 7
+ },
+ "267614": {
+ "class_id": 19,
+ "created": "2023-01-18T16:51:51.91",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267614,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 267059,
+ "object_name": "Pain processing"
+ },
+ {
+ "object_id": 238958,
+ "object_name": "Stochastic simulation"
+ },
+ {
+ "object_id": 116951,
+ "object_name": "Spike Frequency Adaptation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267740,
+ "object_name": "Ma X, Miraucourt L, Qiu H, Sharif-Naeini R, Khadra A (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "HH-type model of fast-spiking parvalbumin interneurons in spinal dorsal horn (Ma et al, 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 267058,
+ "object_name": "Spinal cord lamina I-III interneuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This code is a Hodgkin-Huxley type model of parvalbumin-expressing interneurons (PVINs) in the dorsal horn of the spinal cord. This model is adopted from Bischop et al. 2012 and reparametrized to fit the electrical activity of spinal dorsal horn PVINs from naive mice. It reproduces the firing behavior change from tonic to transient observed in PVINs following nerve injury, which is achieved by a reduction in cytosolic calcium buffer concentration. The bifurcation analysis of PVIN model further explains how the firing pattern transits as the injection current increases, in a manner similar to that seen in our transient firing PVIN recordings. The code also includes an \u201cin vivo-like\u201d neural circuit model of A\u00df fiber-mediate nociceptive neural circuit. The circuit model is stimulated by Poisson-distributed excitatory synaptic currents representing the presynaptic inputs from the A\u00df fibers. It includes the PVIN model above and another HH type model describing the excitability of a PVIN post-synaptic target: the excitatory interneuron expressing protein kinase C gamma (PKCgIN). The A\u00df fiber-like presynaptic current was applied on both the inhibitory PVIN model and the excitatory PKCgIN model, the latter of which also received inhibitory synaptic input from the PVIN model."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267614",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Xinyue Ma [xinyue.ma at mail.mcgill.ca]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "xinyue.ma@mail.mcgill.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Xinyue Ma"
+ },
+ "ver_date": "2023-05-28T15:37:59.033",
+ "ver_number": 22
+ },
+ "267617": {
+ "class_id": 19,
+ "created": "2023-01-27T21:42:57.047",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 246,
+ "object_name": "I p,q"
+ },
+ {
+ "object_id": 112843,
+ "object_name": "I R"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267617,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 266539,
+ "object_name": "Kamiya, Haruyuki [kamiya at med.hokudai.ac.j]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3645,
+ "object_name": "Axonal Action Potentials"
+ },
+ {
+ "object_id": 267006,
+ "object_name": "Analog coding"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267712,
+ "object_name": "Zheng F, Kamiya H"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Activity-dependent broadening of axonal spikes by inactivating K channels (Zheng & Kamiya 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"Simulation of use-dependent changes in axonal K and Ca currents during action potentials propagating along hippocampal mossy fibers. The model resembling inactivating axonal K current caused a broadening of action potentials, while replacement with a non-inactivating model abolished the use-dependent changes.\"\r\nReference:\r\n1. Zheng F, Kamiya H (2023) Simulation test for impartment of use-dependent plasticity by inactivation of axonal potassium channels on hippocampal mossy fibers. Front Cell Neurosci doi: 10.3389/fncel.2023.1154910"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267617",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kamiya@med.hokudai.ac.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Haruyuki Kamiya"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-04-05T10:57:50.75",
+ "ver_number": 34
+ },
+ "267618": {
+ "class_id": 19,
+ "created": "2023-01-29T19:36:06.673",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267618,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 84598,
+ "object_name": "Extracellular Fields"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267788,
+ "object_name": "Xie Y, Qin P, Guo T, Al Abed A, Lovell NH, Tsai D (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 152965,
+ "object_name": "COMSOL"
+ },
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Hybrid NEURON-COMSOL sciatic nerve model with extracellular TIME stimulation (Xie et al, accepted)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A toolkit that automates the NEURON-to-COMSOL and COMSOL-to-NEURON pipeline. It converts a NEURON nerve model to a COMSOL nerve model. It uses TIME electrode to extracellularly stimulate the nerve. It meshes and studies the COMSOL model, and exports the generated extracellular voltage values to the NEURON model. The generated COMSOL model consists of a cubic simulation box. Inside the simulation box is a cylindrical nerve defined by users. The nerve consists of cylindrical fascicles, which consist of cylindrical fibres. A TIME electrode is inserted transversally into the nerve. The TIME electrode consists of a cuboid substrate of type P25N Polyimide and a cylindrical stimulating electrode recessed at its centre. Orientation is towards x-axis. Unit of length is in micrometre. "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267618",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "unmyelinated neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yuyang.xie@outlook.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yuyang Xie"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-07-27T15:52:15.39",
+ "ver_number": 6
+ },
+ "267619": {
+ "class_id": 19,
+ "created": "2023-01-30T06:55:22.837",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ }
+ ]
+ },
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267619,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 249460,
+ "object_name": "Aussel, Am\u00e9lie [amelie.aussel at loria.fr]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267623,
+ "object_name": "Aussel A, Fiebelkorn IC, Kastner S, Kopell NH, Pittman-Polletta BR (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "LIP and FEF rhythmic attention model (Aussel et al. 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model investigates how theta-rhythmic performance in an attentional task can emerge from the dynamics of the Lateral IntraParietal area (LIP) and the Frontal Eye Fields (FEF) when stimulated by the medial-dorsal pulvinar."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267619",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Attention"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Benjamin Pittman-Polletta"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "amelie.aussel@inria.fr"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Am\u00e9lie Aussel"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-02-07T09:59:14.26",
+ "ver_number": 6
+ },
+ "267620": {
+ "class_id": 19,
+ "created": "2023-01-30T11:03:23.68",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 88215,
+ "object_name": "I_Ks"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267620,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 144404,
+ "object_name": "Prinz, Astrid [astrid.prinz at emory.edu]"
+ },
+ {
+ "object_id": 114640,
+ "object_name": "Gunay, Cengiz [cgunay at emory.edu]"
+ },
+ {
+ "object_id": 267780,
+ "object_name": "Megwa, Obinna [omegwa@emory.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 225300,
+ "object_name": "Electrical-chemical"
+ },
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ },
+ {
+ "object_id": 206291,
+ "object_name": "Membrane Properties"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ },
+ {
+ "object_id": 120695,
+ "object_name": "Sodium pump"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 136098,
+ "object_name": "Information transfer"
+ },
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A single compartment model of Drosophila motor neuron (Megwa et al 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 156124,
+ "object_name": "Abstract single compartment conductance based cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a single compartment model aparted from Drosophilia larval crawl motor neuron data as described in\r\nMegwa, Pascual, Gunay, Pulver, Prinz (2023). The model contains Fast and Slow Potassium currents, Transient and Persistent Sodium Currents, Sodium and Potassium Leak Currents, and a NA/K Pump. No Calcium and Potassium concentrations aren't tracked."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267620",
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Drosophila Motor Neuron"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "omegwa00@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Obinna Fitzgerald Megwa"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2023-06-29T11:31:25.127",
+ "ver_number": 2
+ },
+ "267621": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Y. Zang, E. Marder, Neuronal morphology enhances robustness to perturbations of channel densities. Proc. Natl. Acad. Sci. U.S.A. 120, e2219049120 (2023)."
+ },
+ "class_id": 19,
+ "created": "2023-01-31T12:02:52.357",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267621,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 244383,
+ "object_name": "Zang, Yunliang "
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267679,
+ "object_name": "Zang Yunliang, Marder Eve"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "LP neuron model database (Zang and Marder 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 116963,
+ "object_name": "Stomatogastric Ganglion (STG) Lateral Pyloric (LP) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Biological neurons show significant cell-to-cell variability but have the striking ability to maintain their key firing properties in the face of unpredictable perturbations and stochas- tic noise. Using a population of multi-compartment models consisting of soma, neurites, and axon for the lateral pyloric neuron in the crab stomatogastric ganglion, we explored how rebound bursting is preserved when the 14 channel conductances in each model are all randomly varied. The coupling between the axon and other compartments is critical for the ability of the axon to spike during bursts and consequently determines the set of successful solutions. When the coupling deviates from a biologically realistic range, the neuronal tolerance of conductance variations is lessened. Thus, the gross morphological features of these neurons enhance their robustness to perturbations of channel densities and expand the space of individual variability that can maintain a desired output pattern."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267621",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "robustness"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ylzang@brandeis.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yunliang Zang"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115959,
+ "object_name": "Stomatogastric ganglion"
+ }
+ ]
+ },
+ "ver_date": "2023-03-03T11:48:31.283",
+ "ver_number": 8
+ },
+ "267646": {
+ "citation": {
+ "attr_id": 391,
+ "value": "K. Ly, T. Guo, D. Tsai, M. Muralidharan, M. N. Shivdasani et al., \"Simulating the impact of photoreceptor loss and inner retinal network changes on electrical activity of the retina,\" J Neural Eng, vol. 19, 2022"
+ },
+ "class_id": 19,
+ "created": "2023-02-12T22:40:13.57",
+ "gap_junctions": {
+ "attr_id": 469,
+ "value": [
+ {
+ "object_id": 114107,
+ "object_name": "Gap junctions"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267646,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 245691,
+ "object_name": "Vision"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267654,
+ "object_name": "Ly K, Guo T, Tsai D, Muralidharan M, Shivdasani MN, Lovell NH, Dokos S (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Biophysically Realistic Network Model of the Wild-Type and Degenerate Retina (Ly et al 2022)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 153361,
+ "object_name": "Retina photoreceptor rod GLU cell"
+ },
+ {
+ "object_id": 1966,
+ "object_name": "Retina photoreceptor cone GLU cell"
+ },
+ {
+ "object_id": 245428,
+ "object_name": "Retina horizontal GABA cell"
+ },
+ {
+ "object_id": 7020,
+ "object_name": "Retina bipolar GLU cell"
+ },
+ {
+ "object_id": 270,
+ "object_name": "Retina ganglion GLU cell"
+ },
+ {
+ "object_id": 223953,
+ "object_name": "Retina amacrine cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 214,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Please read the readme.txt file before running any code.\r\n\r\nObjective: A major reason for poor visual outcomes provided by existing retinal prostheses is the limited knowledge of the impact of photoreceptor loss on retinal remodelling and its subsequent impact on neural responses to electrical stimulation. Computational network models of the neural retina assist in the understanding of normal retinal function but can be also useful for investigating diseased retinal responses to electrical stimulation. \r\nApproach: We developed and validated a biophysically detailed discrete neuronal network model of the retina in the software package NEURON. The model includes rod and cone photoreceptors, ON and OFF bipolar cell pathways, amacrine and horizontal cells and finally, ON and OFF retinal ganglion cells with detailed network connectivity and neural intrinsic properties. By accurately controlling the network parameters, we simulated the impact of varying levels of degeneration on retinal electrical function.\r\nMain results: Our model was able to reproduce characteristic monophasic and biphasic oscillatory patterns seen in ON and OFF neurons during retinal degeneration. Oscillatory activity occurred at 3 Hz with partial photoreceptor loss and at 6 Hz when all photoreceptor input to the retina was removed. Oscillations were found to gradually weaken, then disappear when synapses and gap junctions were destroyed in the inner retina. Without requiring any changes to intrinsic cellular properties of individual inner retinal neurons, our results suggest that changes in connectivity alone were sufficient to give rise to neural oscillations during photoreceptor degeneration, and significant network connectivity destruction in the inner retina terminated the oscillations.\r\nSignificance: Our results provide a platform for further understanding physiological retinal changes with progressive photoreceptor and inner retinal degeneration. Furthermore, our model can be used to guide future stimulation strategies for retinal prostheses to benefit patients at different stages of disease progression, particularly in the early and mid-stages of retinal degeneration."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267646",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "keith.ly@unsw.edu.au"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Keith Ly"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 207,
+ "object_name": "mGluR"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 118529,
+ "object_name": "Retina"
+ }
+ ]
+ },
+ "ver_date": "2023-02-16T11:44:54.367",
+ "ver_number": 4
+ },
+ "267647": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Susi G, Garc\u00e9s P, Paracone E, Cristini A, Salerno M, Maest\u00fa F, Pereda E. FNS allows efficient event-driven spiking neural network simulations based on a neuron model supporting spike latency. Sci Rep. 2021 Jun 9;11(1):12160. doi: 10.1038/s41598-021-91513-8. PMID: 34108523; PMCID: PMC8190312."
+ },
+ "class_id": 19,
+ "created": "2023-02-15T14:00:07.637",
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267647,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 114660,
+ "object_name": "Connectivity matrix"
+ },
+ {
+ "object_id": 139148,
+ "object_name": "Brain Rhythms"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267660,
+ "object_name": "Susi G, Garces P, Paracone E, Cristini A, Salerno M, Maestu F, Pereda E (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 53895,
+ "object_name": "Java"
+ },
+ {
+ "object_id": 267677,
+ "object_name": "FNS Neural Simulator"
+ }
+ ]
+ },
+ "name": "FNS spiking neural simulator; LIFL neuron model, event-driven simulation (Susi et al 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "FNS is an event-driven Spiking Neural Network simulator, oriented to data-driven simulations.\r\nFNS combines spiking/synaptic level description with the event-driven approach, allowing the user to define heterogeneous modules and multi-scale connectivity with delayed connections and plastic synapses, providing fast simulations at the same time. A novel parallelization strategy is also implemented in order to further speed up simulations.\r\nFNS is based on the Leaky-Integrate and Fire with Latency (LIFL) spiking neuron model, that combines some realistic neurocomputational features to low computational complexity.\r\nFNS is written in Java, distributed as open source and protected by the GPL license."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267647",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Overthreshold Latency"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "https://www.fnsneuralsimulator.org/"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Leaky integrate-and-fire with latency"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "event-driven"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gianluca.susi82@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Gianluca Susi"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2023-02-24T09:29:24.14",
+ "ver_number": 23
+ },
+ "267661": {
+ "citation": {
+ "attr_id": 391,
+ "value": "PMID: 36607284; DOI: 10.1097/j.pain.0000000000002822\r\nC Marra, TV Hartke, M Ringkamp, M Goldfarb (2023) Enhanced sodium channel inactivation by temperature and FHF2 deficiency blocks heat nociception. Pain, in press."
+ },
+ "class_id": 19,
+ "created": "2023-02-19T14:53:57.137",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267661,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206273,
+ "object_name": "Goldfarb, Mitchell goldfarb at genectr.hunter.cuny.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267668,
+ "object_name": "Marra C, Hartke TV, Ringkamp M, Goldfarb M (in press)"
+ }
+ ]
+ },
+ "name": "DRG nociceptors from wild-type and Fhf2-KO mice. Fhf2 gene knockout blocks heat nociception. (Marra et al., 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 136307,
+ "object_name": "Dorsal Root Ganglion (DRG) cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We employ electrophysiological and computational methods to show that the heat nociception deficit in Fhf2 knockout mice can be explained by the combined effects of elevated temperature and FHF2 deficiency on the fast inactivation gating of Na v 1.7 and tetrodotoxin-resistant sodium channels expressed in dorsal root ganglion C-fibers."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267661",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "goldfarb@genectr.hunter.cuny.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Mitchell Goldfarb"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-06-23T12:01:54.043",
+ "ver_number": 5
+ },
+ "267666": {
+ "class_id": 19,
+ "created": "2023-02-21T12:25:12.907",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267666,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 22010,
+ "object_name": "Facilitation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 267059,
+ "object_name": "Pain processing"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3540,
+ "object_name": "Channel/Receptor"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "A model of ASIC1a and synaptic cleft pH modulating wind-up in wide dynamic range neurons (Delrocq)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 128565,
+ "object_name": "Wide dynamic range neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We introduce a model of ASIC1a homomeric (and heteromeric) ion channel inserted into a pre-existing model of wide dynamic range (WDR) neuron of the spinal cord together with a novel synaptic cleft acidification mechanism. This computational model shows a dual contribution of the ASIC1a channels to wind-up, a facilitation mechanism of WDR neurons, which has been verified experimentally: inhibiting or maximally activating ASICs reduce wind-up. The wind-up inhibition by activation of ASICs is likely mediated by calcium influx and calcium-activated potassium channels."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267666",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "wind-up; acidification"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Ariane Delrocq\r\nRomain Veltz"
+ },
+ "other_receptors": {
+ "attr_id": 302,
+ "value": "ASIC"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ariane-delrocq@laposte.net"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ariane Delrocq"
+ },
+ "ver_date": "2023-03-28T16:12:05.643",
+ "ver_number": 5
+ },
+ "267669": {
+ "citation": {
+ "attr_id": 391,
+ "value": "36802196"
+ },
+ "class_id": 19,
+ "created": "2023-02-22T23:47:36.907",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 3277,
+ "object_name": "I A, slow"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 88212,
+ "object_name": "KCNQ1"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267669,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 143112,
+ "object_name": "Kitano, Katsunori [kkt23219 at is.ritsumei.ac.jp]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267683,
+ "object_name": "Kitano K (2023)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "The STN-GPe network; subthalamic nucleus, prototypic GPe, and arkypallidal GPe neurons (Kitano 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 74300,
+ "object_name": "Subthalamus nucleus projection neuron"
+ },
+ {
+ "object_id": 88217,
+ "object_name": "Globus pallidus neuron"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267669",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Kitano, Katsunori [kkt23219 at is.ritsumei.ac.jp] (updated email address)"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kkt23219@is.ritsumei.ac.jp"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Katsunori Kitano"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ }
+ ]
+ },
+ "ver_date": "2023-03-03T13:40:21.147",
+ "ver_number": 6
+ },
+ "267680": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Dainauskas JJ, Marie H, Migliore M and Saudargiene A. GluN2B-NMDAR subunit contribution on synaptic plasticity: a phenomenological model for CA3-CA1 synapses. Frontiers in Synaptic Neuroscience 2023. DOI: 10.3389/fnsyn.2023.1113957"
+ },
+ "class_id": 19,
+ "created": "2023-02-24T14:25:27.52",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267680,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 87578,
+ "object_name": "STDP"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267688,
+ "object_name": "Dainauskas JJ, Marie H, Migliore M, Saudargiene A"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "CA1 pyr cell: phenomenological NMDAR-based model of synaptic plasticity (Dainauskas et al 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This Python code implements a phenomenological NMDA receptor-based voltage-dependent model of synaptic plasticity for CA3-CA1 synapse and shows weight changes of a synapse placed on a two-compartmental model of a hippocampal CA1 pyramidal neuron for spike-timing-dependent synaptic plasticity (STDP) and frequency-dependent synaptic plasticity stimulation protocols. The developed model predicts altered learning rules in synapses formed on the apical dendrites of the detailed compartmental model of CA1 pyramidal neuron in the presence of the GluN2B-NMDA receptor hypofunction."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267680",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Dainauskas, Justinas [justinas.dainauskas at gmail.com]\r\nSaudargiene, Ausra [ausra.saudargiene at lsmu.lt]"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ausra.saudargiene@lsmu.lt"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ausra Saudargiene"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-03-06T15:06:37.833",
+ "ver_number": 10
+ },
+ "267682": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://www.biorxiv.org/content/10.1101/2022.08.23.505010v2.abstract"
+ },
+ "class_id": 19,
+ "created": "2023-02-28T09:16:43.033",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267682,
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267685,
+ "object_name": "Meng JH, Schuman B, Rudy B, Wang XJ"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Single neuron models of four types of L1 mouse Interneurons: Canpy, NGFC, alpha7 and VIP cells",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Neocortical Layer 1 (L1) consists of the distal dendrites of pyramidal cells and GABAergic interneurons (INs) and receives extensive long-range \u201ctop-down\u201d projections, but L1 INs remain poorly understood. In this work, we systematically examined the distinct dominant electrophysiological features for four unique IN subtypes in L1 that were previously identified from mice of either gender: Canopy cells\r\nshow an irregular firing pattern near rheobase; Neurogliaform cells (NGFCs) are\r\nlate-spiking, and their firing rate accelerates during current injections; cells with strong\r\nexpression of the a7 nicotinic receptor (a7 cells), display onset (rebound) bursting;\r\nvasoactive intestinal peptide (VIP) expressing cells exhibit high input resistance, strong\r\nadaptation, and irregular firing. Computational modeling revealed that these diverse\r\nneurophysiological features could be explained by an extended\r\nexponential-integrate-and-fire neuron model with varying contributions of a slowly\r\ninactivating K+ channel (SIK), a T-type Ca2+ channel, and a spike-triggered\r\nCa2+-dependent K+ channel. In particular, we show that irregular firing results from\r\nsquare-wave bursting through a fast-slow analysis. Furthermore, we demonstrate that\r\nirregular firing is frequently observed in VIP cells due to the interaction between strong\r\nadaptation and a SIK channel. At last, we reveal that the VIP and a7 cell models\r\nresonant with Alpha/Theta band input through a dynamic gain analysis."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267682",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "slow-inactivation Potassium channel"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "John Hongyu Meng"
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Neurocortex S1 L1 Interneurons;"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "Python"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "john.meng@nyu.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "John Hongyu Meng"
+ },
+ "ver_date": "2023-04-03T09:45:30.753",
+ "ver_number": 13
+ },
+ "267686": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Theta-gamma phase amplitude coupling in a hippocampal CA1 microcircuit, Adam Ponzi, Salvador Dura-Bernal, Michele Migliore. PLoS CB 2023"
+ },
+ "class_id": 19,
+ "created": "2023-03-02T04:29:21.75",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267686,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 156115,
+ "object_name": "Gamma oscillations"
+ },
+ {
+ "object_id": 249458,
+ "object_name": "Theta oscillations"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267690,
+ "object_name": "Ponzi A, Dura-Bernal S, Migliore M (accepted)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 195884,
+ "object_name": "NetPyNE"
+ }
+ ]
+ },
+ "name": "Theta-gamma phase amplitude coupling in a hippocampal CA1 microcircuit (Ponzi et al. 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ },
+ {
+ "object_id": 190560,
+ "object_name": "Hippocampus CA1 stratum oriens lacunosum-moleculare interneuron "
+ },
+ {
+ "object_id": 114079,
+ "object_name": "Hippocampus CA1 basket cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Using a data-driven model of a hippocampal microcircuit, we demonstrate that theta-gamma phase amplitude coupling (PAC) can naturally emerge from a single feedback mechanism involving an inhibitory and excitatory neuron population, which interplay to generate theta frequency periodic bursts of higher frequency gamma.."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267686",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@pa.ibf.cnr.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Michele Migliore"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 212,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-03-06T17:00:59.017",
+ "ver_number": 7
+ },
+ "267691": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://pubmed.ncbi.nlm.nih.gov/34861412/"
+ },
+ "class_id": 19,
+ "created": "2023-03-12T22:15:38.727",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267691,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 206236,
+ "object_name": "Kumaravelu, Karthik [kk192 at duke.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 147753,
+ "object_name": "Intracortical Microstimulation"
+ },
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267693,
+ "object_name": "Kumaravelu K, Sombeck J, Miller LE, Bensmaia SJ, Grill WM (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ },
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Stoney vs Histed: Quantifying spatial effects of intracortical microstims (Kumaravelu et al 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52425,
+ "object_name": "Myelinated neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"...We implemented a biophysically-based computational model of a cortical column comprising neurons with realistic morphology and representative synapses. We quantified the spatial effects of single pulses and short trains of ICMS, including the volume of activated neurons and the density of activated neurons as a function of stimulation intensity...\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267691",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kk192@duke.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Karthik Kumaravelu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-03-14T11:52:27.257",
+ "ver_number": 3
+ },
+ "267694": {
+ "_citation_text": "",
+ "_implementers_text": "",
+ "class_id": 19,
+ "created": "2023-03-15T05:20:18.217",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "gitrepo": false,
+ "id": 267694,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 229586,
+ "object_name": "Masoli, Stefano [stefano.masoli at unipv.it]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": []
+ },
+ "model_paper": {
+ "value": [
+ {
+ "object_id": 2016056,
+ "object_name": "Masoli S et al. (2024)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Human and mouse Purkinje cell models (Masoli et al., 2024)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 271,
+ "object_name": "Cerebellum Purkinje GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "New Purkinje cell models based on Masoli et al. 2015 and 2017. \r\nThe main differences are: mouse and human morphologies.\r\nRevised ionic channels distribution"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267694",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "stefano.masoli@unipv.it"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Stefano Masoli"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2023-03-15T05:20:18.217",
+ "ver_number": 1
+ },
+ "267695": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Liu RY, Zhang Y, Smolen P, Cleary LJ, Byrne JH (2020). Role of p90 ribosomal S6 kinase in long-term synaptic facilitation and enhanced neuronal excitability. Sci. Rep. 10: 608. PMCID: PMC8298407.\r\n\r\nZhang Y, Smolen PD, Cleary LJ, Byrne JH (2021). Quantitative description of the interactions among kinase cascades underlying long-term plasticity of Aplysia sensory neurons. Sci. Rep. 11: 14931. PMCID: PMC8298407.\r\n\r\nLiu RY, Zhang Y, Smolen P, Cleary LJ, Byrne JH (2022). Defective synaptic plasticity in a model of Coffin-Lowry syndrome is rescued by simultaneously targeting PKA and MAPK pathways. Learn Mem. 29: 435-446. PMID: 36446603"
+ },
+ "class_id": 19,
+ "created": "2023-03-21T13:37:19.197",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267695,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 188516,
+ "object_name": "Memory"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267707,
+ "object_name": "Liu RY, Zhang Y, Smolen P, Cleary LJ, Byrne JH (2020)"
+ },
+ {
+ "object_id": 267291,
+ "object_name": "Zhang Y, Smolen PD, Cleary LJ, Byrne JH (2021)"
+ },
+ {
+ "object_id": 267709,
+ "object_name": "Liu RY, Zhang Y, Smolen P, Cleary LJ, Byrne JH (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Aplysia LTF model (Liu et al, 2020; Zhang et al, 2021; Liu et al 2022)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 52413,
+ "object_name": "Aplysia sensory neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267695",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "yili.zhang@uth.tmc.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Yili Zhang"
+ },
+ "ver_date": "2023-03-29T09:40:19.477",
+ "ver_number": 4
+ },
+ "267696": {
+ "citation": {
+ "attr_id": 391,
+ "value": "DOI: 10.1016/j.bpj.2023.03.013\r\nhttps://www.cell.com/biophysj/fulltext/S0006-3495(23)00166-2"
+ },
+ "class_id": 19,
+ "created": "2023-03-22T15:14:06.197",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267696,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267705,
+ "object_name": "Janjic, Predrag"
+ },
+ {
+ "object_id": 267706,
+ "object_name": "Solev, Dimitar"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267704,
+ "object_name": "Janjic P, Solev D, Kocarev L (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Glial voltage dynamics driven by Kir & K2P currents (Janjic et al 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 87589,
+ "object_name": "Astrocyte"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "The almost linear current-voltage relationship of most glial membranes results from multiple non-linear potassium leaky-pore or background conductances. The corresponding channel types develop and deregulate independently, some of them asymmetrically \u2013 producing non-monotonic I-V curves. The consequences of those alterations on whole-cell voltage responses have not been explored. We developed a minimal ordinary differential equation model of voltage dynamics incorporating detailed models of the different potassium currents based on electrophysiological recordings. Parametrically inducing some of the reported changes in rectification of glial Kir currents resulted in instability of the nominal resting membrane potential and the appearance of a second, much more depolarized resting state. If prolonged glial depolarizations prove plausible such bistability would change the present understanding of glial Vm dynamics."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267696",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Bistability and switching"
+ },
+ "other_currents": {
+ "attr_id": 303,
+ "value": "K2P"
+ },
+ "other_simulator": {
+ "attr_id": 307,
+ "value": "AUTO"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "predrag.a.janjic@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Predrag Janjic"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-03-24T09:42:23.5",
+ "ver_number": 3
+ },
+ "267710": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Moustafa, Muhammad and Mousa, Mohamed H and Saad, Mohamed S and Basha, Tamer and Elbasiouny, Sherif M\r\nFront Cell Neurosci. 2023 Feb 16;17:1093199.\r\ndoi: 10.3389/fncel.2023.1093199. eCollection 2023."
+ },
+ "class_id": 19,
+ "created": "2023-03-27T16:43:30.093",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 243,
+ "object_name": "I L high threshold"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 243506,
+ "object_name": "IK Skca"
+ },
+ {
+ "object_id": 244,
+ "object_name": "I N"
+ }
+ ]
+ },
+ "gitrepo": true,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267710,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267718,
+ "object_name": "Muhammad Moustafa"
+ },
+ {
+ "object_id": 267719,
+ "object_name": "Mohamed H Mousa"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143724,
+ "object_name": "Bifurcation"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ },
+ {
+ "object_id": 3638,
+ "object_name": "Simplified Models"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267717,
+ "object_name": "Moustafa M, Mousa MH, Saad MS, Basha T, Elbasiouny SM"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Relating anatomical and biophysical properties to motoneuron excitabilty (Moustafa et al. 2023)",
+ "notes": {
+ "attr_id": 24,
+ "value": "Nonlinear dynamical analysis of spinal motoneuron reveals effects of SK, CaL channels, and cell morphology on excitability, with implications for pathophysiology of ALS.\r\n\r\n\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267710",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "CaL warmup & stochast gat"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Stuff that didn't fit the above fields: Concepts should include F-I curve hysteresis, co-localization of CaL and SK channels, CaL warm-up and stochastic gating (phenomena displayed by L channels, important to motoneuron function)."
+ },
+ "other_neurons": {
+ "attr_id": 301,
+ "value": "Spinal motor neuron, not otherwise specified"
+ },
+ "other_type": {
+ "attr_id": 305,
+ "value": "Reduced model"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ted.carnevale@yale.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Ted Carnevale"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2023-04-05T11:04:59.49",
+ "ver_number": 27
+ },
+ "267728": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Gilbert JE, Titus N, Zhang T, Esteller R, Grill WM. Surround Inhibition Mediates Pain Relief by Low Amplitude Spinal Cord Stimulation: Modeling and Measurement. eNeuro. 2022 Oct 5;9(5):ENEURO.0058-22.2022. doi: 10.1523/ENEURO.0058-22.2022. PMID: 36150892; PMCID: PMC9536854."
+ },
+ "class_id": 19,
+ "created": "2023-04-26T13:42:50.713",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267728,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267731,
+ "object_name": "Gilbert JE, Titus N, Zhang T, Esteller R, Grill WM (2022)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3538,
+ "object_name": "Axon"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Dorsal Column Fiber Stimulation model (Gilbert et al. 2022)",
+ "notes": {
+ "attr_id": 24,
+ "value": "This model was used in Gilbert et al. 2022. This model was used to estimate rat dorsal column fiber responses to epidural spinal cord stimulation pulses."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267728",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nathan.titus@duke.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Nathan D. Titus"
+ },
+ "ver_date": "2023-05-02T09:41:15.133",
+ "ver_number": 2
+ },
+ "267735": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://appliednetsci.springeropen.com/articles/10.1007/s41109-020-00307-w"
+ },
+ "class_id": 19,
+ "created": "2023-05-16T16:20:18.55",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267735,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237467,
+ "object_name": "Sasidharakurup, Hemalatha [hemalathas at am.amrita.edu]"
+ },
+ {
+ "object_id": 116853,
+ "object_name": "Diwakar, Shyam [shyam at amrita.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 144991,
+ "object_name": "Apoptosis"
+ },
+ {
+ "object_id": 112047,
+ "object_name": "Aging/Alzheimer`s"
+ },
+ {
+ "object_id": 65417,
+ "object_name": "Parkinson's"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267744,
+ "object_name": "Sasidharakurup S, Diwakar S (2020)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 237011,
+ "object_name": "CellDesigner"
+ }
+ ]
+ },
+ "name": "Biochemical Systems Theory Model of TNFa related pathways (Sasidharakurup and Diwakar 2020)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"In this study, a computational model of AD and PD have been modelled using biochemical systems theory, and shows how Tumour Necrosis Factor alpha (TNFa) regulated neuroinflammation, oxidative stress and insulin pathways can dysregulate its downstream signalling cascade that lead to neurodegeneration observed in AD and PD. The experimental data for initial conditions for this model and validation of the model was based on data reported in literature. In simulations, elevations in the aggregations of major proteins involved in the pathology of AD and PD including amyloid beta, alpha synuclein, tau have been modelled. Abnormal aggregation of these proteins and hyperphosphorylation of tau were observed in the model\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267735",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shyam@amrita.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shyam Diwakar"
+ },
+ "ver_date": "2023-05-31T22:55:51.87",
+ "ver_number": 3
+ },
+ "267736": {
+ "citation": {
+ "attr_id": 391,
+ "value": "https://pubmed.ncbi.nlm.nih.gov/34807729/"
+ },
+ "class_id": 19,
+ "created": "2023-05-16T16:28:06.34",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267736,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 237467,
+ "object_name": "Sasidharakurup, Hemalatha [hemalathas at am.amrita.edu]"
+ },
+ {
+ "object_id": 116853,
+ "object_name": "Diwakar, Shyam [shyam at amrita.edu]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 55277,
+ "object_name": "Signaling pathways"
+ },
+ {
+ "object_id": 266892,
+ "object_name": "COVID-19"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267746,
+ "object_name": "Sasidharakurup H, Kumar G, Nair B, Diwakar S (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 145174,
+ "object_name": "Molecular Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 237011,
+ "object_name": "CellDesigner"
+ }
+ ]
+ },
+ "name": "Biochemical Systems Theory Model of SARS-CoV-2 infection network (Sasidharakurup et al., 2021)",
+ "notes": {
+ "attr_id": 24,
+ "value": "\"We report here a mathematical model of SARS-CoV-2 infection pathway network with cytokine storm, oxidative stress, thrombosis, insulin resistance, and nitric oxide (NO) pathways. The biochemical systems theory model shows autocrine loops with positive feedback enabling excessive immune response, cytokines, transcription factors, and interferons, which can imbalance homeostasis of the system.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267736",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "shyam@amrita.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Shyam Diwakar"
+ },
+ "ver_date": "2023-05-31T23:07:18.897",
+ "ver_number": 4
+ },
+ "267738": {
+ "citation": {
+ "attr_id": 391,
+ "value": "The paper associated with this model will be published."
+ },
+ "class_id": 19,
+ "created": "2023-05-19T02:02:43.043",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267738,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 235771,
+ "object_name": "Kim, Hojeong [hojeong.kim03 at gmail.com]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267751,
+ "object_name": "Kim H, Heckman CJ (2023)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "A computational model for fast skeletal muscle (Kim and Heckman, accepted)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 105531,
+ "object_name": "Skeletal muscle cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "A computational framework for investigating the dynamic variation in the calcium-force relationship during force generation under physiological conditions of neural excitation and muscle length in intact fast skeletal muscles"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267738",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "hojeong.kim03@gmail.com"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Hojeong Kim"
+ },
+ "ver_date": "2023-06-02T15:38:15.95",
+ "ver_number": 6
+ },
+ "267742": {
+ "class_id": 19,
+ "created": "2023-05-30T19:03:16.943",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267742,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267775,
+ "object_name": "Chapman DP, Vicini S, Burns MP, Evans R (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ },
+ {
+ "object_id": 266893,
+ "object_name": "Statistical learning model"
+ },
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 245004,
+ "object_name": "BluePyOpt\r\n"
+ },
+ {
+ "object_id": 267060,
+ "object_name": "eFEL"
+ }
+ ]
+ },
+ "name": "CA1 pyramidal populations after high frequency head impacts (Chapman, et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "\"... we generated in silico models of CA1 pyramidal neurons from current clamp data of control mice and mice that sustained HFHI. We use a directed evolution algorithm with a crowding penalty to generate a large and unbiased population of plausible models for each group that approximated the experimental features. The HFHI neuron model population showed decreased voltage gated sodium conductance and a general increase in potassium channel conductance. We used partial least squares regression analysis to identify combinations of channels that may account for CA1 hypoexcitability after HFHI. The hypoexcitability phenotype in models was linked to A- and M-type potassium channels in combination, but not by any single channel correlations. We provide an open access set of CA1 pyramidal neuron models for both control and HFHI conditions that can be used to predict the effects of pharmacological interventions in TBI models.\""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267742",
+ "other_concept": {
+ "attr_id": 306,
+ "value": "Traumatic brain injury"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "dpc53@georgetown.edu"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Daniel Patrick Chapman"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ },
+ {
+ "object_id": 228598,
+ "object_name": "Mouse"
+ }
+ ]
+ },
+ "ver_date": "2023-06-27T01:12:04.62",
+ "ver_number": 4
+ },
+ "267754": {
+ "citation": {
+ "attr_id": 391,
+ "value": "Sun, Z., Crompton, D., Lankarany, M., & Skinner, F. K. (2023). Reduced oriens-lacunosum/moleculare cell model identifies biophysical current balances for in vivo theta frequency spiking resonance. Frontiers in Neural Circuits, 17, 1076761\u20131076761. https://doi.org/10.3389/fncir.2023.1076761"
+ },
+ "class_id": 19,
+ "created": "2023-06-07T13:02:58.43",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 250,
+ "object_name": "I M"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 247,
+ "object_name": "I A"
+ }
+ ]
+ },
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267754,
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 243515,
+ "object_name": "Conductances estimation"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267767,
+ "object_name": "Sun Z, Crompton D, Lankarany M, Skinner FK (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Hippocampus CA1 OLM cell multicompartment conductance-based model (Sun et al. 2023)",
+ "neurons": {
+ "attr_id": 414,
+ "value": [
+ {
+ "object_id": 190560,
+ "object_name": "Hippocampus CA1 stratum oriens lacunosum-moleculare interneuron "
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Referred to as FULL in the reference paper. Is a multicompartment conductance-based model, with simplified calcium buffering and diffusion compared to the previous iteration."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267754",
+ "other_currents": {
+ "attr_id": 303,
+ "value": "ICaT, ICaL, nonspecific passive leak,"
+ },
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Zhenyang Sun, Frances K. Skinner"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "zhenyang.sun@mail.utoronto.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Zhenyang Sun"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-06-11T10:48:39.547",
+ "ver_number": 2
+ },
+ "267768": {
+ "class_id": 19,
+ "created": "2023-06-19T15:46:22.927",
+ "gitrepo": false,
+ "has_modelview": {
+ "attr_id": 502,
+ "value": false
+ },
+ "hide_autolaunch_button": {
+ "attr_id": 582,
+ "value": false
+ },
+ "id": 267768,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 168415,
+ "object_name": "Zhang, Tianhe [tz5@duke.edu]"
+ },
+ {
+ "object_id": 2015408,
+ "object_name": "Abdollahi, Nooshin [nooshin.abdollahi at mail.utoronto.ca]"
+ },
+ {
+ "object_id": 263070,
+ "object_name": "Medlock, Laura [laura.medlock at mail.utoronto.ca]"
+ }
+ ]
+ },
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ },
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Role of synchrony in sensation and the basis for paresthesia-free spinal cord stimulation",
+ "notes": {
+ "attr_id": 24,
+ "value": "We showed that DC axons are activated synchronously during c-SCS (50 Hz) and asynchronously during kf-SCS. Through experiments and computational simulations, we explained the basis for and consequences of desynchronization, showing that asynchronous spikes are sufficient to mediate pain relief whereas synchronous spikes are necessary for paresthesia."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/267768",
+ "other_implementer": {
+ "attr_id": 308,
+ "value": "Tianhe.Zhang@bsci.com, nooshin.abdollahi@mail.utoronto.ca, laura.medlock at mail.utoronto.ca"
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "nooshin.abdollahi@mail.utoronto.ca"
+ },
+ "public_submitter_name": {
+ "attr_id": 621,
+ "value": "Nooshin Abdollahi"
+ },
+ "ver_date": "2023-10-19T04:42:13.059145",
+ "ver_number": 17
+ },
+ "2001735": {
+ "_citation_text": "Mousa, M. H., & Elbasiouny, S. M. (2021). Estimating the effects of slicing on the electrophysiological properties of spinal motoneurons under normal and disease conditions. Journal of Neurophysiology, 125(4), 1450-1467.",
+ "_implementers_text": "Mohamed H. Mousa",
+ "class_id": 19,
+ "created": "2023-06-15T19:11:48.660506+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "Effects of slicing on the cellular properties measurements",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2001735,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 267719,
+ "object_name": "Mohamed H Mousa"
+ }
+ ]
+ },
+ "license": "MIT",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3639,
+ "object_name": "Active Dendrites"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ },
+ {
+ "object_id": 186770,
+ "object_name": "Motor control"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": [
+ {
+ "object_id": 2001804,
+ "object_name": "Mousa MH, Elbasiouny SM (2021)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Estimating the effects of slicing on the electrophysiological properties of spinal motoneurons under normal and disease conditions (Mousa and Elbasiouny 2021)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 276,
+ "object_name": "Spinal cord lumbar motor neuron alpha ACh cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Although slice recordings from motoneurons are being widely used, the effects of slicing on the measured motoneuron electrical properties under normal and disease conditions have not been assessed. Using high-fidelity cell models of neonatal WT and SOD cells, we examined the effects of slice thickness, soma position within the slice, and slice orientation. Our results offer information that enhances the rigor of MN electrophysiological data measured from the slice preparation under normal and disease conditions."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2001735",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "mohamed.mousa@wright.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115954,
+ "object_name": "Spinal motoneuron"
+ }
+ ]
+ },
+ "ver_date": "2023-06-15T19:11:48.660506+00:00",
+ "ver_number": 1
+ },
+ "2014814": {
+ "_citation_text": "Fietkiewicz, C., Corrales Marco, D., Chiel, H. J. and Thomas, P. J. (2023). Tutorial: Using NEURON for Neuromechanical Simulations. Frontiers in Computational Neuroscience 17: 1143323.",
+ "_implementers_text": "C Fietkiewicz, RA McDougal",
+ "class_id": 19,
+ "created": "2023-06-27T14:48:27.465876+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014814,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 189948,
+ "object_name": "Fietkiewicz, Chris"
+ },
+ {
+ "object_id": 146951,
+ "object_name": "McDougal, Robert [robert.mcdougal at yale.edu]"
+ }
+ ]
+ },
+ "license": "MIT",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 98012,
+ "object_name": "Calcium dynamics"
+ },
+ {
+ "object_id": 49304,
+ "object_name": "Methods"
+ },
+ {
+ "object_id": 232102,
+ "object_name": "Respiratory control"
+ },
+ {
+ "object_id": 3642,
+ "object_name": "Tutorial/Teaching"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267778,
+ "object_name": "Fietkiewicz C, McDougal RA, Marco DC, Chiel HJ, Thomas PJ (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 111952,
+ "object_name": "Neural mass"
+ },
+ {
+ "object_id": 22013,
+ "object_name": "Neuromuscular Junction"
+ },
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Tutorial: Using NEURON for Neuromechanical Simulations (Fietkiewicz et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 232103,
+ "object_name": "PreBotzinger complex neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Multiple models demonstrate concepts for neuromechanical simulations using pointers. Includes graphical interfaces that can be used to learn and verify pointer syntax."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014814",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "fietkiewicz@hws.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115956,
+ "object_name": "Aplysia"
+ }
+ ]
+ },
+ "ver_date": "2023-06-27T14:48:27.465876+00:00",
+ "ver_number": 1
+ },
+ "2014816": {
+ "_citation_text": "Vitale P, Librizzi F, Vaiana AC, Capuana E, Pezzoli M, Shi Y, Romani A, Migliore M and\r\nMigliore R (2023) Different responses of mice and rats hippocampus CA1 pyramidal neurons\r\nto in vitro and in vivo-like inputs. Front. Cell. Neurosci. 17:1281932. doi: 10.3389/fncel.2023.1281932",
+ "_implementers_text": "Paola Vitale, Rosanna Migliore, Fabio Librizzi",
+ "class_id": 19,
+ "created": "2023-06-30T13:45:21.959562+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 255,
+ "object_name": "I CAN"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ },
+ {
+ "object_id": 2405,
+ "object_name": "I Potassium"
+ },
+ {
+ "object_id": 2395,
+ "object_name": "I Sodium"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 143445,
+ "object_name": "I_KD"
+ }
+ ]
+ },
+ "expmotivation": "The fundamental role of any neuron within a network is to transform complex spatiotemporal synaptic input patterns into individual output spikes. These spikes, in turn, act as inputs for other neurons in the network. Neurons must execute this function across a diverse range of physiological conditions, often based on species-specific traits. Therefore, it is crucial to determine the extent to which findings can be extrapolated between species and, ultimately, to humans. In this study, we employed a multidisciplinary approach to pinpoint the factors accounting for the observed electrophysiological differences between mice and rats, the two species most used in experimental and computational research. After analyzing the morphological properties of their hippocampal CA1 pyramidal cells, we conducted a statistical comparison of rat and mouse electrophysiological\r\nfeatures in response to somatic current injections. This analysis aimed to uncover the parameters underlying these distinctions. Using a well-established computational workflow, we created ten distinct single-cell computational models of mouse CA1 pyramidal neurons, ready to be used in a full-scale hippocampal circuit. By comparing their responses to a variety of somatic and\r\nsynaptic inputs with those of rat models, we generated experimentally testable hypotheses regarding species-specific differences in ion channel distribution, kinetics, and the electrophysiological mechanisms underlying their distinct responses to synaptic inputs during the behaviorally relevant Gamma and Sharp-Wave rhythms.",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014816,
+ "license": "other",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ },
+ {
+ "object_id": 143636,
+ "object_name": "Conductance distributions"
+ },
+ {
+ "object_id": 243515,
+ "object_name": "Conductances estimation"
+ },
+ {
+ "object_id": 3641,
+ "object_name": "Detailed Neuronal Models"
+ },
+ {
+ "object_id": 267000,
+ "object_name": "Excitability"
+ },
+ {
+ "object_id": 3631,
+ "object_name": "Ion Channel Kinetics"
+ },
+ {
+ "object_id": 64174,
+ "object_name": "Synaptic Integration"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Different responses of mice and rats hippocampus CA1 pyramidal neurons to in vitro and in vivo-like inputs (vitale et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": ""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014816",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "michele.migliore@cnr.it"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-06-30T13:45:21.959562+00:00",
+ "ver_number": 1
+ },
+ "2014817": {
+ "_citation_text": "Bueno-Orovio A, Cherry EM, Fenton FH. Minimal model for human ventricular action potentials in tissue. J Theor Biol 2008;253(3):544-560.",
+ "_implementers_text": "Dr. Shou-Hei Tseng, Dr. Edmund C. So, and Dr. Sheng-Nan Wu",
+ "class_id": 19,
+ "created": "2023-07-03T07:40:14.205442+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "To better understand the electrical behaivor of human ventricular action potentials",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014817,
+ "license": "other",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3649,
+ "object_name": "Action Potentials"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 2014820,
+ "object_name": "Bueno-Orovio A, Cherry EM, Fenton FH. (2008)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Minimal model for human ventricular action potentials (Bueno-Orovio et al 2008)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Modeling the dynamics of wave propagation in human ventricular tissue and studying wave stability require models that reproduce realistic characteristics in tissue. We present a minimal ventricular (MV) human model that is designed to reproduce important tissue-level characteristics of epicardial, endocardial and midmyocardial cells, including action potential (AP) amplitudes and morphologies, upstroke velocities, steady-state action potential duration (APD) and conduction velocity (CV) restitution curves, minimum APD, and minimum diastolic interval. The model is then compared with three previously published human ventricular cell models, the Priebe and Beuckelmann (PB), the Ten Tusscher-Noble-Noble-Panfilov (TNNP), and the Iyer-Mazhari-Winslow (IMW). For the first time, the stability of reentrant waves for all four models is analyzed, and quantitative comparisons are made among the models in single cells and in tissue. The PB, TNNP, and IMW models exhibit quantitative differences in APD and CV rate adaptation, as well as completely different reentrant wave dynamics of quasi-breakup, stability, and breakup, respectively. All the models have dominant frequencies comparable to clinical values except for the IMW model, which has a large range of frequencies extending beyond the clinical range for both ventricular tachycardia (VT) and ventricular fibrillation (VF). The TNNP and IMW models possess a large degree of short-term memory and we show for the first time the existence of memory in CV restitution. The MV model also can be fitted to reproduce the dynamics of other models and is computationally more efficient: the times required to simulate the MV, TNNP, PB and IMW models follow the ratio 1:31:50:8084."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014817",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "071320@tool.caaumed.org.tw"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 227987,
+ "object_name": "Human"
+ }
+ ]
+ },
+ "ver_date": "2023-07-03T07:40:14.205442+00:00",
+ "ver_number": 1
+ },
+ "2014822": {
+ "_citation_text": "Justinas J Dainauskas, Paola Vitale, Sebastien Moreno, Helene Marie, Michele Migliore and Ausra Saudargiene. Altered synaptic plasticity at hippocampal CA1\u2013CA3 synapses in Alzheimer's disease: integration of amyloid precursor protein intracellular domain and amyloid beta effects into computational models. Frontiers in Computational Neuroscience 2023 doi.org/10.3389/fncom.2023.1305169",
+ "_implementers_text": "Justinas Dainauskas",
+ "class_id": 19,
+ "created": "2023-07-17T09:39:28.624325+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "Accumulating experimental evidence suggests that AICD and amyloid beta play a role in modifying hippocampus function in the early stages of the disease. AICD has a strong impact on synapse function (Pousinha et al., 2017) and on intrinsic excitability (Pousinha et al., 2019). Increased levels of AICD enhance GluN2B-NMDAR contribution, overactivate SK channels, and strongly perturb long-term potentiation (LTP), but spare long-term depression (LTD) in CA1 pyramidal neurons. Partial antagonism of GluN2B-NMDAR rescues LTP in early AD. Oligomeric forms of amyloid beta prevented induction of LTP in hippocampal cultured neurons (Opazo et al., 2018). CaMKII inhibitors KN93, tatCN21, and specific GluN2B-NMDAR antagonist ifenprodil completely rescued A\u03b2-induced inhibition of LTP by preventing CaMKII overactivation and dendritic spine loss (Opazo et al., 2018). \r\n\r\nPousinha, P. A., Mouska, X., Raymond, E. F., Gwizdek, C., Dhib, G., Poupon, G., et al. (2017). Physiological and pathophysiological control of synaptic GluN2B-NMDA receptors by the C-terminal domain of amyloid precursor protein. eLife 6:e25659. doi: 10.7554/eLife.25659\r\n\r\nPousinha, P. A., Mouska, X., Bianchi, D., Temido-Ferreira, M., Raj ao-Saraiva, J., Gomes, R., et al. (2019). The amyloid precursor protein C-terminal domain alters CA1 neuron firing, modifying hippocampus oscillations and impairing spatial memory encoding. Cell Rep. 29, 317\u2013331.e5. doi: 10.1016/j.celrep.2019.08.103\r\n\r\nOpazo, P., Viana da Silva, S., Carta, M., Breillat, C., Coultrap, S. J., Grillo-Bosch, D., et al. (2018). CaMKII metaplasticity drives A\u03b2 oligomer-mediated synaptotoxicity. Cell Rep. 23, 3137\u20133145.",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014822,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 2015568,
+ "object_name": "Dainauskas, Justinas J"
+ }
+ ]
+ },
+ "license": "other",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ },
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "Hippocampal synaptic plasticity in Alzheimer's disease (Dainauskas et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 258,
+ "object_name": "Hippocampus CA1 pyramidal GLU cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This model analyses altered hippocampal synaptic plasticity and its rescue under the Alzheimer's disease (AD) conditions, when the concentrations of AD-related peptides, such as the amyloid precursor protein intracellular domain (AICD) and amyloid beta (A\u03b2), are increased. The phenomenological NMDA receptor-based voltage-dependent model is used to model synaptic modifications at the CA3-CA1 synapses onto the multicompartmental CA1 pyramidal neuron. The modeling results show that partial blockade of Glu2NB-NMDAR-gated channel restores intrinsic excitability of a CA1 pyramidal neuron and rescues long-term potentiation in AICD and A\u03b2 conditions. The model is implemented in Python and NEURON."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014822",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ausra.saudargiene@lsmu.lt"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115946,
+ "object_name": "Hippocampus"
+ }
+ ]
+ },
+ "ver_date": "2023-12-08T17:53:02.385486",
+ "ver_number": 2
+ },
+ "2014825": {
+ "_citation_text": "Doya and Blackwell, PLoS Computational Biology, 2023 In Press",
+ "_implementers_text": "",
+ "class_id": 19,
+ "created": "2023-07-25T14:42:15.499288+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014825,
+ "license": "GPL",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 83535,
+ "object_name": "Learning"
+ },
+ {
+ "object_id": 83536,
+ "object_name": "Reinforcement Learning"
+ },
+ {
+ "object_id": 3643,
+ "object_name": "Synaptic Plasticity"
+ }
+ ]
+ },
+ "model_paper": {
+ "attr_id": 155,
+ "value": [
+ {
+ "object_id": 267785,
+ "object_name": "Blackwell K, Doya K (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": []
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "TD2Q reinforcement learning (Blackwell and Doya, in press)",
+ "neurons": {
+ "attr_id": 25,
+ "value": []
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "TD2Q is a Q learning type of reinforcement learning algorithm that corresponds to the basal ganglia with two Q matrices, one representing direct pathway neurons (G) and another representing indirect pathway neurons (N). Unlike previous two-Q architectures, a novel and critical aspect of TD2Q is to update the G and N matrices utilizing the temporal difference reward prediction error. A best action is selected for N and G using a softmax with a reward-dependent adaptive exploration parameter, and then differences are resolved using a second selection step applied to the two action probabilities. The model is tested on a range of multi-step tasks including extinction, renewal, discrimination; switching reward probability learning; and sequence learning. Simulations show that TD2Q produces behaviors similar to rodents in choice and sequence learning tasks, and that use of the temporal difference reward prediction error is required to learn multi-step tasks. Performance in the sequence learning task is dramatically improved with two matrices. "
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "kim-blackwell@uiowa.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115952,
+ "object_name": "Basal ganglia"
+ },
+ {
+ "object_id": 138633,
+ "object_name": "Striatum"
+ }
+ ]
+ },
+ "ver_date": "2023-07-25T14:42:15.499288+00:00",
+ "ver_number": 1
+ },
+ "2014830": {
+ "_citation_text": "S\u00e6tra MJ, Ellingsrud AJ, Rognes ME (2023) Neural activity induces strongly coupled electro-chemo-mechanical interactions and fluid flow in astrocyte networks and extracellular space\u2014A computational study. PLoS Comput Biol 19(7): e1010996. https://doi.org/10.1371/journal.pcbi.1010996",
+ "_implementers_text": "",
+ "class_id": 19,
+ "created": "2023-08-28T15:20:34.096895+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 167500,
+ "object_name": "Kir"
+ },
+ {
+ "object_id": 120693,
+ "object_name": "Na/K pump"
+ },
+ {
+ "object_id": 139267,
+ "object_name": "I Cl, leak"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ }
+ ]
+ },
+ "expmotivation": "",
+ "id": 2014830,
+ "license": "MIT",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 144383,
+ "object_name": "Cellular volume dynamics"
+ },
+ {
+ "object_id": 151948,
+ "object_name": "Potassium buffering"
+ },
+ {
+ "object_id": 267119,
+ "object_name": "Electrodiffusion"
+ },
+ {
+ "object_id": 144409,
+ "object_name": "Homeostasis"
+ },
+ {
+ "object_id": 225300,
+ "object_name": "Electrical-chemical"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": [
+ {
+ "object_id": 2015400,
+ "object_name": "S\u00e6tra MJ, Ellingsrud AJ, Rognes ME (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 120799,
+ "object_name": "Glia"
+ },
+ {
+ "object_id": 183720,
+ "object_name": "Extracellular"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 114646,
+ "object_name": "Python"
+ }
+ ]
+ },
+ "name": "ffian: Fluid Flow In Astrocyte Networks (S\u00e6tra et al. 2023)",
+ "notes": {
+ "attr_id": 24,
+ "value": "ffian is an implementation of the KNP continuity equations for a one-dimensional system containing two compartments: one representing an astrocyte network (ICS) and one representing the extracellular space (ECS). ffian.The model takes both transmembrane- and compartmental fluid flow into account and predicts the evolution in time and distribution in space of the volume fractions, ion concentrations (Na+, K+, Cl-), electrical potentials, and hydrostatic pressures in the ICS and ECS.\r\n\r\nExample simulations and installation guidelines can be found here: https://github.com/martejulie/fluid-flow-in-astrocyte-networks"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014830",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "martejulie@simula.no"
+ },
+ "ver_date": "2023-08-28T15:20:34.096895+00:00",
+ "ver_number": 1
+ },
+ "2014833": {
+ "_citation_text": "",
+ "_implementers_text": "",
+ "class_id": 19,
+ "created": "2023-09-06T09:55:34.348355+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014833,
+ "license": "other",
+ "model_concept": {
+ "attr_id": 113,
+ "value": []
+ },
+ "model_paper": {
+ "value": [
+ {
+ "object_id": 2015677,
+ "object_name": "Rose AC, Alashwal H, Moustafa AA, Weidemann G (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 83551,
+ "object_name": "Connectionist Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "A neural network model of mathematics anxiety: The role of attention (Rose et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": []
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Anxiety about performing numerical calculations is becoming an increasingly important issue. Termed mathematics anxiety, this condition negatively impacts performance in numerical tasks which can affect education outcomes and future employment. The disruption account proposes poor performance is due to anxiety disrupting limited attentional and inhibitory resources leaving fewer cognitive resources for the current task. This study provides the first neural network model of math anxiety. The model simulates performance in two commonly-used tasks related to math anxiety: the numerical Stroop and symbolic number comparison. Different model modifications were used to simulate high and low math-anxious conditions by modifying attentional processes and learning; these model modifications address different theories of math anxiety. The model simulations suggest that math anxiety is associated with reduced attention to numerical stimuli. These results are consistent with the disruption account and the attentional control theory where anxiety decreases goal-directed attention and increases stimulus-driven attention. "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014833",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "a.rose@westernsydney.edu.au"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": []
+ },
+ "ver_date": "2023-09-06T09:55:34.348355+00:00",
+ "ver_number": 1
+ },
+ "2014996": {
+ "_citation_text": "John SR, Barnett WH, Abdala AP, Zoccal DB, Rubin JE & Molkov YI. (2023). Exploring the role of K\u04e7lliker-Fuse nucleus in breathing variability via mathematical modeling. Journal of Physiology",
+ "_implementers_text": "S. R. John, W. H. Barnett, A. P. Abdala, D. B. Zoccal, J. E. Rubin, and Y. I. Molkov",
+ "class_id": 19,
+ "created": "2023-09-17T01:10:04.499935+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 241,
+ "object_name": "I Na,p"
+ }
+ ]
+ },
+ "expmotivation": "",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014996,
+ "license": "MIT",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 232102,
+ "object_name": "Respiratory control"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ },
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Exploring the role of K\u04e7lliker-Fuse nucleus in breathing variability via mathematical modeling (John et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 232103,
+ "object_name": "PreBotzinger complex neuron"
+ },
+ {
+ "object_id": 125611,
+ "object_name": "Respiratory column neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 239,
+ "object_name": "Serotonin"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We explore the dynamics of K\u04e7lliker-Fuse nucleus (KF), which is involved in regulating normal breathing, controlling active abdominal expiration during increased ventilation, and is also known to play a role in the development of breathing abnormalities associated with Rett syndrome (RTT). We present reduced computational models of the respiratory core neurons along with the KF unit that simulate both normal and RTT-like breathing patterns. These models provide a general framework for understanding KF dynamics and potential network interactions."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014996",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "srj35@pitt.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 198,
+ "object_name": "5-HT1"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 183076,
+ "object_name": "Brainstem"
+ }
+ ]
+ },
+ "ver_date": "2023-09-17T01:10:04.499935+00:00",
+ "ver_number": 1
+ },
+ "2014998": {
+ "_citation_text": "",
+ "_implementers_text": "Selena Singh, Abraham Nunes",
+ "class_id": 19,
+ "created": "2023-09-27T19:29:09.970268+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014998,
+ "license": "MIT",
+ "model_concept": {
+ "attr_id": 113,
+ "value": []
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Frequency-dependent pattern separation in a biophysical model of the dentate gyrus, (Singh et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 207692,
+ "object_name": "Dentate gyrus HIPP cell"
+ },
+ {
+ "object_id": 52417,
+ "object_name": "Dentate gyrus basket cell"
+ },
+ {
+ "object_id": 257,
+ "object_name": "Dentate gyrus granule GLU cell"
+ },
+ {
+ "object_id": 52416,
+ "object_name": "Dentate gyrus mossy cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Background and Objectives: Mnemonic discrimination (MD) may be dependent on oscillatory perforant path input frequencies to the hippocampus in a \u201cU\u201d shaped fashion, where some studies show that slow and fast input frequencies support MD, while other studies show that intermediate frequencies disrupt MD. We hypothesise that pattern separation (PS) underlies frequency-dependent MD performance. We aim to study, in a computational model of the hippocampal dentate gyrus (DG), the network and cellular mechanisms governing this putative \u201cU\u201d shaped PS relationship. \r\nMethods: We implemented a biophysical model of the DG that produces the hypothesised \u201cU\u201d-shaped input frequency-PS relationship, and its associated oscillatory electrophysiological signatures. We subsequently evaluated the network\u2019s PS ability using an adapted spatiotemporal task. We undertook systematic lesion studies to identify the network-level mechanisms driving the \u201cU\u201d shaped input frequency-PS relationship. A minimal circuit of a single granule cell (GC) stimulated with oscillatory inputs was also used to study potential cellular-level mechanisms.\r\nResults: Lesioning synapses onto GCs did not impact the \u201cU\u201d-shaped input frequency-PS relationship. Furthermore, GC inhibition limits PS performance for fast frequency inputs, while enhancing PS for slow frequency inputs. GC interspike interval was found to be input frequency dependent in a \u201cU\u201d-shaped fashion, paralleling frequency-dependent PS observed at the network level. Additionally, GCs showed an attenuated firing response for fast frequency inputs.\r\nConclusions: Independent of network-level inhibition, GCs may intrinsically be capable of producing a \u201cU\u201d shaped input frequency-PS relationship. GCs may preferentially decorrelate slow and fast inputs via spike timing reorganisation and high frequency filtering. "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014998",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "singhs11@mcmaster.ca"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115947,
+ "object_name": "Dentate gyrus"
+ }
+ ]
+ },
+ "ver_date": "2023-09-27T19:29:09.970268+00:00",
+ "ver_number": 1
+ },
+ "2014999": {
+ "_citation_text": "PMID: 37528537 \r\nPMCID: PMC10528740 ",
+ "_implementers_text": "Pei-Chi Yang, Mao-Tsuen Jeng, Adam Rose, Timothy J Lewis, Colleen Clancy",
+ "class_id": 19,
+ "created": "2023-09-29T19:29:05.102345+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "A multi-layered model representation of the autonomic nervous system that includes sympathetic and parasympathetic branches, each with sparse random intralayer connectivity, synaptic dynamics and conductance based integrate-and-fire neurons, generates firing patterns in agreement with experiment. ",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2014999,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 2015396,
+ "object_name": "Yang, Pei-Chi"
+ },
+ {
+ "object_id": 2015397,
+ "object_name": "Jeng, Mao-Tsuen"
+ },
+ {
+ "object_id": 2015398,
+ "object_name": "Rose, Adam"
+ },
+ {
+ "object_id": 2015399,
+ "object_name": "Lewis, Timothy J"
+ },
+ {
+ "object_id": 87283,
+ "object_name": "Clancy, Colleen E [ceclancy at ucdavis.edu]"
+ }
+ ]
+ },
+ "license": "MIT",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 128875,
+ "object_name": "Development"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": [
+ {
+ "object_id": 2015395,
+ "object_name": "Yang PC et al. (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3539,
+ "object_name": "Synapse"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 3529,
+ "object_name": "C or C++ program"
+ }
+ ]
+ },
+ "name": "A multiscale predictive digital twin for neurocardiac modulation (Yang et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ },
+ {
+ "object_id": 88205,
+ "object_name": "Cardiac ventricular cell"
+ },
+ {
+ "object_id": 52423,
+ "object_name": "Heart cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Cardiac function is tightly regulated by the autonomic nervous system (ANS). Activation of the sympathetic nervous system increases cardiac output by increasing heart rate and stroke volume, while parasympathetic nerve stimulation instantly slows heart rate. Importantly, imbalance in autonomic control of the heart has been implicated in the development of arrhythmias and heart failure. Understanding of the mechanisms and effects of autonomic stimulation is a major challenge because synapses in different regions of the heart result in multiple changes to heart function. For example, nerve synapses on the sinoatrial node (SAN) impact pacemaking, while synapses on contractile cells alter contraction and arrhythmia vulnerability. Here, we present a multiscale neurocardiac modelling and simulator tool that predicts the effect of efferent stimulation of the sympathetic and parasympathetic branches of the ANS on the cardiac SAN and ventricular myocardium. The model includes a layered representation of the ANS and reproduces firing properties measured experimentally. Model parameters are derived from experiments and atomistic simulations. The model is a first prototype of a digital twin that is applied to make predictions across all system scales, from subcellular signalling to pacemaker frequency to tissue level responses. We predict conditions under which autonomic imbalance induces proarrhythmia and can be modified to prevent or inhibit arrhythmia. In summary, the multiscale model constitutes a predictive digital twin framework to test and guide high-throughput prediction of novel neuromodulatory therapy. KEY POINTS: A multi-layered model representation of the autonomic nervous system that includes sympathetic and parasympathetic branches, each with sparse random intralayer connectivity, synaptic dynamics and conductance based integrate-and-fire neurons generates firing patterns in close agreement with experiment. A key feature of the neurocardiac computational model is the connection between the autonomic nervous system and both pacemaker and contractile cells, where modification to pacemaker frequency drives initiation of electrical signals in the contractile cells. We utilized atomic-scale molecular dynamics simulations to predict the association and dissociation rates of noradrenaline with the \u03b2-adrenergic receptor. Multiscale predictions demonstrate how autonomic imbalance may increase proclivity to arrhythmias or be used to terminate arrhythmias. The model serves as a first step towards a digital twin for predicting neuromodulation to prevent or reduce disease. "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2014999",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "pcyang@ucdavis.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 215,
+ "object_name": "Adrenergic"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": []
+ },
+ "ver_date": "2023-10-19T03:13:01.329329",
+ "ver_number": 6
+ },
+ "2015412": {
+ "_citation_text": "Maksymchuk, Natalia, Akira Sakurai, Daniel N. Cox, and Gennady S. Cymbalyuk. 2023. \"Cold-Temperature Coding with Bursting and Spiking Based on TRP Channel Dynamics in Drosophila Larva Sensory Neurons\" International Journal of Molecular Sciences 24, no. 19: 14638. https://doi.org/10.3390/ijms241914638 ",
+ "_implementers_text": "Natalia Maksymchuk",
+ "class_id": 19,
+ "created": "2023-10-21T22:59:24.437151+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 137264,
+ "object_name": "I trp"
+ }
+ ]
+ },
+ "expmotivation": "How CIII neurons code temperature remains unclear. We combined computational and electrophysiological methods to address this question. In electrophysiological experiments, we identified two basic cold-evoked patterns of CIII neurons: bursting and spiking. In response to a fast temperature drop to noxious cold, CIII neurons distinctly mark different phases of the stimulus. Bursts frequently occurred along with the fast temperature drop, forming a peak in the spiking rate and likely coding the high rate of the temperature change. Single spikes dominated at a steady temperature and exhibited frequency adaptation following the peak. When temperature decreased slowly to the same value, mainly spiking activity was observed, with bursts occurring sporadically throughout the stimulation. The spike and the burst frequencies positively correlated with the rate of the temperature drop. ",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2015412,
+ "license": "GPL",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3630,
+ "object_name": "Bursting"
+ },
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ },
+ {
+ "object_id": 240376,
+ "object_name": "Temporal Coding"
+ },
+ {
+ "object_id": 3633,
+ "object_name": "Temporal Pattern Generation"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Cold-Temperature Coding with Bursting and Spiking Based on TRP Channel Dynamics in Drosophila Larva Sensory Neurons (Maksymchuk, N., A. Sakurai, D.N. Cox, and G.S. Cymbalyuk, 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": []
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Temperature sensation involves thermosensitive TRP (thermoTRP) and non-TRP channels. Drosophila larval Class III (CIII) neurons serve as the primary cold nociceptors and express a suite of thermoTRP channels implicated in noxious cold sensation. Using this computational model, we explain the distinction in the occurrence of the two CIII cold-evoked patterns bursting and spiking using the dynamics of a thermoTRP current. A two-parameter activity map (Temperature, constant TRP current conductance) marks parameters that support silent, spiking, and bursting regimes. Projecting on the map the instantaneous TRP conductance, governed by activation and inactivation processes, reflects temperature coding responses as a path across silent, spiking, or bursting domains on the map. The map sheds light on how various parameter sets for TRP kinetics represent various types of cold-evoked responses. Our results indicate that bursting detects the high rate of temperature change, whereas tonic spiking could reflect both the rate of change and magnitude of steady cold temperature."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2015412",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gcymbalyuk@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2023-10-21T22:59:24.437151+00:00",
+ "ver_number": 1
+ },
+ "2015413": {
+ "_citation_text": "Maksymchuk, N., Sakurai, A., Cox, D. N., & Cymbalyuk, G. (2022). Transient and Steady-State Properties of Drosophila Sensory Neurons Coding Noxious Cold Temperature. Frontiers in cellular neuroscience, 16, 831803. https://doi.org/10.3389/fncel.2022.831803",
+ "_implementers_text": "Natalia Maksymchuk",
+ "class_id": 19,
+ "created": "2023-10-22T17:15:32.219952+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 137264,
+ "object_name": "I trp"
+ }
+ ]
+ },
+ "expmotivation": "In response to a fast temperature change (-2 to -6\u00b0C/s) from room temperature to noxious cold, the Drosophila larva class III (CIII) neurons exhibited a pronounced peak of a spiking rate with subsequent relaxation to a steady-state spiking. The magnitude of the peak was higher for a higher rate of temperature decrease, while slow temperature decrease (-0.1\u00b0C/s) evoked no distinct peak of the spiking rate. The rate of the steady-state spiking depended on the magnitude of the final temperature and was higher at lower temperatures. For each neuron, we characterized this dependence by estimating the temperature of the half activation of the spiking rate by curve fitting neuron's spiking rate responses to a Boltzmann function. We found that neurons had a temperature of the half activation distributed over a wide temperature range. We also found that CIII neurons responded to decrease rather than increase in temperature. There was a significant difference in spiking activity between fast and slow returns from noxious cold to room temperature: The CIII neurons usually stopped activity abruptly in the case of the fast return and continued spiking for some time in the case of the slow return.",
+ "id": 2015413,
+ "license": "GPL",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 47316,
+ "object_name": "Invertebrate"
+ },
+ {
+ "object_id": 96767,
+ "object_name": "Nociception"
+ },
+ {
+ "object_id": 182362,
+ "object_name": "Sensory coding"
+ },
+ {
+ "object_id": 152639,
+ "object_name": "Temperature"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Transient and Steady-State Properties of Drosophila Sensory Neurons Coding Noxious Cold Temperature; (Maksymchuk, N., Sakurai, A., Cox, D. N., & Cymbalyuk, G. 2022) ",
+ "notes": {
+ "attr_id": 24,
+ "value": "Coding noxious cold signals, such as the magnitude and rate of temperature change, play essential roles in the survival of organisms. We combined electrophysiological and computational neuroscience methods to investigate the neural dynamics of Drosophila larva cold-sensing Class III (CIII) neurons.\r\nWe developed a biophysical model of CIII neurons using a generalized description of transient receptor potential (TRP) current kinetics with temperature-dependent activation and Ca2+-dependent inactivation. This model recapitulated the key features of the spiking rate responses found in experiments and suggested mechanisms explaining the transient and steady-state activity of the CIII neurons at different cold temperatures and rates of their decrease and increase. We conclude that CIII neurons encode at least three types of cold sensory information: the rate of temperature decrease by a peak of the firing rate, the magnitude of cold temperature by the rate of steady spiking activity, and direction of temperature change by spiking activity augmentation or suppression corresponding to temperature decrease and increase, respectively. "
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2015413",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "gcymbalyuk@gmail.com"
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 206363,
+ "object_name": "Drosophila"
+ }
+ ]
+ },
+ "ver_date": "2023-10-22T17:15:32.219952+00:00",
+ "ver_number": 1
+ },
+ "2015414": {
+ "_citation_text": "Katie N. Clements, Sungwoo Ahn, Choongseok Park, Faith K. Heagy, Thomas H. Miller, Miki Kassai, Fadi A. Issa (2023). Socially mediated shift in neural circuits activation regulated by synergistic neuromodulatory signaling. eNeuro (accepted). ",
+ "_implementers_text": "Ahn, Sungwoo; Park, Choongseok",
+ "class_id": 19,
+ "created": "2023-10-24T16:43:08.470034+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 253,
+ "object_name": "I K,Ca"
+ }
+ ]
+ },
+ "expmotivation": "Animals exhibit context-dependent behavioral decisions that are mediated by specific motor circuits. In social species these decisions are often influenced by social status. Although social status-dependent neural plasticity of motor circuits has been investigated in vertebrates, little is known of how cellular plasticity translates into differences in motor activity. Here, we used zebrafish (Danio rerio) as a model organism to examine how social dominance influences the activation of swimming and the Mauthner mediated startle escape behaviors. ",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2015414,
+ "license": "other",
+ "model_concept": {
+ "attr_id": 113,
+ "value": []
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3537,
+ "object_name": "Neuron or other electrically excitable cell"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 33977,
+ "object_name": "XPPAUT"
+ }
+ ]
+ },
+ "name": "Zebrafish Mauthner escape circuit with dopamine, gaba, and glycine (Clements et al., accepted)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 150222,
+ "object_name": "Abstract Morris-Lecar neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 224,
+ "object_name": "Dopamine"
+ },
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 214,
+ "object_name": "Glycine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "We used zebrafish (Danio rerio) as a model organism to examine how social dominance influences the activation of swimming and the Mauthner mediated startle escape behaviors. We show that the status-dependent shift in behavior patterns whereby dominants increase swimming and reduce sensitivity of startle escape while subordinates reduce their swimming and increase startle sensitivity is regulated by the synergistic interactions of dopaminergic, glycinergic, and GABAergic inputs to shift the balance of activation of the underlying motor circuits. Neurocomputational modeling of the empirical results shows that drd1b functions as the molecular regulator to facilitate the shift between excitatory and inhibitory pathways. The results illustrate how reconfiguration in network dynamics serves as an adaptive strategy to cope with changes in the social environment and are likely conserved and applicable to other social species. \r\n\r\n"
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2015414",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "ahns15@ecu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 196,
+ "object_name": "D1"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": []
+ },
+ "ver_date": "2023-10-24T16:43:08.470034+00:00",
+ "ver_number": 1
+ },
+ "2015420": {
+ "_citation_text": "F\u00fczesi, T., Rasiah, N.P., Rosenegger, D.G. et al. Hypothalamic CRH neurons represent physiological memory of positive and negative experience. Nat Commun 14, 8522 (2023). https://doi.org/10.1038/s41467-023-44163-5",
+ "_implementers_text": "Wilten Nicola",
+ "class_id": 19,
+ "created": "2023-11-14T17:54:34.421658+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2015420,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 146501,
+ "object_name": "Nicola, Wilten [wnicola at uwaterloo.ca]"
+ }
+ ]
+ },
+ "license": "MIT",
+ "model_concept": {
+ "attr_id": 113,
+ "value": []
+ },
+ "model_paper": {
+ "value": [
+ {
+ "object_id": 2015950,
+ "object_name": "F\u00fczesi T et al. (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 36835,
+ "object_name": "MATLAB"
+ }
+ ]
+ },
+ "name": "Hypothalamic CRH neurons represent physiological memory of positive and negative experience (F\u00fczesi et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Recalling a salient experience provokes specific behaviors and changes in the physiology or internal state. Relatively little is known about how physiological memories are encoded. Here we examined the neural substrates of physiological memory by probing CRHPVN neurons of mice, which control the endocrine response to stress. We demonstrate these cells show contextual memory following exposure to a stimulus with negative or positive valence. Specifically, a negative stimulus invokes a two-factor learning rule that favors an increase in the activity of weak cells during recall. In contrast, the contextual memory of positive valence relies on a one-factor rule to decrease the activity of all neurons. Finally, the aversive memory in CRHPVN neurons outlasts the behavioral response. These observations provide new information about how specific physiological memories of aversive and appetitive experiences are encoded and demonstrate that behavioral readouts may not accurately reflect physiological changes invoked by the memory of salient experiences."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2015420",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "wilten.nicola@ucalgary.ca"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": []
+ },
+ "region": {
+ "attr_id": 471,
+ "value": []
+ },
+ "ver_date": "2023-12-23T01:03:57.025112",
+ "ver_number": 3
+ },
+ "2015421": {
+ "_citation_text": "O'Neill KM, Anderson ED, Mukherjee S, Gandu S, McEwan SA, Omelchenko A, Rodriguez AR, Losert W, Meaney DF, Babadi B, Firestein BL. Time-dependent homeostatic mechanisms underlie Brain-Derived Neurotrophic Factor action on neural circuitry. Comms Bio, 2023.",
+ "_implementers_text": "",
+ "class_id": 19,
+ "created": "2023-11-14T18:25:07.265928+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": []
+ },
+ "expmotivation": "Plasticity and homeostatic mechanisms allow neural networks to maintain proper function while responding to physiological challenges. Despite previous work investigating morphological and synaptic effects of brain-derived neurotrophic factor (BDNF), the most prevalent growth factor in the central nervous system, how exposure to BDNF manifests at the network level remains unknown. Here we report that BDNF treatment affects rodent hippocampal network dynamics during development and recovery from glutamate-induced excitotoxicity in culture. Importantly, these effects are not obvious when traditional activity metrics are used, so we delve more deeply into network organization, functional analyses, and in silico simulations. We demonstrate that BDNF partially restores homeostasis by promoting recovery of weak and medium connections after injury. Imaging and computational analyses suggest these effects are caused by changes to inhibitory neurons and connections. Based on our in silico simulations, we find that BDNF remodels the network by indirectly strengthening weak excitatory synapses after injury. Ultimately, our findings may explain the difficulties encountered in preclinical and clinical trials with BDNF and also offer information for future trials to consider. ",
+ "gene": {
+ "attr_id": 476,
+ "value": []
+ },
+ "id": 2015421,
+ "license": "other",
+ "model_concept": {
+ "attr_id": 113,
+ "value": []
+ },
+ "model_paper": {
+ "value": []
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 267344,
+ "object_name": "Spiking neural network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 231240,
+ "object_name": "Brian 2"
+ }
+ ]
+ },
+ "name": "Time-dependent homeostatic mechanisms underlie Brain-Derived Neurotrophic Factor action on neural circuitry (O'Neill, 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 154740,
+ "object_name": "Abstract integrate-and-fire leaky neuron"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": []
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": ""
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2015421",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "anderin@seas.upenn.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 213,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": []
+ },
+ "ver_date": "2023-11-14T18:25:07.265928+00:00",
+ "ver_number": 1
+ },
+ "2015422": {
+ "_citation_text": "PMID: 37314079",
+ "_implementers_text": "AE Soplata",
+ "class_id": 19,
+ "created": "2023-11-18T16:34:41.072493+00:00",
+ "currents": {
+ "attr_id": 27,
+ "value": [
+ {
+ "object_id": 146507,
+ "object_name": "Ca pump"
+ },
+ {
+ "object_id": 116966,
+ "object_name": "I_K,Na"
+ },
+ {
+ "object_id": 251,
+ "object_name": "I h"
+ },
+ {
+ "object_id": 245,
+ "object_name": "I T low threshold"
+ },
+ {
+ "object_id": 2396,
+ "object_name": "I Calcium"
+ },
+ {
+ "object_id": 139268,
+ "object_name": "I Na, leak"
+ },
+ {
+ "object_id": 242,
+ "object_name": "I Na,t"
+ },
+ {
+ "object_id": 248,
+ "object_name": "I K"
+ },
+ {
+ "object_id": 249,
+ "object_name": "I K,leak"
+ }
+ ]
+ },
+ "expmotivation": "",
+ "id": 2015422,
+ "implemented_by": {
+ "attr_id": 299,
+ "value": [
+ {
+ "object_id": 2015567,
+ "object_name": "Soplata, Austin E"
+ }
+ ]
+ },
+ "license": "GPL",
+ "model_concept": {
+ "attr_id": 113,
+ "value": [
+ {
+ "object_id": 3543,
+ "object_name": "Activity Patterns"
+ },
+ {
+ "object_id": 3634,
+ "object_name": "Oscillations"
+ },
+ {
+ "object_id": 93420,
+ "object_name": "Sleep"
+ },
+ {
+ "object_id": 3635,
+ "object_name": "Synchronization"
+ }
+ ]
+ },
+ "model_paper": {
+ "value": [
+ {
+ "object_id": 2015566,
+ "object_name": "Soplata AE et al. (2023)"
+ }
+ ]
+ },
+ "model_type": {
+ "attr_id": 112,
+ "value": [
+ {
+ "object_id": 3536,
+ "object_name": "Realistic Network"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 112634,
+ "object_name": "Network"
+ }
+ ]
+ },
+ "name": "A biophysical model of thalamocortical network switching under propofol (Soplata et al., 2023)",
+ "neurons": {
+ "attr_id": 25,
+ "value": [
+ {
+ "object_id": 114737,
+ "object_name": "Hodgkin-Huxley neuron"
+ },
+ {
+ "object_id": 263,
+ "object_name": "Thalamus reticular nucleus GABA cell"
+ }
+ ]
+ },
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 232,
+ "object_name": "Gaba"
+ },
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ },
+ {
+ "object_id": 209,
+ "object_name": "Acetylcholine"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "This is a model of the cortex of (Benita et al., 2012), the thalamus of (Soplata et al., 2017), and simple AMPAergic thalamocortical and corticothalamic connections between them, built using the Matlab-based Dynasim simulator. We used this to investigate how slow wave and alpha oscillations interact under propofol anesthesia, including neuromodulatory changes."
+ },
+ "osbv2_gh_branch": "main",
+ "osbv2_gh_repo": "https://github.com/OpenSourceBrain/2015422",
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "austin.soplata@gmail.com"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 206,
+ "object_name": "NMDA"
+ },
+ {
+ "object_id": 202,
+ "object_name": "GabaA"
+ },
+ {
+ "object_id": 203,
+ "object_name": "GabaB"
+ },
+ {
+ "object_id": 218,
+ "object_name": "Cholinergic Receptors"
+ },
+ {
+ "object_id": 204,
+ "object_name": "Muscarinic"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115951,
+ "object_name": "Thalamus"
+ },
+ {
+ "object_id": 115945,
+ "object_name": "Neocortex"
+ }
+ ]
+ },
+ "ver_date": "2023-12-05T03:00:34.290308",
+ "ver_number": 2
+ },
+ "2015953": {
+ "_citation_text": "https://doi.org/10.7554/eLife.88321",
+ "_implementers_text": "Tim Balmer",
+ "class_id": 19,
+ "created": "2023-12-30T04:07:14.535284+00:00",
+ "expmotivation": "",
+ "id": 2015953,
+ "license": "MIT",
+ "model_paper": {
+ "value": [
+ {
+ "object_id": 2016119,
+ "object_name": "Hariani HN et al. (2023)"
+ }
+ ]
+ },
+ "modeling_application": {
+ "attr_id": 114,
+ "value": [
+ {
+ "object_id": 1882,
+ "object_name": "NEURON"
+ }
+ ]
+ },
+ "name": "Unipolar brush cell circuits extend and diversify spiking patterns (Hariani et al., 2023)",
+ "neurotransmitters": {
+ "attr_id": 28,
+ "value": [
+ {
+ "object_id": 233,
+ "object_name": "Glutamate"
+ }
+ ]
+ },
+ "notes": {
+ "attr_id": 24,
+ "value": "Sensory signals are processed by the cerebellum to coordinate movements. Unipolar brush cells (UBCs) are excitatory interneurons that project to granule cells and transform their input into prolonged increases or decreases in firing, depending on their ON or OFF UBC subtype. Further extension and diversification of the input signal could be produced by UBCs that project to one another, but whether this circuitry exists was unclear. In this work we showed that UBCs innervate one another using transgenic mice and immunohistochemistry. This NEURON model explores how these feed-forward networks of UBCs could extend the length of bursts or pauses and introduce delays\u2014transformations that may be necessary for cerebellar functions from modulation of eye movements to adaptive learning across time scales."
+ },
+ "public_submitter_email": {
+ "attr_id": 309,
+ "value": "timothy.balmer@asu.edu"
+ },
+ "receptors": {
+ "attr_id": 26,
+ "value": [
+ {
+ "object_id": 205,
+ "object_name": "AMPA"
+ },
+ {
+ "object_id": 185,
+ "object_name": "mGluR2"
+ }
+ ]
+ },
+ "region": {
+ "attr_id": 471,
+ "value": [
+ {
+ "object_id": 115953,
+ "object_name": "Cerebellum"
+ }
+ ]
+ },
+ "ver_date": "2023-12-30T04:07:14.535284+00:00",
+ "ver_number": 1
+ }
+}
\ No newline at end of file
diff --git a/libraries/client/cached_info/osb_gh.json b/libraries/client/cached_info/osb_gh.json
new file mode 100644
index 000000000..4d6781f3a
--- /dev/null
+++ b/libraries/client/cached_info/osb_gh.json
@@ -0,0 +1,213315 @@
+{
+ "https://api.github.com/repos/OpenSourceBrain/.github": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/.github/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/.github/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/.github/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/.github/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/.github.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/.github/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/.github/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/.github/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/.github/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/.github/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/.github/contributors",
+ "created_at": "2021-11-29T15:57:40Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/.github/deployments",
+ "description": null,
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/.github/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/.github/events",
+ "fork": false,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/.github/forks",
+ "full_name": "OpenSourceBrain/.github",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/.github/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/.github/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/.github/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/.github.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": true,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/.github/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/.github",
+ "id": 433106259,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/.github/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/.github/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/.github/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/.github/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/.github/labels{/name}",
+ "language": "Python",
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/.github/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/.github/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/.github/milestones{/number}",
+ "mirror_url": null,
+ "name": ".github",
+ "node_id": "R_kgDOGdCtUw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/.github/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/.github/pulls{/number}",
+ "pushed_at": "2023-09-30T13:44:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/.github/releases{/id}",
+ "size": 60,
+ "ssh_url": "git@github.com:OpenSourceBrain/.github.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/.github/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/.github/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/.github/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/.github/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/.github",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/.github/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/.github/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/.github/git/trees{/sha}",
+ "updated_at": "2021-12-14T09:39:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/.github",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/100603": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/100603/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/100603/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/100603/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/100603/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/100603.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/100603/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/100603/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/100603/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/100603/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/100603/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/100603/contributors",
+ "created_at": "2024-01-10T14:03:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/100603/deployments",
+ "description": "ERG current in repolarizing plateau potentials in dopamine neurons (Canavier et al 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/100603/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/100603/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/100603/forks",
+ "full_name": "OpenSourceBrain/100603",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/100603/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/100603/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/100603/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/100603.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/100603",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/100603/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/100603",
+ "id": 741491213,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/100603/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/100603/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/100603/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/100603/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/100603/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/100603/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/100603/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/100603/milestones{/number}",
+ "mirror_url": null,
+ "name": "100603",
+ "node_id": "R_kgDOLDJCDQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/100603/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/100603/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/100603/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/100603.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/100603/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/100603/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/100603/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/100603/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/100603",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/100603/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/100603/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/100603/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/100603",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/101629": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/101629/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/101629/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/101629/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/101629/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/101629.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/101629/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/101629/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/101629/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/101629/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/101629/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/101629/contributors",
+ "created_at": "2024-01-10T14:03:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/101629/deployments",
+ "description": "CA3 pyramidal neuron: firing properties (Hemond et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/101629/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/101629/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/101629/forks",
+ "full_name": "OpenSourceBrain/101629",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/101629/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/101629/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/101629/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/101629.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/101629",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/101629/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/101629",
+ "id": 741491231,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/101629/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/101629/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/101629/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/101629/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/101629/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/101629/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/101629/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/101629/milestones{/number}",
+ "mirror_url": null,
+ "name": "101629",
+ "node_id": "R_kgDOLDJCHw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/101629/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/101629/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/101629/releases{/id}",
+ "size": 111,
+ "ssh_url": "git@github.com:OpenSourceBrain/101629.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/101629/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/101629/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/101629/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/101629/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/101629",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/101629/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/101629/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/101629/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/101629",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/102279": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/102279/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/102279/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/102279/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/102279/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/102279.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/102279/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/102279/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/102279/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/102279/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/102279/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/102279/contributors",
+ "created_at": "2024-01-10T14:03:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/102279/deployments",
+ "description": "Leech S Cell: Modulation of Excitability by Serotonin (Burrell and Crisp 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/102279/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/102279/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/102279/forks",
+ "full_name": "OpenSourceBrain/102279",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/102279/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/102279/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/102279/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/102279.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/102279",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/102279/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/102279",
+ "id": 741491249,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/102279/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/102279/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/102279/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/102279/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/102279/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/102279/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/102279/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/102279/milestones{/number}",
+ "mirror_url": null,
+ "name": "102279",
+ "node_id": "R_kgDOLDJCMQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/102279/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/102279/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/102279/releases{/id}",
+ "size": 90,
+ "ssh_url": "git@github.com:OpenSourceBrain/102279.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/102279/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/102279/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/102279/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/102279/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/102279",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/102279/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/102279/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/102279/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/102279",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/102288": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/102288/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/102288/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/102288/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/102288/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/102288.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/102288/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/102288/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/102288/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/102288/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/102288/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/102288/contributors",
+ "created_at": "2024-01-10T14:03:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/102288/deployments",
+ "description": "O-LM interneuron model (Lawrence et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/102288/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/102288/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/102288/forks",
+ "full_name": "OpenSourceBrain/102288",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/102288/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/102288/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/102288/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/102288.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/102288",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/102288/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/102288",
+ "id": 741491271,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/102288/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/102288/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/102288/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/102288/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/102288/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/102288/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/102288/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/102288/milestones{/number}",
+ "mirror_url": null,
+ "name": "102288",
+ "node_id": "R_kgDOLDJCRw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/102288/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/102288/pulls{/number}",
+ "pushed_at": "2019-05-31T03:20:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/102288/releases{/id}",
+ "size": 81,
+ "ssh_url": "git@github.com:OpenSourceBrain/102288.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/102288/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/102288/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/102288/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/102288/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/102288",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/102288/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/102288/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/102288/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/102288",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/102871": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/102871/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/102871/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/102871/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/102871/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/102871.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/102871/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/102871/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/102871/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/102871/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/102871/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/102871/contributors",
+ "created_at": "2024-01-10T14:03:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/102871/deployments",
+ "description": "Elementary mechanisms producing facilitation of Cav2.1 (P/Q-type) channels",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/102871/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/102871/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/102871/forks",
+ "full_name": "OpenSourceBrain/102871",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/102871/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/102871/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/102871/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/102871.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/102871",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/102871/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/102871",
+ "id": 741491286,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/102871/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/102871/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/102871/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/102871/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/102871/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/102871/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/102871/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/102871/milestones{/number}",
+ "mirror_url": null,
+ "name": "102871",
+ "node_id": "R_kgDOLDJCVg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/102871/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/102871/pulls{/number}",
+ "pushed_at": "2019-05-31T03:31:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/102871/releases{/id}",
+ "size": 87,
+ "ssh_url": "git@github.com:OpenSourceBrain/102871.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/102871/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/102871/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/102871/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/102871/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/102871",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/102871/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/102871/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/102871/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/102871",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/10360": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/10360/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/10360/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/10360/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/10360/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/10360.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/10360/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/10360/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/10360/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/10360/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/10360/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/10360/contributors",
+ "created_at": "2024-01-08T14:05:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/10360/deployments",
+ "description": "Nerve terminal currents at lizard neuromuscular junction (Lindgren, Moore 1989)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/10360/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/10360/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/10360/forks",
+ "full_name": "OpenSourceBrain/10360",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/10360/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/10360/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/10360/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/10360.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/10360",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/10360/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/10360",
+ "id": 740518238,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/10360/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/10360/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/10360/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/10360/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/10360/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/10360/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/10360/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/10360/milestones{/number}",
+ "mirror_url": null,
+ "name": "10360",
+ "node_id": "R_kgDOLCNpXg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/10360/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/10360/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/10360/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/10360.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/10360/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/10360/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/10360/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/10360/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/10360",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/10360/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/10360/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/10360/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/10360",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/104623": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/104623/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/104623/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/104623/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/104623/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/104623.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/104623/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/104623/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/104623/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/104623/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/104623/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/104623/contributors",
+ "created_at": "2024-01-10T14:03:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/104623/deployments",
+ "description": "Ionic basis of alternans and Timothy Syndrome (Fox et al. 2002), (Zhu and Clancy 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/104623/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/104623/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/104623/forks",
+ "full_name": "OpenSourceBrain/104623",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/104623/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/104623/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/104623/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/104623.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/104623",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/104623/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/104623",
+ "id": 741491307,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/104623/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/104623/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/104623/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/104623/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/104623/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/104623/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/104623/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/104623/milestones{/number}",
+ "mirror_url": null,
+ "name": "104623",
+ "node_id": "R_kgDOLDJCaw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/104623/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/104623/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/104623/releases{/id}",
+ "size": 42,
+ "ssh_url": "git@github.com:OpenSourceBrain/104623.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/104623/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/104623/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/104623/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/104623/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/104623",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/104623/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/104623/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/104623/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/104623",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/105383": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/105383/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/105383/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/105383/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/105383/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/105383.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/105383/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/105383/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/105383/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/105383/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/105383/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/105383/contributors",
+ "created_at": "2024-01-10T14:03:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/105383/deployments",
+ "description": "Excitation-contraction coupling/mitochondrial energetics (ECME) model (Cortassa et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/105383/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/105383/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/105383/forks",
+ "full_name": "OpenSourceBrain/105383",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/105383/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/105383/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/105383/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/105383.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/105383",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/105383/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/105383",
+ "id": 741491324,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/105383/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/105383/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/105383/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/105383/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/105383/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/105383/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/105383/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/105383/milestones{/number}",
+ "mirror_url": null,
+ "name": "105383",
+ "node_id": "R_kgDOLDJCfA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/105383/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/105383/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/105383/releases{/id}",
+ "size": 1428,
+ "ssh_url": "git@github.com:OpenSourceBrain/105383.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/105383/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/105383/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/105383/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/105383/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/105383",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/105383/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/105383/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/105383/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/105383",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/105385": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/105385/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/105385/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/105385/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/105385/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/105385.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/105385/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/105385/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/105385/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/105385/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/105385/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/105385/contributors",
+ "created_at": "2024-01-10T14:03:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/105385/deployments",
+ "description": "Nav1.6 sodium channel model in globus pallidus neurons (Mercer et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/105385/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/105385/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/105385/forks",
+ "full_name": "OpenSourceBrain/105385",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/105385/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/105385/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/105385/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/105385.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/105385",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/105385/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/105385",
+ "id": 741491346,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/105385/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/105385/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/105385/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/105385/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/105385/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/105385/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/105385/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/105385/milestones{/number}",
+ "mirror_url": null,
+ "name": "105385",
+ "node_id": "R_kgDOLDJCkg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/105385/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/105385/pulls{/number}",
+ "pushed_at": "2018-04-23T17:50:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/105385/releases{/id}",
+ "size": 195,
+ "ssh_url": "git@github.com:OpenSourceBrain/105385.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/105385/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/105385/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/105385/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/105385/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/105385",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/105385/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/105385/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/105385/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/105385",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/105501": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/105501/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/105501/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/105501/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/105501/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/105501.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/105501/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/105501/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/105501/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/105501/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/105501/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/105501/contributors",
+ "created_at": "2024-01-10T14:03:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/105501/deployments",
+ "description": "Temporal integration by stochastic recurrent network (Okamoto et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/105501/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/105501/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/105501/forks",
+ "full_name": "OpenSourceBrain/105501",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/105501/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/105501/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/105501/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/105501.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/105501",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/105501/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/105501",
+ "id": 741491362,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/105501/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/105501/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/105501/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/105501/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/105501/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/105501/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/105501/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/105501/milestones{/number}",
+ "mirror_url": null,
+ "name": "105501",
+ "node_id": "R_kgDOLDJCog",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/105501/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/105501/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/105501/releases{/id}",
+ "size": 155,
+ "ssh_url": "git@github.com:OpenSourceBrain/105501.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/105501/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/105501/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/105501/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/105501/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/105501",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/105501/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/105501/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/105501/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/105501",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/105506": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/105506/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/105506/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/105506/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/105506/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/105506.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/105506/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/105506/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/105506/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/105506/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/105506/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/105506/contributors",
+ "created_at": "2024-01-10T14:03:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/105506/deployments",
+ "description": "A dual-Ca2+-sensor model for neurotransmitter release in a central synapse (Sun et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/105506/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/105506/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/105506/forks",
+ "full_name": "OpenSourceBrain/105506",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/105506/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/105506/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/105506/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/105506.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/105506",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/105506/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/105506",
+ "id": 741491383,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/105506/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/105506/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/105506/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/105506/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/105506/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/105506/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/105506/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/105506/milestones{/number}",
+ "mirror_url": null,
+ "name": "105506",
+ "node_id": "R_kgDOLDJCtw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/105506/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/105506/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/105506/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/105506.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/105506/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/105506/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/105506/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/105506/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/105506",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/105506/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/105506/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/105506/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/105506",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/105507": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/105507/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/105507/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/105507/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/105507/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/105507.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/105507/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/105507/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/105507/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/105507/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/105507/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/105507/contributors",
+ "created_at": "2024-01-10T14:03:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/105507/deployments",
+ "description": "Tonic-clonic transitions in a seizure simulation (Lytton and Omurtag 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/105507/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/105507/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/105507/forks",
+ "full_name": "OpenSourceBrain/105507",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/105507/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/105507/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/105507/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/105507.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/105507",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/105507/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/105507",
+ "id": 741491401,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/105507/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/105507/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/105507/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/105507/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/105507/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/105507/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/105507/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/105507/milestones{/number}",
+ "mirror_url": null,
+ "name": "105507",
+ "node_id": "R_kgDOLDJCyQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/105507/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/105507/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/105507/releases{/id}",
+ "size": 265,
+ "ssh_url": "git@github.com:OpenSourceBrain/105507.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/105507/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/105507/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/105507/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/105507/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/105507",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/105507/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/105507/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/105507/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/105507",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/105528": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/105528/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/105528/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/105528/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/105528/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/105528.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/105528/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/105528/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/105528/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/105528/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/105528/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/105528/contributors",
+ "created_at": "2024-01-10T14:03:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/105528/deployments",
+ "description": "Effect of riluzole on action potential in cultured human skeletal muscle cells (Wang YJ et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/105528/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/105528/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/105528/forks",
+ "full_name": "OpenSourceBrain/105528",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/105528/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/105528/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/105528/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/105528.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/105528",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/105528/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/105528",
+ "id": 741491430,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/105528/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/105528/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/105528/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/105528/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/105528/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/105528/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/105528/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/105528/milestones{/number}",
+ "mirror_url": null,
+ "name": "105528",
+ "node_id": "R_kgDOLDJC5g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/105528/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/105528/pulls{/number}",
+ "pushed_at": "2022-02-17T06:21:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/105528/releases{/id}",
+ "size": 44,
+ "ssh_url": "git@github.com:OpenSourceBrain/105528.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/105528/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/105528/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/105528/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/105528/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/105528",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/105528/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/105528/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/105528/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/105528",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/106551": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/106551/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/106551/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/106551/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/106551/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/106551.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/106551/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/106551/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/106551/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/106551/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/106551/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/106551/contributors",
+ "created_at": "2024-01-10T14:03:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/106551/deployments",
+ "description": "CA1 pyramidal neuron: calculation of MRI signals (Cassara et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/106551/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/106551/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/106551/forks",
+ "full_name": "OpenSourceBrain/106551",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/106551/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/106551/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/106551/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/106551.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/106551",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/106551/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/106551",
+ "id": 741491448,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/106551/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/106551/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/106551/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/106551/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/106551/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/106551/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/106551/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/106551/milestones{/number}",
+ "mirror_url": null,
+ "name": "106551",
+ "node_id": "R_kgDOLDJC-A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/106551/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/106551/pulls{/number}",
+ "pushed_at": "2023-07-08T15:18:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/106551/releases{/id}",
+ "size": 29,
+ "ssh_url": "git@github.com:OpenSourceBrain/106551.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/106551/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/106551/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/106551/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/106551/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/106551",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/106551/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/106551/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/106551/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/106551",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/106891": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/106891/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/106891/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/106891/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/106891/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/106891.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/106891/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/106891/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/106891/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/106891/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/106891/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/106891/contributors",
+ "created_at": "2024-01-10T14:03:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/106891/deployments",
+ "description": "JitCon: Just in time connectivity for large spiking networks (Lytton et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/106891/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/106891/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/106891/forks",
+ "full_name": "OpenSourceBrain/106891",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/106891/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/106891/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/106891/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/106891.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/106891",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/106891/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/106891",
+ "id": 741491466,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/106891/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/106891/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/106891/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/106891/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/106891/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/106891/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/106891/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/106891/milestones{/number}",
+ "mirror_url": null,
+ "name": "106891",
+ "node_id": "R_kgDOLDJDCg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/106891/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/106891/pulls{/number}",
+ "pushed_at": "2023-04-30T19:15:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/106891/releases{/id}",
+ "size": 255,
+ "ssh_url": "git@github.com:OpenSourceBrain/106891.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/106891/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/106891/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/106891/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/106891/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/106891",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/106891/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/106891/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/106891/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:03:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/106891",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/108458": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/108458/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/108458/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/108458/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/108458/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/108458.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/108458/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/108458/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/108458/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/108458/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/108458/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/108458/contributors",
+ "created_at": "2024-01-10T14:04:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/108458/deployments",
+ "description": "Calcium spikes in basal dendrites (Kampa and Stuart 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/108458/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/108458/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/108458/forks",
+ "full_name": "OpenSourceBrain/108458",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/108458/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/108458/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/108458/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/108458.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/108458",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/108458/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/108458",
+ "id": 741491479,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/108458/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/108458/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/108458/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/108458/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/108458/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/108458/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/108458/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/108458/milestones{/number}",
+ "mirror_url": null,
+ "name": "108458",
+ "node_id": "R_kgDOLDJDFw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/108458/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/108458/pulls{/number}",
+ "pushed_at": "2023-07-08T15:40:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/108458/releases{/id}",
+ "size": 217,
+ "ssh_url": "git@github.com:OpenSourceBrain/108458.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/108458/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/108458/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/108458/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/108458/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/108458",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/108458/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/108458/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/108458/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/108458",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/108459": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/108459/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/108459/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/108459/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/108459/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/108459.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/108459/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/108459/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/108459/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/108459/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/108459/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/108459/contributors",
+ "created_at": "2024-01-10T14:04:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/108459/deployments",
+ "description": "STDP depends on dendritic synapse location (Letzkus et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/108459/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/108459/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/108459/forks",
+ "full_name": "OpenSourceBrain/108459",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/108459/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/108459/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/108459/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/108459.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/108459",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/108459/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/108459",
+ "id": 741491495,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/108459/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/108459/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/108459/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/108459/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/108459/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/108459/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/108459/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/108459/milestones{/number}",
+ "mirror_url": null,
+ "name": "108459",
+ "node_id": "R_kgDOLDJDJw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/108459/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/108459/pulls{/number}",
+ "pushed_at": "2023-07-08T16:09:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/108459/releases{/id}",
+ "size": 167,
+ "ssh_url": "git@github.com:OpenSourceBrain/108459.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/108459/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/108459/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/108459/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/108459/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/108459",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/108459/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/108459/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/108459/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/108459",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/110022": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/110022/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/110022/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/110022/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/110022/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/110022.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/110022/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/110022/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/110022/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/110022/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/110022/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/110022/contributors",
+ "created_at": "2024-01-10T14:04:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/110022/deployments",
+ "description": "A microcircuit model of the frontal eye fields (Heinzle et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/110022/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/110022/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/110022/forks",
+ "full_name": "OpenSourceBrain/110022",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/110022/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/110022/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/110022/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/110022.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/110022",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/110022/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/110022",
+ "id": 741491520,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/110022/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/110022/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/110022/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/110022/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/110022/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/110022/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/110022/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/110022/milestones{/number}",
+ "mirror_url": null,
+ "name": "110022",
+ "node_id": "R_kgDOLDJDQA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/110022/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/110022/pulls{/number}",
+ "pushed_at": "2019-05-31T05:06:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/110022/releases{/id}",
+ "size": 94,
+ "ssh_url": "git@github.com:OpenSourceBrain/110022.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/110022/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/110022/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/110022/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/110022/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/110022",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/110022/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/110022/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/110022/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/110022",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/110560": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/110560/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/110560/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/110560/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/110560/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/110560.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/110560/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/110560/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/110560/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/110560/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/110560/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/110560/contributors",
+ "created_at": "2024-01-10T14:04:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/110560/deployments",
+ "description": "Space clamp problems in neurons with voltage-gated conductances (Bar-Yehuda and Korngreen 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/110560/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/110560/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/110560/forks",
+ "full_name": "OpenSourceBrain/110560",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/110560/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/110560/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/110560/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/110560.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/110560",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/110560/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/110560",
+ "id": 741491533,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/110560/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/110560/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/110560/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/110560/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/110560/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/110560/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/110560/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/110560/milestones{/number}",
+ "mirror_url": null,
+ "name": "110560",
+ "node_id": "R_kgDOLDJDTQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/110560/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/110560/pulls{/number}",
+ "pushed_at": "2019-05-31T02:32:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/110560/releases{/id}",
+ "size": 257,
+ "ssh_url": "git@github.com:OpenSourceBrain/110560.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/110560/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/110560/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/110560/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/110560/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/110560",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/110560/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/110560/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/110560/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/110560",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/111870": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/111870/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/111870/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/111870/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/111870/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/111870.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/111870/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/111870/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/111870/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/111870/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/111870/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/111870/contributors",
+ "created_at": "2024-01-10T14:04:10Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/111870/deployments",
+ "description": "Thalamic transformation of pallidal input (Hadipour-Niktarash 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/111870/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/111870/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/111870/forks",
+ "full_name": "OpenSourceBrain/111870",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/111870/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/111870/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/111870/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/111870.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/111870",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/111870/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/111870",
+ "id": 741491559,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/111870/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/111870/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/111870/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/111870/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/111870/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/111870/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/111870/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/111870/milestones{/number}",
+ "mirror_url": null,
+ "name": "111870",
+ "node_id": "R_kgDOLDJDZw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/111870/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/111870/pulls{/number}",
+ "pushed_at": "2019-05-31T02:36:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/111870/releases{/id}",
+ "size": 106,
+ "ssh_url": "git@github.com:OpenSourceBrain/111870.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/111870/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/111870/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/111870/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/111870/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/111870",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/111870/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/111870/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/111870/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/111870",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/111877": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/111877/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/111877/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/111877/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/111877/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/111877.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/111877/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/111877/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/111877/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/111877/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/111877/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/111877/contributors",
+ "created_at": "2024-01-10T14:04:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/111877/deployments",
+ "description": "Ca-dependent K Channel: kinetics from rat muscle (Moczydlowski, Latorre 1983) XPP",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/111877/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/111877/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/111877/forks",
+ "full_name": "OpenSourceBrain/111877",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/111877/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/111877/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/111877/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/111877.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/111877",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/111877/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/111877",
+ "id": 741491579,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/111877/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/111877/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/111877/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/111877/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/111877/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/111877/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/111877/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/111877/milestones{/number}",
+ "mirror_url": null,
+ "name": "111877",
+ "node_id": "R_kgDOLDJDew",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/111877/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/111877/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/111877/releases{/id}",
+ "size": 44,
+ "ssh_url": "git@github.com:OpenSourceBrain/111877.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/111877/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/111877/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/111877/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/111877/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/111877",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/111877/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/111877/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/111877/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/111877",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/111880": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/111880/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/111880/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/111880/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/111880/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/111880.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/111880/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/111880/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/111880/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/111880/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/111880/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/111880/contributors",
+ "created_at": "2024-01-10T14:04:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/111880/deployments",
+ "description": "Thalamocortical model of spike and wave seizures (Suffczynski et al. 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/111880/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/111880/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/111880/forks",
+ "full_name": "OpenSourceBrain/111880",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/111880/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/111880/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/111880/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/111880.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/111880",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/111880/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/111880",
+ "id": 741491597,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/111880/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/111880/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/111880/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/111880/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/111880/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/111880/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/111880/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/111880/milestones{/number}",
+ "mirror_url": null,
+ "name": "111880",
+ "node_id": "R_kgDOLDJDjQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/111880/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/111880/pulls{/number}",
+ "pushed_at": "2019-05-31T05:07:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/111880/releases{/id}",
+ "size": 77,
+ "ssh_url": "git@github.com:OpenSourceBrain/111880.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/111880/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/111880/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/111880/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/111880/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/111880",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/111880/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/111880/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/111880/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/111880",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/111967": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/111967/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/111967/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/111967/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/111967/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/111967.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/111967/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/111967/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/111967/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/111967/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/111967/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/111967/contributors",
+ "created_at": "2024-01-10T14:04:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/111967/deployments",
+ "description": "Kinetic properties of voltage gated Na channel (Nayak and Sikdar 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/111967/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/111967/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/111967/forks",
+ "full_name": "OpenSourceBrain/111967",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/111967/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/111967/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/111967/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/111967.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/111967",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/111967/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/111967",
+ "id": 741491618,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/111967/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/111967/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/111967/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/111967/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/111967/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/111967/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/111967/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/111967/milestones{/number}",
+ "mirror_url": null,
+ "name": "111967",
+ "node_id": "R_kgDOLDJDog",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/111967/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/111967/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/111967/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/111967.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/111967/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/111967/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/111967/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/111967/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/111967",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/111967/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/111967/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/111967/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/111967",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112079": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112079/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112079/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112079/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112079/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112079.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112079/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112079/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112079/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112079/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112079/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112079/contributors",
+ "created_at": "2024-01-10T14:04:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112079/deployments",
+ "description": "Properties of aconitine-induced block of KDR current in NG108-15 neurons (Lin et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112079/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112079/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112079/forks",
+ "full_name": "OpenSourceBrain/112079",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112079/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112079/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112079/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112079.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/112079",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112079/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112079",
+ "id": 741491642,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112079/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112079/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112079/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112079/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112079/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112079/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112079/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112079/milestones{/number}",
+ "mirror_url": null,
+ "name": "112079",
+ "node_id": "R_kgDOLDJDug",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112079/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112079/pulls{/number}",
+ "pushed_at": "2019-05-31T03:43:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112079/releases{/id}",
+ "size": 1021,
+ "ssh_url": "git@github.com:OpenSourceBrain/112079.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112079/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112079/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112079/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112079/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112079",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112079/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112079/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112079/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112079",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112086": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112086/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112086/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112086/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112086/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112086.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112086/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112086/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112086/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112086/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112086/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112086/contributors",
+ "created_at": "2024-01-10T14:04:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112086/deployments",
+ "description": "Carbon nanotubes as electrical interfaces to neurons (Giugliano et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112086/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112086/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112086/forks",
+ "full_name": "OpenSourceBrain/112086",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112086/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112086/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112086/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112086.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/112086",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112086/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112086",
+ "id": 741491664,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112086/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112086/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112086/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112086/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112086/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112086/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112086/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112086/milestones{/number}",
+ "mirror_url": null,
+ "name": "112086",
+ "node_id": "R_kgDOLDJD0A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112086/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112086/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112086/releases{/id}",
+ "size": 88,
+ "ssh_url": "git@github.com:OpenSourceBrain/112086.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112086/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112086/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112086/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112086/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112086",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112086/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112086/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112086/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112086",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112348": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112348/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112348/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112348/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112348/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112348.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112348/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112348/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112348/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112348/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112348/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112348/contributors",
+ "created_at": "2024-01-10T14:04:25Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112348/deployments",
+ "description": "Activity constraints on stable neuronal or network parameters (Olypher and Calabrese 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112348/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112348/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112348/forks",
+ "full_name": "OpenSourceBrain/112348",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112348/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112348/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112348/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112348.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/112348",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112348/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112348",
+ "id": 741491695,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112348/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112348/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112348/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112348/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112348/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112348/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112348/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112348/milestones{/number}",
+ "mirror_url": null,
+ "name": "112348",
+ "node_id": "R_kgDOLDJD7w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112348/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112348/pulls{/number}",
+ "pushed_at": "2023-12-23T03:35:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112348/releases{/id}",
+ "size": 25,
+ "ssh_url": "git@github.com:OpenSourceBrain/112348.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112348/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112348/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112348/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112348/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112348",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112348/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112348/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112348/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112348",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112359": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112359/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112359/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112359/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112359/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112359.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112359/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112359/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112359/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112359/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112359/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112359/contributors",
+ "created_at": "2024-01-10T14:04:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112359/deployments",
+ "description": "Nigral dopaminergic neurons: effects of ethanol on Ih (Migliore et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112359/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112359/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112359/forks",
+ "full_name": "OpenSourceBrain/112359",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112359/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112359/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112359/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112359.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/112359",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112359/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112359",
+ "id": 741491706,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112359/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112359/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112359/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112359/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112359/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112359/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112359/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112359/milestones{/number}",
+ "mirror_url": null,
+ "name": "112359",
+ "node_id": "R_kgDOLDJD-g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112359/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112359/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112359/releases{/id}",
+ "size": 1544,
+ "ssh_url": "git@github.com:OpenSourceBrain/112359.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112359/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112359/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112359/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112359/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112359",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112359/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112359/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112359/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112359",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112468": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112468/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112468/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112468/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112468/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112468.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112468/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112468/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112468/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112468/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112468/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112468/contributors",
+ "created_at": "2024-01-10T14:04:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112468/deployments",
+ "description": "CellExcite: an efficient simulation environment for excitable cells (Bartocci et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112468/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112468/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112468/forks",
+ "full_name": "OpenSourceBrain/112468",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112468/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112468/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112468/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112468.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/112468",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112468/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112468",
+ "id": 741491717,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112468/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112468/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112468/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112468/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112468/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112468/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112468/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112468/milestones{/number}",
+ "mirror_url": null,
+ "name": "112468",
+ "node_id": "R_kgDOLDJEBQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112468/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112468/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112468/releases{/id}",
+ "size": 521,
+ "ssh_url": "git@github.com:OpenSourceBrain/112468.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112468/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112468/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112468/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112468/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112468",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112468/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112468/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112468/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112468",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112546": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112546/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112546/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112546/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112546/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112546.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112546/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112546/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112546/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112546/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112546/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112546/contributors",
+ "created_at": "2024-01-10T14:04:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112546/deployments",
+ "description": "CA1 pyramidal neuron: functional significance of axonal Kv7 channels (Shah et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112546/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112546/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112546/forks",
+ "full_name": "OpenSourceBrain/112546",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112546/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112546/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112546/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112546.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/112546",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112546/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112546",
+ "id": 741491734,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112546/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112546/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112546/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112546/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112546/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112546/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112546/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112546/milestones{/number}",
+ "mirror_url": null,
+ "name": "112546",
+ "node_id": "R_kgDOLDJEFg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112546/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112546/pulls{/number}",
+ "pushed_at": "2019-05-31T04:28:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112546/releases{/id}",
+ "size": 64,
+ "ssh_url": "git@github.com:OpenSourceBrain/112546.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112546/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112546/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112546/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112546/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112546",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112546/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112546/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112546/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112546",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112547": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112547/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112547/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112547/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112547/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112547.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112547/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112547/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112547/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112547/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112547/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112547/contributors",
+ "created_at": "2024-01-10T14:04:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112547/deployments",
+ "description": "Spontaneous calcium oscillations in astrocytes (Lavrentovich and Hemkin 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112547/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112547/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112547/forks",
+ "full_name": "OpenSourceBrain/112547",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112547/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112547/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112547/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112547.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/112547",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112547/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112547",
+ "id": 741491751,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112547/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112547/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112547/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112547/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112547/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112547/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112547/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112547/milestones{/number}",
+ "mirror_url": null,
+ "name": "112547",
+ "node_id": "R_kgDOLDJEJw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112547/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112547/pulls{/number}",
+ "pushed_at": "2019-05-31T04:25:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112547/releases{/id}",
+ "size": 377,
+ "ssh_url": "git@github.com:OpenSourceBrain/112547.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112547/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112547/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112547/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112547/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112547",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112547/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112547/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112547/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112547",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112633": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112633/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112633/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112633/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112633/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112633.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112633/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112633/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112633/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112633/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112633/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112633/contributors",
+ "created_at": "2024-01-10T14:04:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112633/deployments",
+ "description": "Gap-junction coupled network activity depends on coupled dendrites diameter (Gansert et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112633/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112633/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112633/forks",
+ "full_name": "OpenSourceBrain/112633",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112633/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112633/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112633/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112633.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/112633",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112633/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112633",
+ "id": 741491769,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112633/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112633/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112633/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112633/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112633/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112633/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112633/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112633/milestones{/number}",
+ "mirror_url": null,
+ "name": "112633",
+ "node_id": "R_kgDOLDJEOQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112633/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112633/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112633/releases{/id}",
+ "size": 10,
+ "ssh_url": "git@github.com:OpenSourceBrain/112633.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112633/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112633/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112633/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112633/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112633",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112633/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112633/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112633/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112633",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112685": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112685/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112685/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112685/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112685/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112685.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112685/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112685/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112685/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112685/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112685/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112685/contributors",
+ "created_at": "2024-01-10T14:04:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112685/deployments",
+ "description": "Cerebellar Golgi cell (Solinas et al. 2007a, 2007b)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112685/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112685/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112685/forks",
+ "full_name": "OpenSourceBrain/112685",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112685/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112685/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112685/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112685.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/112685",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112685/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112685",
+ "id": 741491790,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112685/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112685/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112685/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112685/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112685/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112685/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112685/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112685/milestones{/number}",
+ "mirror_url": null,
+ "name": "112685",
+ "node_id": "R_kgDOLDJETg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112685/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112685/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112685/releases{/id}",
+ "size": 65,
+ "ssh_url": "git@github.com:OpenSourceBrain/112685.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112685/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112685/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112685/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112685/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112685",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112685/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112685/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112685/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112685",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112834": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112834/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112834/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112834/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112834/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112834.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112834/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112834/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112834/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112834/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112834/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112834/contributors",
+ "created_at": "2024-01-10T14:04:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112834/deployments",
+ "description": "Afferent Integration in the NAcb MSP Cell (Wolf et al. 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112834/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112834/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112834/forks",
+ "full_name": "OpenSourceBrain/112834",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112834/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112834/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112834/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112834.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/112834",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112834/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112834",
+ "id": 741491808,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112834/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112834/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112834/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112834/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112834/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112834/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112834/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112834/milestones{/number}",
+ "mirror_url": null,
+ "name": "112834",
+ "node_id": "R_kgDOLDJEYA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112834/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112834/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112834/releases{/id}",
+ "size": 125,
+ "ssh_url": "git@github.com:OpenSourceBrain/112834.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112834/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112834/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112834/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112834/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112834",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112834/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112834/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112834/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112834",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112836": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112836/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112836/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112836/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112836/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112836.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112836/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112836/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112836/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112836/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112836/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112836/contributors",
+ "created_at": "2024-01-10T14:04:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112836/deployments",
+ "description": "Spike trains in Hodgkin\u2013Huxley model and ISIs of acupuncture manipulations (Wang et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112836/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112836/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112836/forks",
+ "full_name": "OpenSourceBrain/112836",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112836/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112836/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112836/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112836.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/112836",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112836/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112836",
+ "id": 741491821,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112836/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112836/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112836/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112836/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112836/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112836/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112836/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112836/milestones{/number}",
+ "mirror_url": null,
+ "name": "112836",
+ "node_id": "R_kgDOLDJEbQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112836/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112836/pulls{/number}",
+ "pushed_at": "2022-02-18T15:05:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112836/releases{/id}",
+ "size": 44,
+ "ssh_url": "git@github.com:OpenSourceBrain/112836.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112836/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112836/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112836/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112836/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112836",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112836/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112836/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112836/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112836",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112914": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112914/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112914/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112914/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112914/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112914.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112914/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112914/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112914/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112914/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112914/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112914/contributors",
+ "created_at": "2024-01-10T14:04:45Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112914/deployments",
+ "description": "Two-cell inhibitory network bursting dynamics captured in a one-dimensional map (Matveev et al 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112914/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112914/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112914/forks",
+ "full_name": "OpenSourceBrain/112914",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112914/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112914/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112914/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112914.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/112914",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112914/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112914",
+ "id": 741491838,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112914/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112914/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112914/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112914/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112914/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112914/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112914/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112914/milestones{/number}",
+ "mirror_url": null,
+ "name": "112914",
+ "node_id": "R_kgDOLDJEfg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112914/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112914/pulls{/number}",
+ "pushed_at": "2023-12-23T03:35:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112914/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/112914.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112914/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112914/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112914/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112914/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112914",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112914/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112914/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112914/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112914",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112922": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112922/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112922/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112922/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112922/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112922.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112922/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112922/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112922/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112922/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112922/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112922/contributors",
+ "created_at": "2024-01-10T14:04:47Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112922/deployments",
+ "description": "Spikes,synchrony,and attentive learning by laminar thalamocort. circuits (Grossberg & Versace 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112922/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112922/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112922/forks",
+ "full_name": "OpenSourceBrain/112922",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112922/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112922/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112922/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112922.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/112922",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112922/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112922",
+ "id": 741491851,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112922/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112922/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112922/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112922/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112922/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112922/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112922/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112922/milestones{/number}",
+ "mirror_url": null,
+ "name": "112922",
+ "node_id": "R_kgDOLDJEiw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112922/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112922/pulls{/number}",
+ "pushed_at": "2023-12-23T03:35:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112922/releases{/id}",
+ "size": 20,
+ "ssh_url": "git@github.com:OpenSourceBrain/112922.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112922/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112922/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112922/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112922/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112922",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112922/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112922/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112922/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112922",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/112968": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/112968/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/112968/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/112968/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/112968/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/112968.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/112968/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/112968/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/112968/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/112968/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/112968/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/112968/contributors",
+ "created_at": "2024-01-10T14:04:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/112968/deployments",
+ "description": "Synchronization by D4 dopamine receptor-mediated phospholipid methylation (Kuznetsova, Deth 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/112968/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/112968/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/112968/forks",
+ "full_name": "OpenSourceBrain/112968",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/112968/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/112968/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/112968/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/112968.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/112968",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/112968/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/112968",
+ "id": 741491868,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/112968/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/112968/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/112968/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/112968/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/112968/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/112968/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/112968/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/112968/milestones{/number}",
+ "mirror_url": null,
+ "name": "112968",
+ "node_id": "R_kgDOLDJEnA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/112968/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/112968/pulls{/number}",
+ "pushed_at": "2022-02-17T19:19:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/112968/releases{/id}",
+ "size": 87,
+ "ssh_url": "git@github.com:OpenSourceBrain/112968.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/112968/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/112968/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/112968/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/112968/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/112968",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/112968/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/112968/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/112968/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/112968",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/113426": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/113426/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/113426/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/113426/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/113426/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/113426.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/113426/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/113426/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/113426/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/113426/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/113426/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/113426/contributors",
+ "created_at": "2024-01-10T14:04:51Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/113426/deployments",
+ "description": "Stability of complex spike timing-dependent plasticity in cerebellar learning (Roberts 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/113426/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/113426/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/113426/forks",
+ "full_name": "OpenSourceBrain/113426",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/113426/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/113426/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/113426/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/113426.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/113426",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/113426/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/113426",
+ "id": 741491878,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/113426/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/113426/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/113426/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/113426/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/113426/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/113426/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/113426/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/113426/milestones{/number}",
+ "mirror_url": null,
+ "name": "113426",
+ "node_id": "R_kgDOLDJEpg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/113426/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/113426/pulls{/number}",
+ "pushed_at": "2023-12-23T03:35:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/113426/releases{/id}",
+ "size": 100,
+ "ssh_url": "git@github.com:OpenSourceBrain/113426.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/113426/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/113426/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/113426/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/113426/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/113426",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/113426/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/113426/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/113426/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/113426",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/113446": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/113446/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/113446/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/113446/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/113446/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/113446.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/113446/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/113446/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/113446/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/113446/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/113446/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/113446/contributors",
+ "created_at": "2024-01-10T14:04:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/113446/deployments",
+ "description": "Computer simulations of neuron-glia interactions mediated by ion flux (Somjen et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/113446/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/113446/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/113446/forks",
+ "full_name": "OpenSourceBrain/113446",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/113446/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/113446/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/113446/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/113446.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/113446",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/113446/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/113446",
+ "id": 741491891,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/113446/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/113446/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/113446/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/113446/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/113446/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/113446/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/113446/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/113446/milestones{/number}",
+ "mirror_url": null,
+ "name": "113446",
+ "node_id": "R_kgDOLDJEsw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/113446/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/113446/pulls{/number}",
+ "pushed_at": "2023-04-30T19:17:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/113446/releases{/id}",
+ "size": 70,
+ "ssh_url": "git@github.com:OpenSourceBrain/113446.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/113446/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/113446/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/113446/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/113446/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/113446",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/113446/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/113446/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/113446/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/113446",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/113459": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/113459/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/113459/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/113459/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/113459/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/113459.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/113459/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/113459/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/113459/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/113459/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/113459/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/113459/contributors",
+ "created_at": "2024-01-10T14:04:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/113459/deployments",
+ "description": "Distributed representation of perceptual categories in the auditory cortex (Kim and Bao 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/113459/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/113459/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/113459/forks",
+ "full_name": "OpenSourceBrain/113459",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/113459/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/113459/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/113459/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/113459.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/113459",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/113459/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/113459",
+ "id": 741491906,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/113459/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/113459/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/113459/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/113459/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/113459/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/113459/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/113459/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/113459/milestones{/number}",
+ "mirror_url": null,
+ "name": "113459",
+ "node_id": "R_kgDOLDJEwg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/113459/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/113459/pulls{/number}",
+ "pushed_at": "2019-05-31T04:52:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/113459/releases{/id}",
+ "size": 23,
+ "ssh_url": "git@github.com:OpenSourceBrain/113459.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/113459/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/113459/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/113459/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/113459/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/113459",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/113459/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/113459/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/113459/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/113459",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/113649": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/113649/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/113649/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/113649/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/113649/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/113649.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/113649/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/113649/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/113649/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/113649/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/113649/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/113649/contributors",
+ "created_at": "2024-01-10T14:04:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/113649/deployments",
+ "description": "Multiple mechanisms of short term plasticity at the calyx of Held (Hennig et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/113649/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/113649/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/113649/forks",
+ "full_name": "OpenSourceBrain/113649",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/113649/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/113649/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/113649/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/113649.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/113649",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/113649/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/113649",
+ "id": 741491929,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/113649/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/113649/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/113649/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/113649/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/113649/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/113649/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/113649/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/113649/milestones{/number}",
+ "mirror_url": null,
+ "name": "113649",
+ "node_id": "R_kgDOLDJE2Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/113649/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/113649/pulls{/number}",
+ "pushed_at": "2019-05-31T05:07:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/113649/releases{/id}",
+ "size": 58,
+ "ssh_url": "git@github.com:OpenSourceBrain/113649.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/113649/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/113649/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/113649/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/113649/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/113649",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/113649/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/113649/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/113649/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:04:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/113649",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/113732": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/113732/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/113732/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/113732/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/113732/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/113732.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/113732/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/113732/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/113732/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/113732/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/113732/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/113732/contributors",
+ "created_at": "2024-01-10T14:05:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/113732/deployments",
+ "description": "MEG of Somatosensory Neocortex (Jones et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/113732/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/113732/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/113732/forks",
+ "full_name": "OpenSourceBrain/113732",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/113732/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/113732/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/113732/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/113732.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/113732",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/113732/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/113732",
+ "id": 741491942,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/113732/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/113732/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/113732/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/113732/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/113732/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/113732/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/113732/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/113732/milestones{/number}",
+ "mirror_url": null,
+ "name": "113732",
+ "node_id": "R_kgDOLDJE5g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/113732/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/113732/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/113732/releases{/id}",
+ "size": 204,
+ "ssh_url": "git@github.com:OpenSourceBrain/113732.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/113732/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/113732/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/113732/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/113732/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/113732",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/113732/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/113732/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/113732/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/113732",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/113939": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/113939/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/113939/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/113939/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/113939/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/113939.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/113939/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/113939/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/113939/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/113939/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/113939/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/113939/contributors",
+ "created_at": "2024-01-10T14:05:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/113939/deployments",
+ "description": "KInNeSS : a modular framework for computational neuroscience (Versace et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/113939/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/113939/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/113939/forks",
+ "full_name": "OpenSourceBrain/113939",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/113939/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/113939/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/113939/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/113939.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/113939",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/113939/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/113939",
+ "id": 741491956,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/113939/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/113939/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/113939/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/113939/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/113939/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/113939/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/113939/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/113939/milestones{/number}",
+ "mirror_url": null,
+ "name": "113939",
+ "node_id": "R_kgDOLDJE9A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/113939/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/113939/pulls{/number}",
+ "pushed_at": "2019-06-03T20:22:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/113939/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/113939.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/113939/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/113939/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/113939/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/113939/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/113939",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/113939/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/113939/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/113939/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/113939",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/113949": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/113949/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/113949/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/113949/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/113949/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/113949.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/113949/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/113949/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/113949/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/113949/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/113949/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/113949/contributors",
+ "created_at": "2024-01-10T14:05:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/113949/deployments",
+ "description": "Dendritic processing of excitatory synaptic input in GnRH neurons (Roberts et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/113949/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/113949/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/113949/forks",
+ "full_name": "OpenSourceBrain/113949",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/113949/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/113949/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/113949/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/113949.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/113949",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/113949/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/113949",
+ "id": 741491980,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/113949/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/113949/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/113949/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/113949/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/113949/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/113949/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/113949/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/113949/milestones{/number}",
+ "mirror_url": null,
+ "name": "113949",
+ "node_id": "R_kgDOLDJFDA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/113949/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/113949/pulls{/number}",
+ "pushed_at": "2019-05-31T02:54:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/113949/releases{/id}",
+ "size": 30,
+ "ssh_url": "git@github.com:OpenSourceBrain/113949.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/113949/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/113949/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/113949/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/113949/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/113949",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/113949/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/113949/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/113949/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/113949",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/113997": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/113997/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/113997/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/113997/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/113997/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/113997.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/113997/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/113997/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/113997/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/113997/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/113997/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/113997/contributors",
+ "created_at": "2024-01-10T14:05:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/113997/deployments",
+ "description": "Hodgkin-Huxley model of persistent activity in prefrontal cortex neurons (Winograd et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/113997/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/113997/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/113997/forks",
+ "full_name": "OpenSourceBrain/113997",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/113997/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/113997/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/113997/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/113997.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/113997",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/113997/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/113997",
+ "id": 741492004,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/113997/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/113997/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/113997/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/113997/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/113997/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/113997/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/113997/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/113997/milestones{/number}",
+ "mirror_url": null,
+ "name": "113997",
+ "node_id": "R_kgDOLDJFJA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/113997/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/113997/pulls{/number}",
+ "pushed_at": "2018-04-23T17:56:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/113997/releases{/id}",
+ "size": 70,
+ "ssh_url": "git@github.com:OpenSourceBrain/113997.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/113997/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/113997/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/113997/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/113997/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/113997",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/113997/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/113997/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/113997/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/113997",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114047": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114047/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114047/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114047/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114047/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114047.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114047/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114047/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114047/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114047/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114047/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114047/contributors",
+ "created_at": "2024-01-10T14:05:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114047/deployments",
+ "description": "Hippocampal basket cell gap junction network dynamics (Saraga et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114047/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114047/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114047/forks",
+ "full_name": "OpenSourceBrain/114047",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114047/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114047/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114047/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114047.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114047",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114047/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114047",
+ "id": 741492025,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114047/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114047/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114047/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114047/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114047/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114047/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114047/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114047/milestones{/number}",
+ "mirror_url": null,
+ "name": "114047",
+ "node_id": "R_kgDOLDJFOQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114047/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114047/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114047/releases{/id}",
+ "size": 106,
+ "ssh_url": "git@github.com:OpenSourceBrain/114047.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114047/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114047/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114047/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114047/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114047",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114047/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114047/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114047/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114047",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114108": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114108/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114108/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114108/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114108/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114108.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114108/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114108/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114108/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114108/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114108/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114108/contributors",
+ "created_at": "2024-01-10T14:05:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114108/deployments",
+ "description": "Effect of slowly inactivating IKdr to delayed firing of action potentials (Wu et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114108/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114108/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114108/forks",
+ "full_name": "OpenSourceBrain/114108",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114108/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114108/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114108/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114108.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114108",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114108/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114108",
+ "id": 741492042,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114108/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114108/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114108/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114108/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114108/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114108/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114108/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114108/milestones{/number}",
+ "mirror_url": null,
+ "name": "114108",
+ "node_id": "R_kgDOLDJFSg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114108/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114108/pulls{/number}",
+ "pushed_at": "2019-05-31T04:51:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114108/releases{/id}",
+ "size": 83,
+ "ssh_url": "git@github.com:OpenSourceBrain/114108.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114108/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114108/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114108/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114108/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114108",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114108/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114108/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114108/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114108",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114230": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114230/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114230/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114230/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114230/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114230.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114230/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114230/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114230/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114230/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114230/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114230/contributors",
+ "created_at": "2024-01-10T14:05:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114230/deployments",
+ "description": "Systems-level modeling of neuronal circuits for leech swimming (Zheng et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114230/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114230/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114230/forks",
+ "full_name": "OpenSourceBrain/114230",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114230/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114230/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114230/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114230.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114230",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114230/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114230",
+ "id": 741492062,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114230/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114230/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114230/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114230/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114230/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114230/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114230/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114230/milestones{/number}",
+ "mirror_url": null,
+ "name": "114230",
+ "node_id": "R_kgDOLDJFXg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114230/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114230/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114230/releases{/id}",
+ "size": 132,
+ "ssh_url": "git@github.com:OpenSourceBrain/114230.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114230/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114230/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114230/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114230/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114230",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114230/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114230/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114230/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114230",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114242": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114242/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114242/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114242/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114242/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114242.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114242/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114242/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114242/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114242/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114242/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114242/contributors",
+ "created_at": "2024-01-10T14:05:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114242/deployments",
+ "description": "Brette-Gerstner model (Touboul and Brette 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114242/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114242/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114242/forks",
+ "full_name": "OpenSourceBrain/114242",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114242/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114242/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114242/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114242.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114242",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114242/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114242",
+ "id": 741492089,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114242/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114242/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114242/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114242/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114242/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114242/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114242/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114242/milestones{/number}",
+ "mirror_url": null,
+ "name": "114242",
+ "node_id": "R_kgDOLDJFeQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114242/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114242/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114242/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/114242.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114242/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114242/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114242/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114242/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114242",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114242/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114242/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114242/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114242",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114310": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114310/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114310/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114310/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114310/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114310.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114310/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114310/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114310/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114310/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114310/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114310/contributors",
+ "created_at": "2024-01-10T14:05:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114310/deployments",
+ "description": "A comparative computer simulation of dendritic morphology (Donohue and Ascoli 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114310/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114310/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114310/forks",
+ "full_name": "OpenSourceBrain/114310",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114310/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114310/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114310/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114310.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114310",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114310/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114310",
+ "id": 741492106,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114310/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114310/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114310/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114310/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114310/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114310/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114310/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114310/milestones{/number}",
+ "mirror_url": null,
+ "name": "114310",
+ "node_id": "R_kgDOLDJFig",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114310/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114310/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114310/releases{/id}",
+ "size": 65,
+ "ssh_url": "git@github.com:OpenSourceBrain/114310.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114310/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114310/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114310/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114310/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114310",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114310/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114310/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114310/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114310",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114337": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114337/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114337/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114337/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114337/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114337.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114337/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114337/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114337/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114337/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114337/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114337/contributors",
+ "created_at": "2024-01-10T14:05:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114337/deployments",
+ "description": "Ionic mechanisms of bursting in CA3 pyramidal neurons (Xu and Clancy 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114337/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114337/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114337/forks",
+ "full_name": "OpenSourceBrain/114337",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114337/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114337/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114337/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114337.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114337",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114337/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114337",
+ "id": 741492122,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114337/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114337/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114337/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114337/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114337/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114337/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114337/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114337/milestones{/number}",
+ "mirror_url": null,
+ "name": "114337",
+ "node_id": "R_kgDOLDJFmg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114337/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114337/pulls{/number}",
+ "pushed_at": "2019-05-31T04:30:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114337/releases{/id}",
+ "size": 44,
+ "ssh_url": "git@github.com:OpenSourceBrain/114337.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114337/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114337/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114337/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114337/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114337",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114337/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114337/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114337/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114337",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114342": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114342/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114342/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114342/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114342/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114342.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114342/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114342/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114342/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114342/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114342/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114342/contributors",
+ "created_at": "2024-01-10T14:05:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114342/deployments",
+ "description": "Activity dependent changes in dendritic spine density and spine structure (Crook et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114342/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114342/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114342/forks",
+ "full_name": "OpenSourceBrain/114342",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114342/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114342/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114342/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114342.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114342",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114342/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114342",
+ "id": 741492136,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114342/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114342/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114342/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114342/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114342/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114342/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114342/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114342/milestones{/number}",
+ "mirror_url": null,
+ "name": "114342",
+ "node_id": "R_kgDOLDJFqA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114342/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114342/pulls{/number}",
+ "pushed_at": "2019-05-31T03:32:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114342/releases{/id}",
+ "size": 391,
+ "ssh_url": "git@github.com:OpenSourceBrain/114342.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114342/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114342/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114342/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114342/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114342",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114342/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114342/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114342/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114342",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114355": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114355/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114355/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114355/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114355/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114355.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114355/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114355/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114355/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114355/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114355/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114355/contributors",
+ "created_at": "2024-01-10T14:05:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114355/deployments",
+ "description": "Homeostatic synaptic plasticity (Rabinowitch and Segev 2006a,b)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114355/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114355/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114355/forks",
+ "full_name": "OpenSourceBrain/114355",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114355/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114355/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114355/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114355.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/114355",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114355/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114355",
+ "id": 741492159,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114355/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114355/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114355/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114355/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114355/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114355/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114355/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114355/milestones{/number}",
+ "mirror_url": null,
+ "name": "114355",
+ "node_id": "R_kgDOLDJFvw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114355/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114355/pulls{/number}",
+ "pushed_at": "2018-04-23T17:57:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114355/releases{/id}",
+ "size": 663,
+ "ssh_url": "git@github.com:OpenSourceBrain/114355.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114355/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114355/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114355/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114355/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114355",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114355/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114355/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114355/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114355",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114359": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114359/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114359/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114359/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114359/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114359.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114359/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114359/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114359/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114359/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114359/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114359/contributors",
+ "created_at": "2024-01-10T14:05:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114359/deployments",
+ "description": "Impact of dendritic size and topology on pyramidal cell burst firing (van Elburg and van Ooyen 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114359/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114359/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114359/forks",
+ "full_name": "OpenSourceBrain/114359",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114359/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114359/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114359/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114359.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/114359",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114359/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114359",
+ "id": 741492180,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114359/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114359/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114359/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114359/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114359/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114359/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114359/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114359/milestones{/number}",
+ "mirror_url": null,
+ "name": "114359",
+ "node_id": "R_kgDOLDJF1A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114359/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114359/pulls{/number}",
+ "pushed_at": "2018-04-23T17:57:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114359/releases{/id}",
+ "size": 118,
+ "ssh_url": "git@github.com:OpenSourceBrain/114359.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114359/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114359/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114359/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114359/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114359",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114359/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114359/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114359/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114359",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114365": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114365/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114365/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114365/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114365/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114365.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114365/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114365/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114365/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114365/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114365/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114365/contributors",
+ "created_at": "2024-01-10T14:05:30Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114365/deployments",
+ "description": "An allosteric kinetics of NMDARs in STDP (Urakubo et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114365/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114365/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114365/forks",
+ "full_name": "OpenSourceBrain/114365",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114365/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114365/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114365/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114365.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/114365",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114365/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114365",
+ "id": 741492196,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114365/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114365/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114365/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114365/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114365/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114365/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114365/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114365/milestones{/number}",
+ "mirror_url": null,
+ "name": "114365",
+ "node_id": "R_kgDOLDJF5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114365/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114365/pulls{/number}",
+ "pushed_at": "2023-12-23T03:35:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114365/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/114365.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114365/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114365/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114365/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114365/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114365",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114365/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114365/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114365/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114365",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114394": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114394/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114394/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114394/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114394/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114394.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114394/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114394/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114394/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114394/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114394/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114394/contributors",
+ "created_at": "2024-01-10T14:05:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114394/deployments",
+ "description": "Na+ channel dependence of AP initiation in cortical pyramidal neuron (Kole et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114394/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114394/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114394/forks",
+ "full_name": "OpenSourceBrain/114394",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114394/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114394/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114394/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114394.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114394",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114394/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114394",
+ "id": 741492209,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114394/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114394/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114394/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114394/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114394/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114394/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114394/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114394/milestones{/number}",
+ "mirror_url": null,
+ "name": "114394",
+ "node_id": "R_kgDOLDJF8Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114394/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114394/pulls{/number}",
+ "pushed_at": "2019-05-31T03:27:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114394/releases{/id}",
+ "size": 203,
+ "ssh_url": "git@github.com:OpenSourceBrain/114394.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114394/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114394/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114394/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114394/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114394",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114394/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114394/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114394/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114394",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114424": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114424/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114424/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114424/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114424/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114424.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114424/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114424/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114424/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114424/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114424/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114424/contributors",
+ "created_at": "2024-01-10T14:05:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114424/deployments",
+ "description": "A simplified model of NMDA oscillations in lamprey locomotor neurons (Huss et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114424/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114424/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114424/forks",
+ "full_name": "OpenSourceBrain/114424",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114424/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114424/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114424/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114424.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114424",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114424/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114424",
+ "id": 741492225,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114424/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114424/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114424/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114424/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114424/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114424/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114424/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114424/milestones{/number}",
+ "mirror_url": null,
+ "name": "114424",
+ "node_id": "R_kgDOLDJGAQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114424/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114424/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114424/releases{/id}",
+ "size": 82,
+ "ssh_url": "git@github.com:OpenSourceBrain/114424.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114424/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114424/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114424/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114424/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114424",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114424/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114424/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114424/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114424",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114450": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114450/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114450/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114450/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114450/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114450.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114450/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114450/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114450/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114450/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114450/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114450/contributors",
+ "created_at": "2024-01-10T14:05:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114450/deployments",
+ "description": "Synergistic inhibitory action of oxcarbazepine on INa and IK (Huang et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114450/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114450/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114450/forks",
+ "full_name": "OpenSourceBrain/114450",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114450/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114450/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114450/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114450.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114450",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114450/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114450",
+ "id": 741492240,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114450/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114450/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114450/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114450/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114450/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114450/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114450/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114450/milestones{/number}",
+ "mirror_url": null,
+ "name": "114450",
+ "node_id": "R_kgDOLDJGEA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114450/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114450/pulls{/number}",
+ "pushed_at": "2022-02-18T05:36:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114450/releases{/id}",
+ "size": 48,
+ "ssh_url": "git@github.com:OpenSourceBrain/114450.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114450/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114450/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114450/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114450/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114450",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114450/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114450/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114450/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114450",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114451": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114451/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114451/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114451/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114451/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114451.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114451/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114451/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114451/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114451/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114451/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114451/contributors",
+ "created_at": "2024-01-10T14:05:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114451/deployments",
+ "description": "Efffect of propofol on potassium current in cardiac H9c2 cells (Liu et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114451/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114451/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114451/forks",
+ "full_name": "OpenSourceBrain/114451",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114451/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114451/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114451/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114451.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114451",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114451/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114451",
+ "id": 741492262,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114451/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114451/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114451/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114451/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114451/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114451/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114451/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114451/milestones{/number}",
+ "mirror_url": null,
+ "name": "114451",
+ "node_id": "R_kgDOLDJGJg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114451/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114451/pulls{/number}",
+ "pushed_at": "2022-02-17T05:58:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114451/releases{/id}",
+ "size": 46,
+ "ssh_url": "git@github.com:OpenSourceBrain/114451.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114451/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114451/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114451/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114451/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114451",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114451/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114451/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114451/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114451",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114452": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114452/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114452/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114452/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114452/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114452.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114452/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114452/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114452/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114452/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114452/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114452/contributors",
+ "created_at": "2024-01-10T14:05:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114452/deployments",
+ "description": "CaMKII system exhibiting bistability with respect to calcium (Graupner and Brunel 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114452/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114452/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114452/forks",
+ "full_name": "OpenSourceBrain/114452",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114452/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114452/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114452/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114452.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114452",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114452/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114452",
+ "id": 741492275,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114452/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114452/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114452/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114452/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114452/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114452/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114452/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114452/milestones{/number}",
+ "mirror_url": null,
+ "name": "114452",
+ "node_id": "R_kgDOLDJGMw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114452/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114452/pulls{/number}",
+ "pushed_at": "2019-05-31T04:23:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114452/releases{/id}",
+ "size": 456,
+ "ssh_url": "git@github.com:OpenSourceBrain/114452.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114452/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114452/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114452/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114452/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114452",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114452/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114452/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114452/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114452",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114637": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114637/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114637/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114637/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114637/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114637.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114637/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114637/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114637/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114637/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114637/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114637/contributors",
+ "created_at": "2024-01-10T14:05:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114637/deployments",
+ "description": "Contrast invariance by LGN synaptic depression (Banitt et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114637/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114637/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114637/forks",
+ "full_name": "OpenSourceBrain/114637",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114637/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114637/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114637/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114637.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114637",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114637/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114637",
+ "id": 741492289,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114637/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114637/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114637/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114637/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114637/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114637/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114637/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114637/milestones{/number}",
+ "mirror_url": null,
+ "name": "114637",
+ "node_id": "R_kgDOLDJGQQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114637/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114637/pulls{/number}",
+ "pushed_at": "2019-05-31T03:48:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114637/releases{/id}",
+ "size": 39,
+ "ssh_url": "git@github.com:OpenSourceBrain/114637.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114637/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114637/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114637/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114637/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114637",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114637/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114637/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114637/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114637",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114639": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114639/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114639/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114639/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114639/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114639.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114639/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114639/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114639/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114639/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114639/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114639/contributors",
+ "created_at": "2024-01-10T14:05:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114639/deployments",
+ "description": "Globus pallidus multi-compartmental model neuron with realistic morphology (Gunay et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114639/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114639/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114639/forks",
+ "full_name": "OpenSourceBrain/114639",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114639/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114639/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114639/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114639.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114639",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114639/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114639",
+ "id": 741492317,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114639/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114639/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114639/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114639/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114639/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114639/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114639/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114639/milestones{/number}",
+ "mirror_url": null,
+ "name": "114639",
+ "node_id": "R_kgDOLDJGXQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114639/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114639/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114639/releases{/id}",
+ "size": 611,
+ "ssh_url": "git@github.com:OpenSourceBrain/114639.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114639/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114639/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114639/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114639/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114639",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114639/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114639/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114639/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114639",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114643": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114643/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114643/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114643/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114643/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114643.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114643/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114643/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114643/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114643/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114643/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114643/contributors",
+ "created_at": "2024-01-10T14:05:48Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114643/deployments",
+ "description": "High-Res. Recordings Using a Real-Time Computational Model of the Electrode (Brette et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114643/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114643/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114643/forks",
+ "full_name": "OpenSourceBrain/114643",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114643/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114643/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114643/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114643.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/114643",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114643/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114643",
+ "id": 741492333,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114643/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114643/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114643/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114643/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114643/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114643/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114643/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114643/milestones{/number}",
+ "mirror_url": null,
+ "name": "114643",
+ "node_id": "R_kgDOLDJGbQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114643/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114643/pulls{/number}",
+ "pushed_at": "2023-12-23T03:36:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114643/releases{/id}",
+ "size": 41,
+ "ssh_url": "git@github.com:OpenSourceBrain/114643.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114643/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114643/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114643/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114643/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114643",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114643/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114643/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114643/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114643",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114654": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114654/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114654/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114654/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114654/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114654.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114654/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114654/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114654/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114654/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114654/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114654/contributors",
+ "created_at": "2024-01-10T14:05:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114654/deployments",
+ "description": "Axonal gap junctions produce fast oscillations in cerebellar Purkinje cells (Traub et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114654/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114654/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114654/forks",
+ "full_name": "OpenSourceBrain/114654",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114654/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114654/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114654/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114654.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114654",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114654/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114654",
+ "id": 741492350,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114654/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114654/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114654/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114654/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114654/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114654/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114654/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114654/milestones{/number}",
+ "mirror_url": null,
+ "name": "114654",
+ "node_id": "R_kgDOLDJGfg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114654/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114654/pulls{/number}",
+ "pushed_at": "2019-05-31T05:08:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114654/releases{/id}",
+ "size": 15,
+ "ssh_url": "git@github.com:OpenSourceBrain/114654.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114654/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114654/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114654/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114654/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114654",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114654/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114654/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114654/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:05:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114654",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114655": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114655/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114655/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114655/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114655/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114655.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114655/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114655/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114655/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114655/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114655/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114655/contributors",
+ "created_at": "2024-01-10T14:59:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114655/deployments",
+ "description": "Laminar connectivity matrix simulation (Weiler et al 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114655/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114655/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114655/forks",
+ "full_name": "OpenSourceBrain/114655",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114655/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114655/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114655/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114655.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114655",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114655/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114655",
+ "id": 741515582,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114655/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114655/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114655/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114655/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114655/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114655/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114655/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114655/milestones{/number}",
+ "mirror_url": null,
+ "name": "114655",
+ "node_id": "R_kgDOLDKhPg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114655/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114655/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114655/releases{/id}",
+ "size": 30,
+ "ssh_url": "git@github.com:OpenSourceBrain/114655.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114655/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114655/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114655/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114655/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114655",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114655/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114655/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114655/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114655",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114665": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114665/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114665/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114665/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114665/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114665.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114665/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114665/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114665/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114665/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114665/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114665/contributors",
+ "created_at": "2024-01-10T14:59:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114665/deployments",
+ "description": "Olfactory bulb mitral and granule cell column formation (Migliore et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114665/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114665/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114665/forks",
+ "full_name": "OpenSourceBrain/114665",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114665/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114665/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114665/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114665.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114665",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114665/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114665",
+ "id": 741515593,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114665/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114665/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114665/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114665/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114665/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114665/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114665/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114665/milestones{/number}",
+ "mirror_url": null,
+ "name": "114665",
+ "node_id": "R_kgDOLDKhSQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114665/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114665/pulls{/number}",
+ "pushed_at": "2019-05-31T02:10:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114665/releases{/id}",
+ "size": 3546,
+ "ssh_url": "git@github.com:OpenSourceBrain/114665.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114665/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114665/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114665/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114665/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114665",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114665/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114665/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114665/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114665",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114685": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114685/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114685/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114685/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114685/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114685.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114685/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114685/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114685/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114685/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114685/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114685/contributors",
+ "created_at": "2024-01-10T14:59:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114685/deployments",
+ "description": "GPi/GPe neuron models (Johnson and McIntyre 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114685/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114685/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114685/forks",
+ "full_name": "OpenSourceBrain/114685",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114685/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114685/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114685/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114685.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/114685",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114685/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114685",
+ "id": 741515610,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114685/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114685/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114685/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114685/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114685/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114685/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114685/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114685/milestones{/number}",
+ "mirror_url": null,
+ "name": "114685",
+ "node_id": "R_kgDOLDKhWg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114685/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114685/pulls{/number}",
+ "pushed_at": "2018-04-23T17:58:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114685/releases{/id}",
+ "size": 145,
+ "ssh_url": "git@github.com:OpenSourceBrain/114685.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114685/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114685/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114685/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114685/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114685",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114685/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114685/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114685/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114685",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/114735": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/114735/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/114735/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/114735/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/114735/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/114735.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/114735/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/114735/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/114735/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/114735/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/114735/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/114735/contributors",
+ "created_at": "2024-01-10T14:59:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/114735/deployments",
+ "description": "High frequency oscillations induced in three gap-junction coupled neurons (Tseng et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/114735/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/114735/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/114735/forks",
+ "full_name": "OpenSourceBrain/114735",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/114735/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/114735/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/114735/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/114735.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/114735",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/114735/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/114735",
+ "id": 741515627,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/114735/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/114735/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/114735/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/114735/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/114735/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/114735/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/114735/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/114735/milestones{/number}",
+ "mirror_url": null,
+ "name": "114735",
+ "node_id": "R_kgDOLDKhaw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/114735/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/114735/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/114735/releases{/id}",
+ "size": 158,
+ "ssh_url": "git@github.com:OpenSourceBrain/114735.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/114735/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/114735/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/114735/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/114735/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/114735",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/114735/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/114735/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/114735/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/114735",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/115356": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/115356/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/115356/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/115356/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/115356/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/115356.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/115356/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/115356/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/115356/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/115356/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/115356/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/115356/contributors",
+ "created_at": "2024-01-10T14:59:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/115356/deployments",
+ "description": "Axonal NaV1.6 Sodium Channels in AP Initiation of CA1 Pyramidal Neurons (Royeck et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/115356/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/115356/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/115356/forks",
+ "full_name": "OpenSourceBrain/115356",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/115356/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/115356/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/115356/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/115356.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/115356",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/115356/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/115356",
+ "id": 741515654,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/115356/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/115356/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/115356/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/115356/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/115356/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/115356/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/115356/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/115356/milestones{/number}",
+ "mirror_url": null,
+ "name": "115356",
+ "node_id": "R_kgDOLDKhhg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/115356/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/115356/pulls{/number}",
+ "pushed_at": "2019-05-31T02:32:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/115356/releases{/id}",
+ "size": 44,
+ "ssh_url": "git@github.com:OpenSourceBrain/115356.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/115356/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/115356/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/115356/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/115356/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/115356",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/115356/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/115356/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/115356/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/115356",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/115357": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/115357/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/115357/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/115357/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/115357/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/115357.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/115357/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/115357/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/115357/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/115357/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/115357/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/115357/contributors",
+ "created_at": "2024-01-10T14:59:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/115357/deployments",
+ "description": "Generalized Carnevale-Hines algorithm (van Elburg and van Ooyen 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/115357/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/115357/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/115357/forks",
+ "full_name": "OpenSourceBrain/115357",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/115357/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/115357/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/115357/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/115357.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/115357",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/115357/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/115357",
+ "id": 741515668,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/115357/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/115357/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/115357/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/115357/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/115357/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/115357/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/115357/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/115357/milestones{/number}",
+ "mirror_url": null,
+ "name": "115357",
+ "node_id": "R_kgDOLDKhlA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/115357/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/115357/pulls{/number}",
+ "pushed_at": "2019-05-31T02:37:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/115357/releases{/id}",
+ "size": 45,
+ "ssh_url": "git@github.com:OpenSourceBrain/115357.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/115357/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/115357/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/115357/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/115357/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/115357",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/115357/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/115357/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/115357/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/115357",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/115813": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/115813/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/115813/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/115813/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/115813/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/115813.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/115813/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/115813/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/115813/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/115813/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/115813/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/115813/contributors",
+ "created_at": "2024-01-10T14:59:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/115813/deployments",
+ "description": "Human Attentional Networks: A Connectionist Model (Wang and Fan 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/115813/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/115813/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/115813/forks",
+ "full_name": "OpenSourceBrain/115813",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/115813/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/115813/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/115813/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/115813.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/115813",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/115813/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/115813",
+ "id": 741515728,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/115813/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/115813/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/115813/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/115813/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/115813/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/115813/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/115813/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/115813/milestones{/number}",
+ "mirror_url": null,
+ "name": "115813",
+ "node_id": "R_kgDOLDKh0A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/115813/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/115813/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/115813/releases{/id}",
+ "size": 49,
+ "ssh_url": "git@github.com:OpenSourceBrain/115813.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/115813/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/115813/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/115813/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/115813/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/115813",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/115813/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/115813/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/115813/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/115813",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/115966": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/115966/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/115966/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/115966/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/115966/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/115966.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/115966/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/115966/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/115966/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/115966/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/115966/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/115966/contributors",
+ "created_at": "2024-01-10T14:59:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/115966/deployments",
+ "description": "Neural modeling of an internal clock (Yamazaki and Tanaka 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/115966/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/115966/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/115966/forks",
+ "full_name": "OpenSourceBrain/115966",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/115966/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/115966/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/115966/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/115966.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/115966",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/115966/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/115966",
+ "id": 741515757,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/115966/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/115966/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/115966/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/115966/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/115966/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/115966/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/115966/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/115966/milestones{/number}",
+ "mirror_url": null,
+ "name": "115966",
+ "node_id": "R_kgDOLDKh7Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/115966/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/115966/pulls{/number}",
+ "pushed_at": "2019-05-31T02:50:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/115966/releases{/id}",
+ "size": 171,
+ "ssh_url": "git@github.com:OpenSourceBrain/115966.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/115966/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/115966/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/115966/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/115966/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/115966",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/115966/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/115966/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/115966/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/115966",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/115968": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/115968/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/115968/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/115968/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/115968/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/115968.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/115968/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/115968/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/115968/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/115968/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/115968/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/115968/contributors",
+ "created_at": "2024-01-10T14:59:38Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/115968/deployments",
+ "description": "Polychronization: Computation With Spikes (Izhikevich 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/115968/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/115968/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/115968/forks",
+ "full_name": "OpenSourceBrain/115968",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/115968/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/115968/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/115968/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/115968.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/115968",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/115968/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/115968",
+ "id": 741515770,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/115968/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/115968/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/115968/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/115968/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/115968/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/115968/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/115968/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/115968/milestones{/number}",
+ "mirror_url": null,
+ "name": "115968",
+ "node_id": "R_kgDOLDKh-g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/115968/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/115968/pulls{/number}",
+ "pushed_at": "2023-12-23T03:36:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/115968/releases{/id}",
+ "size": 6150,
+ "ssh_url": "git@github.com:OpenSourceBrain/115968.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/115968/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/115968/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/115968/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/115968/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/115968",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/115968/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/115968/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/115968/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/115968",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116053": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116053/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116053/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116053/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116053/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116053.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116053/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116053/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116053/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116053/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116053/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116053/contributors",
+ "created_at": "2024-01-10T14:59:41Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116053/deployments",
+ "description": "Axonal Projection and Interneuron Types (Helmstaedter et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116053/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116053/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116053/forks",
+ "full_name": "OpenSourceBrain/116053",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116053/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116053/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116053/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116053.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/116053",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116053/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116053",
+ "id": 741515785,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116053/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116053/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116053/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116053/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116053/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116053/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116053/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116053/milestones{/number}",
+ "mirror_url": null,
+ "name": "116053",
+ "node_id": "R_kgDOLDKiCQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116053/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116053/pulls{/number}",
+ "pushed_at": "2023-12-23T03:36:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116053/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/116053.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116053/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116053/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116053/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116053/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116053",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116053/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116053/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116053/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116053",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116084": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116084/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116084/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116084/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116084/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116084.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116084/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116084/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116084/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116084/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116084/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116084/contributors",
+ "created_at": "2024-01-10T14:59:43Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116084/deployments",
+ "description": "CA1 pyramidal neuron synaptic integration (Jarsky et al. 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116084/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116084/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116084/forks",
+ "full_name": "OpenSourceBrain/116084",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116084/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116084/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116084/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116084.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/116084",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116084/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116084",
+ "id": 741515802,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116084/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116084/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116084/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116084/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116084/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116084/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116084/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116084/milestones{/number}",
+ "mirror_url": null,
+ "name": "116084",
+ "node_id": "R_kgDOLDKiGg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116084/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116084/pulls{/number}",
+ "pushed_at": "2023-12-23T03:36:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116084/releases{/id}",
+ "size": 82,
+ "ssh_url": "git@github.com:OpenSourceBrain/116084.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116084/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116084/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116084/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116084/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116084",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116084/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116084/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116084/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116084",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116086": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116086/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116086/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116086/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116086/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116086.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116086/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116086/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116086/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116086/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116086/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116086/contributors",
+ "created_at": "2024-01-10T14:59:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116086/deployments",
+ "description": "Code to calc. spike-trig. ave (STA) conduct. from Vm (Pospischil et al. 2007, Rudolph et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116086/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116086/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116086/forks",
+ "full_name": "OpenSourceBrain/116086",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116086/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116086/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116086/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116086.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116086",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116086/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116086",
+ "id": 741515818,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116086/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116086/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116086/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116086/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116086/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116086/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116086/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116086/milestones{/number}",
+ "mirror_url": null,
+ "name": "116086",
+ "node_id": "R_kgDOLDKiKg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116086/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116086/pulls{/number}",
+ "pushed_at": "2019-05-31T04:49:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116086/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/116086.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116086/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116086/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116086/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116086/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116086",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116086/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116086/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116086/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116086",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116094": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116094/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116094/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116094/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116094/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116094.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116094/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116094/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116094/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116094/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116094/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116094/contributors",
+ "created_at": "2024-01-10T14:59:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116094/deployments",
+ "description": "Lateral dendrodenditic inhibition in the Olfactory Bulb (David et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116094/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116094/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116094/forks",
+ "full_name": "OpenSourceBrain/116094",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116094/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116094/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116094/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116094.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/116094",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116094/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116094",
+ "id": 741515830,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116094/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116094/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116094/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116094/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116094/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116094/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116094/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116094/milestones{/number}",
+ "mirror_url": null,
+ "name": "116094",
+ "node_id": "R_kgDOLDKiNg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116094/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116094/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116094/releases{/id}",
+ "size": 166,
+ "ssh_url": "git@github.com:OpenSourceBrain/116094.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116094/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116094/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116094/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116094/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116094",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116094/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116094/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116094/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116094",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116096": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116096/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116096/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116096/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116096/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116096.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116096/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116096/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116096/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116096/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116096/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116096/contributors",
+ "created_at": "2024-01-10T14:59:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116096/deployments",
+ "description": "Biophysical and phenomenological models of spike-timing dependent plasticity (Badoual et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116096/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116096/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116096/forks",
+ "full_name": "OpenSourceBrain/116096",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116096/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116096/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116096/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116096.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/116096",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116096/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116096",
+ "id": 741515859,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116096/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116096/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116096/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116096/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116096/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116096/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116096/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116096/milestones{/number}",
+ "mirror_url": null,
+ "name": "116096",
+ "node_id": "R_kgDOLDKiUw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116096/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116096/pulls{/number}",
+ "pushed_at": "2018-04-23T18:05:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116096/releases{/id}",
+ "size": 97,
+ "ssh_url": "git@github.com:OpenSourceBrain/116096.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116096/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116096/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116096/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116096/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116096",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116096/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116096/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116096/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116096",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116123": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116123/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116123/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116123/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116123/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116123.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116123/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116123/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116123/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116123/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116123/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116123/contributors",
+ "created_at": "2024-01-10T14:59:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116123/deployments",
+ "description": "Dynamics of Spike Initiation (Prescott et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116123/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116123/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116123/forks",
+ "full_name": "OpenSourceBrain/116123",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116123/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116123/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116123/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116123.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116123",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116123/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116123",
+ "id": 741515875,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116123/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116123/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116123/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116123/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116123/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116123/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116123/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116123/milestones{/number}",
+ "mirror_url": null,
+ "name": "116123",
+ "node_id": "R_kgDOLDKiYw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116123/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116123/pulls{/number}",
+ "pushed_at": "2019-05-31T05:06:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116123/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/116123.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116123/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116123/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116123/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116123/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116123",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116123/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116123/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116123/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116123",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116312": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116312/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116312/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116312/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116312/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116312.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116312/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116312/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116312/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116312/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116312/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116312/contributors",
+ "created_at": "2024-01-10T14:59:55Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116312/deployments",
+ "description": "Multimodal stimuli learning in hawkmoths (Balkenius et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116312/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116312/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116312/forks",
+ "full_name": "OpenSourceBrain/116312",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116312/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116312/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116312/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116312.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/116312",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116312/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116312",
+ "id": 741515897,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116312/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116312/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116312/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116312/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116312/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116312/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116312/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116312/milestones{/number}",
+ "mirror_url": null,
+ "name": "116312",
+ "node_id": "R_kgDOLDKieQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116312/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116312/pulls{/number}",
+ "pushed_at": "2023-12-23T03:36:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116312/releases{/id}",
+ "size": 38,
+ "ssh_url": "git@github.com:OpenSourceBrain/116312.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116312/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116312/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116312/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116312/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116312",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116312/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116312/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116312/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116312",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116313": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116313/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116313/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116313/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116313/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116313.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116313/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116313/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116313/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116313/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116313/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116313/contributors",
+ "created_at": "2024-01-10T14:59:57Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116313/deployments",
+ "description": "A Model of Selection between Stimulus and Place Strategy in a Hawkmoth (Balkenius et al. 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116313/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116313/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116313/forks",
+ "full_name": "OpenSourceBrain/116313",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116313/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116313/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116313/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116313.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/116313",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116313/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116313",
+ "id": 741515910,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116313/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116313/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116313/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116313/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116313/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116313/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116313/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116313/milestones{/number}",
+ "mirror_url": null,
+ "name": "116313",
+ "node_id": "R_kgDOLDKihg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116313/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116313/pulls{/number}",
+ "pushed_at": "2023-12-23T03:37:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116313/releases{/id}",
+ "size": 71,
+ "ssh_url": "git@github.com:OpenSourceBrain/116313.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116313/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116313/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116313/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116313/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116313",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116313/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116313/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116313/git/trees{/sha}",
+ "updated_at": "2024-01-10T14:59:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116313",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116386": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116386/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116386/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116386/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116386/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116386.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116386/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116386/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116386/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116386/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116386/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116386/contributors",
+ "created_at": "2024-01-10T14:59:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116386/deployments",
+ "description": "Pyramidal neurons switch from integrators to resonators (Prescott et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116386/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116386/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116386/forks",
+ "full_name": "OpenSourceBrain/116386",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116386/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116386/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116386/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116386.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116386",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116386/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116386",
+ "id": 741515923,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116386/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116386/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116386/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116386/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116386/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116386/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116386/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116386/milestones{/number}",
+ "mirror_url": null,
+ "name": "116386",
+ "node_id": "R_kgDOLDKikw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116386/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116386/pulls{/number}",
+ "pushed_at": "2019-05-31T03:36:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116386/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/116386.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116386/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116386/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116386/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116386/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116386",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116386/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116386/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116386/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116386",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116491": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116491/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116491/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116491/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116491/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116491.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116491/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116491/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116491/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116491/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116491/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116491/contributors",
+ "created_at": "2024-01-10T15:00:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116491/deployments",
+ "description": "NEURON + Python (Hines et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116491/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116491/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116491/forks",
+ "full_name": "OpenSourceBrain/116491",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116491/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116491/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116491/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116491.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116491",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116491/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116491",
+ "id": 741515936,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116491/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116491/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116491/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116491/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116491/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116491/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116491/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116491/milestones{/number}",
+ "mirror_url": null,
+ "name": "116491",
+ "node_id": "R_kgDOLDKioA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116491/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116491/pulls{/number}",
+ "pushed_at": "2019-05-31T05:06:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116491/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/116491.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116491/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116491/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116491/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116491/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116491",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116491/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116491/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116491/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116491",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116567": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116567/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116567/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116567/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116567/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116567.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116567/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116567/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116567/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116567/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116567/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116567/contributors",
+ "created_at": "2024-01-10T15:00:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116567/deployments",
+ "description": "Modulation of septo-hippocampal theta activity by GABAA receptors (Hajos et al. 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116567/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116567/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116567/forks",
+ "full_name": "OpenSourceBrain/116567",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116567/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116567/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116567/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116567.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116567",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116567/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116567",
+ "id": 741515951,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116567/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116567/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116567/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116567/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116567/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116567/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116567/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116567/milestones{/number}",
+ "mirror_url": null,
+ "name": "116567",
+ "node_id": "R_kgDOLDKirw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116567/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116567/pulls{/number}",
+ "pushed_at": "2019-05-31T03:14:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116567/releases{/id}",
+ "size": 90,
+ "ssh_url": "git@github.com:OpenSourceBrain/116567.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116567/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116567/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116567/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116567/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116567",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116567/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116567/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116567/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116567",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116575": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116575/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116575/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116575/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116575/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116575.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116575/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116575/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116575/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116575/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116575/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116575/contributors",
+ "created_at": "2024-01-10T15:00:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116575/deployments",
+ "description": "A Model of Multiple Spike Initiation Zones in the Leech C-interneuron (Crisp 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116575/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116575/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116575/forks",
+ "full_name": "OpenSourceBrain/116575",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116575/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116575/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116575/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116575.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116575",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116575/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116575",
+ "id": 741515975,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116575/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116575/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116575/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116575/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116575/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116575/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116575/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116575/milestones{/number}",
+ "mirror_url": null,
+ "name": "116575",
+ "node_id": "R_kgDOLDKixw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116575/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116575/pulls{/number}",
+ "pushed_at": "2019-05-31T02:51:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116575/releases{/id}",
+ "size": 811,
+ "ssh_url": "git@github.com:OpenSourceBrain/116575.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116575/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116575/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116575/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116575/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116575",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116575/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116575/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116575/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116575",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116606": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116606/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116606/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116606/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116606/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116606.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116606/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116606/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116606/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116606/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116606/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116606/contributors",
+ "created_at": "2024-01-10T15:00:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116606/deployments",
+ "description": "Currents contributing to decision making in neurons B31-B32 of Aplysia (Hurwitz et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116606/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116606/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116606/forks",
+ "full_name": "OpenSourceBrain/116606",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116606/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116606/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116606/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116606.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116606",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116606/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116606",
+ "id": 741515994,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116606/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116606/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116606/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116606/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116606/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116606/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116606/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116606/milestones{/number}",
+ "mirror_url": null,
+ "name": "116606",
+ "node_id": "R_kgDOLDKi2g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116606/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116606/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116606/releases{/id}",
+ "size": 103,
+ "ssh_url": "git@github.com:OpenSourceBrain/116606.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116606/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116606/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116606/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116606/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116606",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116606/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116606/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116606/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116606",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116740": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116740/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116740/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116740/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116740/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116740.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116740/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116740/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116740/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116740/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116740/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116740/contributors",
+ "created_at": "2024-01-10T15:00:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116740/deployments",
+ "description": "Dentate gyrus granule cell: calcium and calcium-dependent conductances (Aradi and Holmes 1999)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116740/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116740/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116740/forks",
+ "full_name": "OpenSourceBrain/116740",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116740/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116740/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116740/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116740.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116740",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116740/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116740",
+ "id": 741516017,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116740/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116740/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116740/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116740/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116740/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116740/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116740/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116740/milestones{/number}",
+ "mirror_url": null,
+ "name": "116740",
+ "node_id": "R_kgDOLDKi8Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116740/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116740/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116740/releases{/id}",
+ "size": 19,
+ "ssh_url": "git@github.com:OpenSourceBrain/116740.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116740/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116740/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116740/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116740/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116740",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116740/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116740/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116740/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116740",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116769": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116769/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116769/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116769/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116769/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116769.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116769/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116769/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116769/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116769/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116769/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116769/contributors",
+ "created_at": "2024-01-10T15:00:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116769/deployments",
+ "description": "Spine neck plasticity controls postsynaptic calcium signals (Grunditz et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116769/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116769/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116769/forks",
+ "full_name": "OpenSourceBrain/116769",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116769/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116769/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116769/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116769.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116769",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116769/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116769",
+ "id": 741516040,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116769/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116769/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116769/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116769/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116769/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116769/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116769/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116769/milestones{/number}",
+ "mirror_url": null,
+ "name": "116769",
+ "node_id": "R_kgDOLDKjCA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116769/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116769/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116769/releases{/id}",
+ "size": 146,
+ "ssh_url": "git@github.com:OpenSourceBrain/116769.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116769/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116769/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116769/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116769/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116769",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116769/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116769/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116769/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116769",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116806": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116806/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116806/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116806/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116806/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116806.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116806/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116806/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116806/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116806/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116806/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116806/contributors",
+ "created_at": "2024-01-10T15:00:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116806/deployments",
+ "description": "Robust Reservoir Generation by Correlation-Based Learning (Yamazaki & Tanaka 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116806/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116806/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116806/forks",
+ "full_name": "OpenSourceBrain/116806",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116806/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116806/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116806/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116806.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116806",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116806/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116806",
+ "id": 741516057,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116806/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116806/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116806/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116806/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116806/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116806/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116806/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116806/milestones{/number}",
+ "mirror_url": null,
+ "name": "116806",
+ "node_id": "R_kgDOLDKjGQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116806/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116806/pulls{/number}",
+ "pushed_at": "2019-05-31T03:35:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116806/releases{/id}",
+ "size": 14,
+ "ssh_url": "git@github.com:OpenSourceBrain/116806.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116806/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116806/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116806/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116806/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116806",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116806/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116806/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116806/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116806",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116830": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116830/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116830/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116830/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116830/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116830.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116830/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116830/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116830/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116830/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116830/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116830/contributors",
+ "created_at": "2024-01-10T15:00:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116830/deployments",
+ "description": "Broadening of activity with flow across neural structures (Lytton et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116830/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116830/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116830/forks",
+ "full_name": "OpenSourceBrain/116830",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116830/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116830/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116830/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116830.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/116830",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116830/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116830",
+ "id": 741516081,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116830/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116830/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116830/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116830/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116830/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116830/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116830/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116830/milestones{/number}",
+ "mirror_url": null,
+ "name": "116830",
+ "node_id": "R_kgDOLDKjMQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116830/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116830/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116830/releases{/id}",
+ "size": 169,
+ "ssh_url": "git@github.com:OpenSourceBrain/116830.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116830/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116830/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116830/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116830/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116830",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116830/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116830/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116830/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116830",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116835": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116835/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116835/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116835/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116835/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116835.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116835/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116835/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116835/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116835/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116835/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116835/contributors",
+ "created_at": "2024-01-10T15:00:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116835/deployments",
+ "description": "Multicompartmental cerebellar granule cell model (Diwakar et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116835/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116835/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116835/forks",
+ "full_name": "OpenSourceBrain/116835",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116835/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116835/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116835/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116835.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116835",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116835/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116835",
+ "id": 741516105,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116835/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116835/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116835/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116835/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116835/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116835/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116835/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116835/milestones{/number}",
+ "mirror_url": null,
+ "name": "116835",
+ "node_id": "R_kgDOLDKjSQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116835/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116835/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116835/releases{/id}",
+ "size": 1650,
+ "ssh_url": "git@github.com:OpenSourceBrain/116835.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116835/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116835/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116835/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116835/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116835",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116835/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116835/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116835/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116835",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116837": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116837/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116837/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116837/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116837/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116837.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116837/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116837/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116837/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116837/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116837/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116837/contributors",
+ "created_at": "2024-01-10T15:00:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116837/deployments",
+ "description": "Reward modulated STDP (Legenstein et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116837/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116837/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116837/forks",
+ "full_name": "OpenSourceBrain/116837",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116837/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116837/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116837/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116837.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116837",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116837/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116837",
+ "id": 741516123,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116837/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116837/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116837/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116837/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116837/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116837/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116837/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116837/milestones{/number}",
+ "mirror_url": null,
+ "name": "116837",
+ "node_id": "R_kgDOLDKjWw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116837/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116837/pulls{/number}",
+ "pushed_at": "2019-05-31T03:18:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116837/releases{/id}",
+ "size": 4802,
+ "ssh_url": "git@github.com:OpenSourceBrain/116837.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116837/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116837/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116837/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116837/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116837",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116837/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116837/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116837/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116837",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116838": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116838/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116838/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116838/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116838/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116838.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116838/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116838/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116838/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116838/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116838/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116838/contributors",
+ "created_at": "2024-01-10T15:00:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116838/deployments",
+ "description": "The virtual slice setup (Lytton et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116838/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116838/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116838/forks",
+ "full_name": "OpenSourceBrain/116838",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116838/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116838/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116838/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116838.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/116838",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116838/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116838",
+ "id": 741516137,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116838/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116838/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116838/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116838/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116838/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116838/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116838/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116838/milestones{/number}",
+ "mirror_url": null,
+ "name": "116838",
+ "node_id": "R_kgDOLDKjaQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116838/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116838/pulls{/number}",
+ "pushed_at": "2023-04-30T19:19:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116838/releases{/id}",
+ "size": 471,
+ "ssh_url": "git@github.com:OpenSourceBrain/116838.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116838/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116838/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116838/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116838/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116838",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116838/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116838/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116838/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116838",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116862": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116862/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116862/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116862/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116862/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116862.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116862/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116862/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116862/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116862/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116862/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116862/contributors",
+ "created_at": "2024-01-10T15:00:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116862/deployments",
+ "description": "Thalamic interneuron multicompartment model (Zhu et al. 1999)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116862/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116862/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116862/forks",
+ "full_name": "OpenSourceBrain/116862",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116862/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116862/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116862/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116862.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/116862",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116862/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116862",
+ "id": 741516153,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116862/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116862/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116862/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116862/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116862/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116862/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116862/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116862/milestones{/number}",
+ "mirror_url": null,
+ "name": "116862",
+ "node_id": "R_kgDOLDKjeQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116862/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116862/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116862/releases{/id}",
+ "size": 174,
+ "ssh_url": "git@github.com:OpenSourceBrain/116862.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116862/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116862/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116862/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116862/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116862",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116862/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116862/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116862/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116862",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116867": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116867/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116867/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116867/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116867/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116867.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116867/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116867/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116867/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116867/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116867/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116867/contributors",
+ "created_at": "2024-01-10T15:00:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116867/deployments",
+ "description": "High frequency stimulation of the Subthalamic Nucleus (Rubin and Terman 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116867/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116867/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116867/forks",
+ "full_name": "OpenSourceBrain/116867",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116867/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116867/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116867/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116867.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116867",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116867/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116867",
+ "id": 741516171,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116867/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116867/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116867/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116867/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116867/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116867/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116867/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116867/milestones{/number}",
+ "mirror_url": null,
+ "name": "116867",
+ "node_id": "R_kgDOLDKjiw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116867/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116867/pulls{/number}",
+ "pushed_at": "2019-05-31T04:27:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116867/releases{/id}",
+ "size": 70,
+ "ssh_url": "git@github.com:OpenSourceBrain/116867.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116867/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116867/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116867/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116867/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116867",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116867/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116867/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116867/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116867",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116870": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116870/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116870/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116870/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116870/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116870.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116870/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116870/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116870/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116870/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116870/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116870/contributors",
+ "created_at": "2024-01-10T15:00:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116870/deployments",
+ "description": "Python demo of the VmT method to extract conductances from single Vm traces (Pospischil et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116870/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116870/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116870/forks",
+ "full_name": "OpenSourceBrain/116870",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116870/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116870/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116870/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116870.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116870",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116870/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116870",
+ "id": 741516178,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116870/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116870/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116870/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116870/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116870/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116870/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116870/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116870/milestones{/number}",
+ "mirror_url": null,
+ "name": "116870",
+ "node_id": "R_kgDOLDKjkg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116870/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116870/pulls{/number}",
+ "pushed_at": "2019-05-31T04:35:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116870/releases{/id}",
+ "size": 1497,
+ "ssh_url": "git@github.com:OpenSourceBrain/116870.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116870/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116870/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116870/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116870/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116870",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116870/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116870/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116870/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116870",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116871": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116871/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116871/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116871/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116871/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116871.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116871/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116871/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116871/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116871/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116871/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116871/contributors",
+ "created_at": "2024-01-10T15:00:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116871/deployments",
+ "description": "A spiking model of cortical broadcast and competition (Shanahan 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116871/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116871/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116871/forks",
+ "full_name": "OpenSourceBrain/116871",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116871/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116871/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116871/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116871.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116871",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116871/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116871",
+ "id": 741516201,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116871/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116871/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116871/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116871/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116871/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116871/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116871/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116871/milestones{/number}",
+ "mirror_url": null,
+ "name": "116871",
+ "node_id": "R_kgDOLDKjqQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116871/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116871/pulls{/number}",
+ "pushed_at": "2019-05-31T04:33:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116871/releases{/id}",
+ "size": 172,
+ "ssh_url": "git@github.com:OpenSourceBrain/116871.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116871/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116871/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116871/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116871/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116871",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116871/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116871/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116871/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116871",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116901": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116901/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116901/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116901/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116901/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116901.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116901/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116901/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116901/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116901/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116901/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116901/contributors",
+ "created_at": "2024-01-10T15:00:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116901/deployments",
+ "description": "Synaptic plasticity can produce and enhance direction selectivity (Carver et al, 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116901/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116901/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116901/forks",
+ "full_name": "OpenSourceBrain/116901",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116901/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116901/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116901/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116901.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116901",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116901/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116901",
+ "id": 741516212,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116901/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116901/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116901/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116901/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116901/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116901/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116901/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116901/milestones{/number}",
+ "mirror_url": null,
+ "name": "116901",
+ "node_id": "R_kgDOLDKjtA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116901/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116901/pulls{/number}",
+ "pushed_at": "2019-05-31T04:57:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116901/releases{/id}",
+ "size": 91,
+ "ssh_url": "git@github.com:OpenSourceBrain/116901.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116901/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116901/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116901/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116901/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116901",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116901/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116901/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116901/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116901",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116945": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116945/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116945/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116945/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116945/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116945.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116945/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116945/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116945/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116945/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116945/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116945/contributors",
+ "created_at": "2024-01-10T15:00:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116945/deployments",
+ "description": "Spike frequency adaptation in the LGMD (Peron and Gabbiani 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116945/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116945/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116945/forks",
+ "full_name": "OpenSourceBrain/116945",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116945/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116945/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116945/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116945.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116945",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116945/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116945",
+ "id": 741516239,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116945/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116945/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116945/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116945/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116945/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116945/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116945/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116945/milestones{/number}",
+ "mirror_url": null,
+ "name": "116945",
+ "node_id": "R_kgDOLDKjzw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116945/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116945/pulls{/number}",
+ "pushed_at": "2019-05-31T02:55:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116945/releases{/id}",
+ "size": 239,
+ "ssh_url": "git@github.com:OpenSourceBrain/116945.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116945/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116945/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116945/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116945/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116945",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116945/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116945/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116945/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116945",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116956": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116956/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116956/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116956/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116956/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116956.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116956/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116956/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116956/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116956/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116956/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116956/contributors",
+ "created_at": "2024-01-10T15:00:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116956/deployments",
+ "description": "Fly lobular plate VS cell (Borst and Haag 1996, et al. 1997, et al. 1999)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116956/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116956/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116956/forks",
+ "full_name": "OpenSourceBrain/116956",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116956/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116956/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116956/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116956.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116956",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116956/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116956",
+ "id": 741516252,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116956/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116956/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116956/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116956/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116956/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116956/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116956/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116956/milestones{/number}",
+ "mirror_url": null,
+ "name": "116956",
+ "node_id": "R_kgDOLDKj3A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116956/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116956/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116956/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/116956.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116956/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116956/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116956/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116956/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116956",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116956/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116956/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116956/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116956",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116957": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116957/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116957/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116957/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116957/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116957.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116957/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116957/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116957/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116957/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116957/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116957/contributors",
+ "created_at": "2024-01-10T15:00:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116957/deployments",
+ "description": "Data-driven, HH-type model of the lateral pyloric (LP) cell in the STG (Nowotny et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116957/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116957/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116957/forks",
+ "full_name": "OpenSourceBrain/116957",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116957/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116957/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116957/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116957.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116957",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116957/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116957",
+ "id": 741516271,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116957/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116957/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116957/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116957/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116957/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116957/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116957/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116957/milestones{/number}",
+ "mirror_url": null,
+ "name": "116957",
+ "node_id": "R_kgDOLDKj7w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116957/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116957/pulls{/number}",
+ "pushed_at": "2019-05-31T03:19:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116957/releases{/id}",
+ "size": 14,
+ "ssh_url": "git@github.com:OpenSourceBrain/116957.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116957/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116957/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116957/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116957/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116957",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116957/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116957/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116957/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116957",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116981": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116981/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116981/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116981/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116981/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116981.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116981/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116981/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116981/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116981/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116981/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116981/contributors",
+ "created_at": "2024-01-10T15:00:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116981/deployments",
+ "description": "Effects of synaptic location and timing on synaptic integration (Rall 1964)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116981/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116981/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116981/forks",
+ "full_name": "OpenSourceBrain/116981",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116981/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116981/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116981/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116981.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116981",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116981/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116981",
+ "id": 741516293,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116981/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116981/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116981/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116981/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116981/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116981/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116981/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116981/milestones{/number}",
+ "mirror_url": null,
+ "name": "116981",
+ "node_id": "R_kgDOLDKkBQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116981/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116981/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116981/releases{/id}",
+ "size": 26,
+ "ssh_url": "git@github.com:OpenSourceBrain/116981.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116981/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116981/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116981/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116981/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116981",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116981/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116981/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116981/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116981",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/116983": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/116983/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/116983/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/116983/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/116983/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/116983.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/116983/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/116983/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/116983/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/116983/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/116983/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/116983/contributors",
+ "created_at": "2024-01-10T15:00:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/116983/deployments",
+ "description": "CA1 pyramidal neuron: h channel-dependent deficit of theta oscill. resonance (Marcelin et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/116983/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/116983/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/116983/forks",
+ "full_name": "OpenSourceBrain/116983",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/116983/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/116983/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/116983/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/116983.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/116983",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/116983/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/116983",
+ "id": 741516310,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/116983/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/116983/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/116983/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/116983/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/116983/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/116983/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/116983/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/116983/milestones{/number}",
+ "mirror_url": null,
+ "name": "116983",
+ "node_id": "R_kgDOLDKkFg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/116983/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/116983/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/116983/releases{/id}",
+ "size": 407,
+ "ssh_url": "git@github.com:OpenSourceBrain/116983.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/116983/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/116983/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/116983/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/116983/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/116983",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/116983/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/116983/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/116983/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/116983",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117204": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117204/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117204/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117204/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117204/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117204.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117204/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117204/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117204/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117204/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117204/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117204/contributors",
+ "created_at": "2024-01-10T15:00:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117204/deployments",
+ "description": "Working memory circuit with branched dendrites (Morita 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117204/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117204/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117204/forks",
+ "full_name": "OpenSourceBrain/117204",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117204/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117204/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117204/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117204.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/117204",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117204/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117204",
+ "id": 741516326,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117204/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117204/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117204/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117204/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117204/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117204/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117204/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117204/milestones{/number}",
+ "mirror_url": null,
+ "name": "117204",
+ "node_id": "R_kgDOLDKkJg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117204/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117204/pulls{/number}",
+ "pushed_at": "2019-05-31T04:28:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117204/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/117204.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117204/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117204/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117204/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117204/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117204",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117204/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117204/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117204/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117204",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117207": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117207/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117207/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117207/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117207/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117207.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117207/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117207/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117207/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117207/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117207/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117207/contributors",
+ "created_at": "2024-01-10T15:00:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117207/deployments",
+ "description": "Excitability of PFC Basal Dendrites (Acker and Antic 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117207/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117207/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117207/forks",
+ "full_name": "OpenSourceBrain/117207",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117207/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117207/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117207/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117207.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/117207",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117207/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117207",
+ "id": 741516353,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117207/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117207/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117207/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117207/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117207/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117207/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117207/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117207/milestones{/number}",
+ "mirror_url": null,
+ "name": "117207",
+ "node_id": "R_kgDOLDKkQQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117207/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117207/pulls{/number}",
+ "pushed_at": "2018-04-23T18:09:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117207/releases{/id}",
+ "size": 85,
+ "ssh_url": "git@github.com:OpenSourceBrain/117207.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117207/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117207/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117207/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117207/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117207",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117207/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117207/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117207/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117207",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117330": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117330/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117330/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117330/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117330/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117330.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117330/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117330/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117330/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117330/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117330/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117330/contributors",
+ "created_at": "2024-01-10T15:00:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117330/deployments",
+ "description": "Hodgkin-Huxley simplifed 2D and 3D models (Lundstrom et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117330/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117330/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117330/forks",
+ "full_name": "OpenSourceBrain/117330",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117330/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117330/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117330/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117330.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/117330",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117330/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117330",
+ "id": 741516365,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117330/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117330/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117330/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117330/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117330/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117330/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117330/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117330/milestones{/number}",
+ "mirror_url": null,
+ "name": "117330",
+ "node_id": "R_kgDOLDKkTQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117330/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117330/pulls{/number}",
+ "pushed_at": "2022-02-17T06:00:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117330/releases{/id}",
+ "size": 91,
+ "ssh_url": "git@github.com:OpenSourceBrain/117330.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117330/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117330/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117330/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117330/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117330",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117330/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117330/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117330/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117330",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117351": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117351/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117351/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117351/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117351/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117351.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117351/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117351/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117351/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117351/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117351/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117351/contributors",
+ "created_at": "2024-01-10T15:00:59Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117351/deployments",
+ "description": "Quantal neurotransmitter release kinetics with fixed and mobile Ca2+ buffers (Gilmanov et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117351/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117351/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117351/forks",
+ "full_name": "OpenSourceBrain/117351",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117351/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117351/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117351/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117351.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/117351",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117351/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117351",
+ "id": 741516382,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117351/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117351/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117351/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117351/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117351/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117351/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117351/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117351/milestones{/number}",
+ "mirror_url": null,
+ "name": "117351",
+ "node_id": "R_kgDOLDKkXg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117351/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117351/pulls{/number}",
+ "pushed_at": "2023-12-23T03:37:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117351/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/117351.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117351/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117351/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117351/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117351/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117351",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117351/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117351/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117351/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:00:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117351",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117361": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117361/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117361/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117361/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117361/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117361.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117361/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117361/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117361/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117361/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117361/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117361/contributors",
+ "created_at": "2024-01-10T15:01:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117361/deployments",
+ "description": "Numerical Integration of Izhikevich and HH model neurons (Stewart and Bair 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117361/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117361/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117361/forks",
+ "full_name": "OpenSourceBrain/117361",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117361/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117361/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117361/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117361.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/117361",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117361/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117361",
+ "id": 741516404,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117361/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117361/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117361/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117361/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117361/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117361/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117361/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117361/milestones{/number}",
+ "mirror_url": null,
+ "name": "117361",
+ "node_id": "R_kgDOLDKkdA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117361/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117361/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117361/releases{/id}",
+ "size": 1884,
+ "ssh_url": "git@github.com:OpenSourceBrain/117361.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117361/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117361/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117361/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117361/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117361",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117361/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117361/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117361/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117361",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117459": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117459/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117459/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117459/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117459/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117459.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117459/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117459/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117459/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117459/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117459/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117459/contributors",
+ "created_at": "2024-01-10T15:01:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117459/deployments",
+ "description": "Competition for AP initiation sites in a circuit controlling simple learning (Cruz et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117459/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117459/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117459/forks",
+ "full_name": "OpenSourceBrain/117459",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117459/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117459/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117459/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117459.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/117459",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117459/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117459",
+ "id": 741516424,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117459/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117459/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117459/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117459/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117459/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117459/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117459/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117459/milestones{/number}",
+ "mirror_url": null,
+ "name": "117459",
+ "node_id": "R_kgDOLDKkiA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117459/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117459/pulls{/number}",
+ "pushed_at": "2019-05-31T03:44:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117459/releases{/id}",
+ "size": 26,
+ "ssh_url": "git@github.com:OpenSourceBrain/117459.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117459/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117459/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117459/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117459/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117459",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117459/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117459/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117459/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117459",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117508": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117508/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117508/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117508/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117508/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117508.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117508/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117508/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117508/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117508/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117508/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117508/contributors",
+ "created_at": "2024-01-10T15:01:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117508/deployments",
+ "description": "Rat alpha7 nAChR desensitization is modulated by W55 (Gay et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117508/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117508/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117508/forks",
+ "full_name": "OpenSourceBrain/117508",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117508/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117508/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117508/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117508.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/117508",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117508/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117508",
+ "id": 741516443,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117508/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117508/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117508/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117508/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117508/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117508/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117508/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117508/milestones{/number}",
+ "mirror_url": null,
+ "name": "117508",
+ "node_id": "R_kgDOLDKkmw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117508/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117508/pulls{/number}",
+ "pushed_at": "2019-05-31T02:55:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117508/releases{/id}",
+ "size": 33,
+ "ssh_url": "git@github.com:OpenSourceBrain/117508.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117508/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117508/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117508/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117508/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117508",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117508/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117508/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117508/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117508",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117514": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117514/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117514/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117514/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117514/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117514.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117514/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117514/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117514/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117514/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117514/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117514/contributors",
+ "created_at": "2024-01-10T15:01:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117514/deployments",
+ "description": "Reverse-time correlation analysis for idealized orientation tuning dynamics (Kovacic et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117514/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117514/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117514/forks",
+ "full_name": "OpenSourceBrain/117514",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117514/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117514/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117514/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117514.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/117514",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117514/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117514",
+ "id": 741516457,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117514/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117514/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117514/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117514/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117514/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117514/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117514/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117514/milestones{/number}",
+ "mirror_url": null,
+ "name": "117514",
+ "node_id": "R_kgDOLDKkqQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117514/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117514/pulls{/number}",
+ "pushed_at": "2019-05-31T03:29:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117514/releases{/id}",
+ "size": 128,
+ "ssh_url": "git@github.com:OpenSourceBrain/117514.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117514/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117514/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117514/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117514/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117514",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117514/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117514/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117514/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117514",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117691": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117691/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117691/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117691/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117691/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117691.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117691/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117691/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117691/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117691/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117691/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117691/contributors",
+ "created_at": "2024-01-10T15:01:10Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117691/deployments",
+ "description": "Experimental and modeling studies of desensitization of P2X3 receptors (Sokolova et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117691/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117691/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117691/forks",
+ "full_name": "OpenSourceBrain/117691",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117691/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117691/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117691/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117691.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/117691",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117691/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117691",
+ "id": 741516476,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117691/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117691/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117691/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117691/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117691/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117691/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117691/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117691/milestones{/number}",
+ "mirror_url": null,
+ "name": "117691",
+ "node_id": "R_kgDOLDKkvA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117691/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117691/pulls{/number}",
+ "pushed_at": "2019-05-31T03:20:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117691/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/117691.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117691/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117691/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117691/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117691/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117691",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117691/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117691/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117691/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117691",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117810": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117810/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117810/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117810/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117810/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117810.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117810/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117810/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117810/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117810/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117810/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117810/contributors",
+ "created_at": "2024-01-10T15:01:13Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117810/deployments",
+ "description": "Simulation system of spinal cord motor nuclei and assoc. nerves and muscles (Cisi and Kohn 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117810/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117810/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117810/forks",
+ "full_name": "OpenSourceBrain/117810",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117810/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117810/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117810/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117810.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/117810",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117810/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117810",
+ "id": 741516492,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117810/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117810/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117810/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117810/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117810/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117810/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117810/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117810/milestones{/number}",
+ "mirror_url": null,
+ "name": "117810",
+ "node_id": "R_kgDOLDKkzA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117810/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117810/pulls{/number}",
+ "pushed_at": "2023-12-23T03:37:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117810/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/117810.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117810/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117810/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117810/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117810/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117810",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117810/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117810/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117810/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117810",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/117966": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/117966/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/117966/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/117966/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/117966/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/117966.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/117966/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/117966/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/117966/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/117966/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/117966/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/117966/contributors",
+ "created_at": "2024-01-10T15:01:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/117966/deployments",
+ "description": "Spike Response Model simulator (Jolivet et al. 2004, 2006, 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/117966/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/117966/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/117966/forks",
+ "full_name": "OpenSourceBrain/117966",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/117966/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/117966/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/117966/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/117966.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/117966",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/117966/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/117966",
+ "id": 741516510,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/117966/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/117966/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/117966/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/117966/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/117966/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/117966/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/117966/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/117966/milestones{/number}",
+ "mirror_url": null,
+ "name": "117966",
+ "node_id": "R_kgDOLDKk3g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/117966/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/117966/pulls{/number}",
+ "pushed_at": "2019-05-31T02:15:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/117966/releases{/id}",
+ "size": 7623,
+ "ssh_url": "git@github.com:OpenSourceBrain/117966.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/117966/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/117966/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/117966/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/117966/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/117966",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/117966/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/117966/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/117966/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/117966",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118014": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118014/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118014/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118014/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118014/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118014.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118014/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118014/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118014/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118014/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118014/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118014/contributors",
+ "created_at": "2024-01-10T15:01:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118014/deployments",
+ "description": "Roles of I(A) and morphology in AP prop. in CA1 pyramidal cell dendrites (Acker and White 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118014/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118014/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118014/forks",
+ "full_name": "OpenSourceBrain/118014",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118014/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118014/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118014/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118014.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118014",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118014/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118014",
+ "id": 741516531,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118014/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118014/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118014/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118014/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118014/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118014/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118014/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118014/milestones{/number}",
+ "mirror_url": null,
+ "name": "118014",
+ "node_id": "R_kgDOLDKk8w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118014/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118014/pulls{/number}",
+ "pushed_at": "2022-02-18T16:02:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118014/releases{/id}",
+ "size": 179,
+ "ssh_url": "git@github.com:OpenSourceBrain/118014.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118014/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118014/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118014/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118014/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118014",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118014/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118014/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118014/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118014",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118020": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118020/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118020/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118020/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118020/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118020.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118020/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118020/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118020/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118020/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118020/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118020/contributors",
+ "created_at": "2024-01-10T15:01:20Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118020/deployments",
+ "description": "Reduction of nonlinear ODE systems possessing multiple scales (Clewley et al. 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118020/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118020/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118020/forks",
+ "full_name": "OpenSourceBrain/118020",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118020/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118020/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118020/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118020.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/118020",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118020/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118020",
+ "id": 741516546,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118020/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118020/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118020/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118020/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118020/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118020/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118020/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118020/milestones{/number}",
+ "mirror_url": null,
+ "name": "118020",
+ "node_id": "R_kgDOLDKlAg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118020/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118020/pulls{/number}",
+ "pushed_at": "2023-12-23T03:37:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118020/releases{/id}",
+ "size": 33,
+ "ssh_url": "git@github.com:OpenSourceBrain/118020.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118020/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118020/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118020/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118020/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118020",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118020/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118020/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118020/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118020",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118092": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118092/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118092/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118092/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118092/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118092.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118092/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118092/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118092/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118092/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118092/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118092/contributors",
+ "created_at": "2024-01-10T15:01:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118092/deployments",
+ "description": "A model of the femur-tibia control system in stick insects (Stein et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118092/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118092/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118092/forks",
+ "full_name": "OpenSourceBrain/118092",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118092/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118092/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118092/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118092.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118092",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118092/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118092",
+ "id": 741516562,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118092/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118092/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118092/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118092/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118092/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118092/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118092/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118092/milestones{/number}",
+ "mirror_url": null,
+ "name": "118092",
+ "node_id": "R_kgDOLDKlEg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118092/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118092/pulls{/number}",
+ "pushed_at": "2019-05-31T04:57:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118092/releases{/id}",
+ "size": 1312,
+ "ssh_url": "git@github.com:OpenSourceBrain/118092.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118092/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118092/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118092/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118092/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118092",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118092/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118092/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118092/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118092",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118098": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118098/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118098/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118098/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118098/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118098.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118098/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118098/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118098/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118098/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118098/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118098/contributors",
+ "created_at": "2024-01-10T15:01:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118098/deployments",
+ "description": "Ca3 pyramidal neuron: membrane response near rest (Hemond et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118098/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118098/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118098/forks",
+ "full_name": "OpenSourceBrain/118098",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118098/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118098/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118098/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118098.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118098",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118098/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118098",
+ "id": 741516581,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118098/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118098/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118098/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118098/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118098/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118098/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118098/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118098/milestones{/number}",
+ "mirror_url": null,
+ "name": "118098",
+ "node_id": "R_kgDOLDKlJQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118098/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118098/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118098/releases{/id}",
+ "size": 17,
+ "ssh_url": "git@github.com:OpenSourceBrain/118098.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118098/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118098/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118098/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118098/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118098",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118098/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118098/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118098/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118098",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118195": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118195/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118195/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118195/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118195/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118195.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118195/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118195/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118195/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118195/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118195/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118195/contributors",
+ "created_at": "2024-01-10T15:01:27Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118195/deployments",
+ "description": "Evaluation of stochastic diff. eq. approximation of ion channel gating models (Bruce 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118195/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118195/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118195/forks",
+ "full_name": "OpenSourceBrain/118195",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118195/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118195/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118195/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118195.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/118195",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118195/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118195",
+ "id": 741516592,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118195/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118195/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118195/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118195/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118195/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118195/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118195/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118195/milestones{/number}",
+ "mirror_url": null,
+ "name": "118195",
+ "node_id": "R_kgDOLDKlMA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118195/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118195/pulls{/number}",
+ "pushed_at": "2023-12-23T03:37:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118195/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/118195.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118195/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118195/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118195/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118195/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118195",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118195/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118195/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118195/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118195",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118199": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118199/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118199/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118199/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118199/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118199.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118199/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118199/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118199/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118199/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118199/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118199/contributors",
+ "created_at": "2024-01-10T15:01:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118199/deployments",
+ "description": "Tag Trigger Consolidation (Clopath and Ziegler et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118199/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118199/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118199/forks",
+ "full_name": "OpenSourceBrain/118199",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118199/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118199/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118199/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118199.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118199",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118199/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118199",
+ "id": 741516611,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118199/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118199/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118199/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118199/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118199/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118199/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118199/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118199/milestones{/number}",
+ "mirror_url": null,
+ "name": "118199",
+ "node_id": "R_kgDOLDKlQw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118199/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118199/pulls{/number}",
+ "pushed_at": "2019-05-31T03:16:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118199/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/118199.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118199/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118199/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118199/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118199/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118199",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118199/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118199/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118199/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118199",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118261": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118261/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118261/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118261/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118261/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118261.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118261/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118261/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118261/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118261/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118261/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118261/contributors",
+ "created_at": "2024-01-10T15:01:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118261/deployments",
+ "description": "Multisensory integration in the superior colliculus: a neural network model (Ursino et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118261/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118261/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118261/forks",
+ "full_name": "OpenSourceBrain/118261",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118261/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118261/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118261/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118261.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118261",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118261/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118261",
+ "id": 741516626,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118261/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118261/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118261/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118261/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118261/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118261/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118261/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118261/milestones{/number}",
+ "mirror_url": null,
+ "name": "118261",
+ "node_id": "R_kgDOLDKlUg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118261/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118261/pulls{/number}",
+ "pushed_at": "2019-05-31T01:05:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118261/releases{/id}",
+ "size": 109,
+ "ssh_url": "git@github.com:OpenSourceBrain/118261.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118261/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118261/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118261/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118261/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118261",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118261/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118261/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118261/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118261",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118326": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118326/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118326/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118326/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118326/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118326.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118326/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118326/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118326/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118326/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118326/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118326/contributors",
+ "created_at": "2024-01-10T15:01:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118326/deployments",
+ "description": "Moose/PyMOOSE: interoperable scripting in Python for MOOSE (Ray and Bhalla 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118326/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118326/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118326/forks",
+ "full_name": "OpenSourceBrain/118326",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118326/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118326/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118326/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118326.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118326",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118326/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118326",
+ "id": 741516637,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118326/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118326/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118326/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118326/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118326/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118326/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118326/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118326/milestones{/number}",
+ "mirror_url": null,
+ "name": "118326",
+ "node_id": "R_kgDOLDKlXQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118326/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118326/pulls{/number}",
+ "pushed_at": "2019-05-31T04:56:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118326/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/118326.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118326/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118326/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118326/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118326/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118326",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118326/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118326/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118326/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118326",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118389": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118389/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118389/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118389/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118389/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118389.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118389/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118389/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118389/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118389/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118389/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118389/contributors",
+ "created_at": "2024-01-10T15:01:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118389/deployments",
+ "description": "Gap junction coupled network of striatal fast spiking interneurons (Hjorth et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118389/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118389/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118389/forks",
+ "full_name": "OpenSourceBrain/118389",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118389/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118389/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118389/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118389.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118389",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118389/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118389",
+ "id": 741516657,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118389/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118389/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118389/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118389/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118389/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118389/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118389/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118389/milestones{/number}",
+ "mirror_url": null,
+ "name": "118389",
+ "node_id": "R_kgDOLDKlcQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118389/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118389/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118389/releases{/id}",
+ "size": 470,
+ "ssh_url": "git@github.com:OpenSourceBrain/118389.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118389/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118389/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118389/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118389/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118389",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118389/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118389/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118389/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118389",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118392": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118392/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118392/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118392/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118392/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118392.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118392/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118392/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118392/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118392/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118392/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118392/contributors",
+ "created_at": "2024-01-10T15:01:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118392/deployments",
+ "description": "Phase oscillator models for lamprey central pattern generators (Varkonyi et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118392/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118392/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118392/forks",
+ "full_name": "OpenSourceBrain/118392",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118392/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118392/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118392/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118392.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118392",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118392/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118392",
+ "id": 741516680,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118392/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118392/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118392/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118392/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118392/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118392/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118392/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118392/milestones{/number}",
+ "mirror_url": null,
+ "name": "118392",
+ "node_id": "R_kgDOLDKliA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118392/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118392/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118392/releases{/id}",
+ "size": 42,
+ "ssh_url": "git@github.com:OpenSourceBrain/118392.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118392/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118392/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118392/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118392/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118392",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118392/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118392/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118392/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118392",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118434": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118434/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118434/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118434/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118434/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118434.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118434/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118434/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118434/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118434/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118434/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118434/contributors",
+ "created_at": "2024-01-10T15:01:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118434/deployments",
+ "description": "Odor supported place cell model and goal navigation in rodents (Kulvicius et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118434/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118434/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118434/forks",
+ "full_name": "OpenSourceBrain/118434",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118434/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118434/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118434/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118434.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118434",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118434/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118434",
+ "id": 741516696,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118434/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118434/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118434/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118434/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118434/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118434/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118434/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118434/milestones{/number}",
+ "mirror_url": null,
+ "name": "118434",
+ "node_id": "R_kgDOLDKlmA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118434/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118434/pulls{/number}",
+ "pushed_at": "2019-05-31T03:45:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118434/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/118434.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118434/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118434/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118434/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118434/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118434",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118434/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118434/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118434/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118434",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118524": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118524/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118524/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118524/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118524/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118524.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118524/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118524/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118524/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118524/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118524/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118524/contributors",
+ "created_at": "2024-01-10T15:01:43Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118524/deployments",
+ "description": "Virtual Retina: biological retina simulator, with contrast gain control (Wohrer and Kornprobst 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118524/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118524/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118524/forks",
+ "full_name": "OpenSourceBrain/118524",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118524/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118524/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118524/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118524.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/118524",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118524/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118524",
+ "id": 741516722,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118524/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118524/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118524/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118524/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118524/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118524/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118524/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118524/milestones{/number}",
+ "mirror_url": null,
+ "name": "118524",
+ "node_id": "R_kgDOLDKlsg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118524/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118524/pulls{/number}",
+ "pushed_at": "2023-12-23T03:38:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118524/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/118524.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118524/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118524/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118524/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118524/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118524",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118524/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118524/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118524/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118524",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118554": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118554/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118554/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118554/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118554/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118554.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118554/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118554/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118554/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118554/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118554/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118554/contributors",
+ "created_at": "2024-01-10T15:01:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118554/deployments",
+ "description": "Calyx of Held, short term plasticity (Yang Z et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118554/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118554/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118554/forks",
+ "full_name": "OpenSourceBrain/118554",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118554/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118554/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118554/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118554.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118554",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118554/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118554",
+ "id": 741516738,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118554/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118554/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118554/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118554/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118554/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118554/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118554/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118554/milestones{/number}",
+ "mirror_url": null,
+ "name": "118554",
+ "node_id": "R_kgDOLDKlwg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118554/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118554/pulls{/number}",
+ "pushed_at": "2019-05-31T03:43:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118554/releases{/id}",
+ "size": 42,
+ "ssh_url": "git@github.com:OpenSourceBrain/118554.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118554/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118554/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118554/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118554/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118554",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118554/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118554/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118554/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118554",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118631": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118631/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118631/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118631/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118631/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118631.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118631/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118631/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118631/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118631/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118631/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118631/contributors",
+ "created_at": "2024-01-10T15:01:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118631/deployments",
+ "description": "Response properties of neocort. neurons to temporally modulated noisy inputs (Koendgen et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118631/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118631/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118631/forks",
+ "full_name": "OpenSourceBrain/118631",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118631/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118631/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118631/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118631.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/118631",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118631/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118631",
+ "id": 741516768,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118631/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118631/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118631/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118631/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118631/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118631/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118631/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118631/milestones{/number}",
+ "mirror_url": null,
+ "name": "118631",
+ "node_id": "R_kgDOLDKl4A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118631/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118631/pulls{/number}",
+ "pushed_at": "2023-11-28T20:35:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118631/releases{/id}",
+ "size": 125,
+ "ssh_url": "git@github.com:OpenSourceBrain/118631.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118631/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118631/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118631/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118631/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118631",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118631/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118631/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118631/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118631",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118662": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118662/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118662/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118662/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118662/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118662.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118662/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118662/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118662/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118662/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118662/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118662/contributors",
+ "created_at": "2024-01-10T15:01:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118662/deployments",
+ "description": "Drosophila projection neuron electrotonic structure (Gouwens and Wilson 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118662/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118662/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118662/forks",
+ "full_name": "OpenSourceBrain/118662",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118662/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118662/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118662/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118662.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118662",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118662/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118662",
+ "id": 741516786,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118662/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118662/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118662/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118662/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118662/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118662/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118662/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118662/milestones{/number}",
+ "mirror_url": null,
+ "name": "118662",
+ "node_id": "R_kgDOLDKl8g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118662/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118662/pulls{/number}",
+ "pushed_at": "2019-05-31T02:44:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118662/releases{/id}",
+ "size": 369,
+ "ssh_url": "git@github.com:OpenSourceBrain/118662.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118662/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118662/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118662/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118662/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118662",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118662/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118662/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118662/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118662",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118759": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118759/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118759/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118759/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118759/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118759.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118759/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118759/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118759/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118759/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118759/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118759/contributors",
+ "created_at": "2024-01-10T15:01:52Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118759/deployments",
+ "description": "Permeation and inactivation of CaV1.2 Ca2+ channels (Babich et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118759/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118759/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118759/forks",
+ "full_name": "OpenSourceBrain/118759",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118759/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118759/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118759/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118759.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/118759",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118759/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118759",
+ "id": 741516816,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118759/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118759/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118759/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118759/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118759/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118759/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118759/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118759/milestones{/number}",
+ "mirror_url": null,
+ "name": "118759",
+ "node_id": "R_kgDOLDKmEA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118759/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118759/pulls{/number}",
+ "pushed_at": "2023-12-23T03:38:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118759/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/118759.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118759/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118759/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118759/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118759/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118759",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118759/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118759/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118759/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118759",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118797": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118797/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118797/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118797/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118797/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118797.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118797/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118797/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118797/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118797/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118797/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118797/contributors",
+ "created_at": "2024-01-10T15:01:55Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118797/deployments",
+ "description": "Facilitation model based on bound Ca2+ (Matveev et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118797/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118797/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118797/forks",
+ "full_name": "OpenSourceBrain/118797",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118797/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118797/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118797/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118797.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/118797",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118797/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118797",
+ "id": 741516835,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118797/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118797/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118797/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118797/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118797/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118797/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118797/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118797/milestones{/number}",
+ "mirror_url": null,
+ "name": "118797",
+ "node_id": "R_kgDOLDKmIw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118797/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118797/pulls{/number}",
+ "pushed_at": "2023-12-23T03:38:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118797/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/118797.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118797/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118797/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118797/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118797/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118797",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118797/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118797/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118797/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118797",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118799": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118799/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118799/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118799/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118799/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118799.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118799/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118799/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118799/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118799/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118799/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118799/contributors",
+ "created_at": "2024-01-10T15:01:57Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118799/deployments",
+ "description": "Loss of phase-locking in non-weakly coupled inhib. networks of type-I neurons (Oh and Matveev 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118799/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118799/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118799/forks",
+ "full_name": "OpenSourceBrain/118799",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118799/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118799/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118799/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118799.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/118799",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118799/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118799",
+ "id": 741516853,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118799/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118799/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118799/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118799/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118799/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118799/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118799/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118799/milestones{/number}",
+ "mirror_url": null,
+ "name": "118799",
+ "node_id": "R_kgDOLDKmNQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118799/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118799/pulls{/number}",
+ "pushed_at": "2023-12-23T03:38:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118799/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/118799.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118799/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118799/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118799/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118799/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118799",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118799/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118799/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118799/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:01:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118799",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118894": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118894/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118894/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118894/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118894/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118894.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118894/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118894/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118894/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118894/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118894/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118894/contributors",
+ "created_at": "2024-01-10T15:02:00Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118894/deployments",
+ "description": "Stochastic automata network Markov model descriptors of coupled Ca2+ channels (Nguyen et al. 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118894/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118894/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118894/forks",
+ "full_name": "OpenSourceBrain/118894",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118894/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118894/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118894/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118894.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/118894",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118894/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118894",
+ "id": 741516869,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118894/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118894/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118894/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118894/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118894/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118894/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118894/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118894/milestones{/number}",
+ "mirror_url": null,
+ "name": "118894",
+ "node_id": "R_kgDOLDKmRQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118894/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118894/pulls{/number}",
+ "pushed_at": "2023-12-23T03:38:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118894/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/118894.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118894/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118894/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118894/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118894/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118894",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118894/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118894/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118894/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118894",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/118986": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/118986/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/118986/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/118986/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/118986/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/118986.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/118986/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/118986/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/118986/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/118986/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/118986/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/118986/contributors",
+ "created_at": "2024-01-10T15:02:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/118986/deployments",
+ "description": "CA1 pyramidal neurons: effects of a Kv7.2 mutation (Miceli et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/118986/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/118986/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/118986/forks",
+ "full_name": "OpenSourceBrain/118986",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/118986/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/118986/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/118986/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/118986.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/118986",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/118986/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/118986",
+ "id": 741516894,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/118986/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/118986/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/118986/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/118986/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/118986/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/118986/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/118986/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/118986/milestones{/number}",
+ "mirror_url": null,
+ "name": "118986",
+ "node_id": "R_kgDOLDKmXg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/118986/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/118986/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/118986/releases{/id}",
+ "size": 49,
+ "ssh_url": "git@github.com:OpenSourceBrain/118986.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/118986/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/118986/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/118986/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/118986/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/118986",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/118986/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/118986/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/118986/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/118986",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/119153": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/119153/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/119153/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/119153/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/119153/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/119153.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/119153/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/119153/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/119153/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/119153/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/119153/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/119153/contributors",
+ "created_at": "2024-01-10T15:02:04Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/119153/deployments",
+ "description": "Facilitation through buffer saturation (Matveev et al. 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/119153/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/119153/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/119153/forks",
+ "full_name": "OpenSourceBrain/119153",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/119153/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/119153/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/119153/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/119153.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/119153",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/119153/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/119153",
+ "id": 741516915,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/119153/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/119153/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/119153/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/119153/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/119153/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/119153/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/119153/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/119153/milestones{/number}",
+ "mirror_url": null,
+ "name": "119153",
+ "node_id": "R_kgDOLDKmcw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/119153/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/119153/pulls{/number}",
+ "pushed_at": "2023-12-23T03:38:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/119153/releases{/id}",
+ "size": 20,
+ "ssh_url": "git@github.com:OpenSourceBrain/119153.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/119153/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/119153/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/119153/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/119153/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/119153",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/119153/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/119153/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/119153/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/119153",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/119159": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/119159/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/119159/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/119159/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/119159/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/119159.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/119159/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/119159/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/119159/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/119159/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/119159/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/119159/contributors",
+ "created_at": "2024-01-10T15:02:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/119159/deployments",
+ "description": "STDP promotes synchrony of inhibitory networks in the presence of heterogeneity (Talathi et al 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/119159/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/119159/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/119159/forks",
+ "full_name": "OpenSourceBrain/119159",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/119159/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/119159/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/119159/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/119159.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/119159",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/119159/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/119159",
+ "id": 741516938,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/119159/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/119159/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/119159/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/119159/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/119159/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/119159/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/119159/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/119159/milestones{/number}",
+ "mirror_url": null,
+ "name": "119159",
+ "node_id": "R_kgDOLDKmig",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/119159/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/119159/pulls{/number}",
+ "pushed_at": "2019-05-31T05:01:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/119159/releases{/id}",
+ "size": 418,
+ "ssh_url": "git@github.com:OpenSourceBrain/119159.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/119159/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/119159/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/119159/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/119159/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/119159",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/119159/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/119159/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/119159/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/119159",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/119214": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/119214/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/119214/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/119214/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/119214/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/119214.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/119214/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/119214/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/119214/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/119214/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/119214/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/119214/contributors",
+ "created_at": "2024-01-10T15:02:09Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/119214/deployments",
+ "description": "New and corrected simulations of synaptic facilitation (Matveev et al. 2002)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/119214/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/119214/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/119214/forks",
+ "full_name": "OpenSourceBrain/119214",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/119214/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/119214/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/119214/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/119214.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/119214",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/119214/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/119214",
+ "id": 741516955,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/119214/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/119214/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/119214/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/119214/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/119214/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/119214/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/119214/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/119214/milestones{/number}",
+ "mirror_url": null,
+ "name": "119214",
+ "node_id": "R_kgDOLDKmmw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/119214/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/119214/pulls{/number}",
+ "pushed_at": "2023-12-23T03:39:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/119214/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/119214.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/119214/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/119214/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/119214/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/119214/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/119214",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/119214/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/119214/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/119214/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/119214",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/119266": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/119266/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/119266/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/119266/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/119266/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/119266.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/119266/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/119266/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/119266/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/119266/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/119266/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/119266/contributors",
+ "created_at": "2024-01-10T15:02:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/119266/deployments",
+ "description": "Modelling reduced excitability in aged CA1 neurons as a Ca-dependent process (Markaki et al. 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/119266/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/119266/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/119266/forks",
+ "full_name": "OpenSourceBrain/119266",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/119266/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/119266/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/119266/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/119266.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/119266",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/119266/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/119266",
+ "id": 741516971,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/119266/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/119266/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/119266/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/119266/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/119266/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/119266/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/119266/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/119266/milestones{/number}",
+ "mirror_url": null,
+ "name": "119266",
+ "node_id": "R_kgDOLDKmqw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/119266/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/119266/pulls{/number}",
+ "pushed_at": "2018-04-23T18:09:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/119266/releases{/id}",
+ "size": 195,
+ "ssh_url": "git@github.com:OpenSourceBrain/119266.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/119266/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/119266/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/119266/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/119266/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/119266",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/119266/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/119266/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/119266/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/119266",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/119283": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/119283/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/119283/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/119283/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/119283/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/119283.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/119283/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/119283/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/119283/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/119283/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/119283/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/119283/contributors",
+ "created_at": "2024-01-10T15:02:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/119283/deployments",
+ "description": "Computational neuropharmacology of CA1 pyramidal neuron (Ferrante et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/119283/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/119283/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/119283/forks",
+ "full_name": "OpenSourceBrain/119283",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/119283/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/119283/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/119283/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/119283.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/119283",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/119283/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/119283",
+ "id": 741516988,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/119283/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/119283/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/119283/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/119283/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/119283/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/119283/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/119283/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/119283/milestones{/number}",
+ "mirror_url": null,
+ "name": "119283",
+ "node_id": "R_kgDOLDKmvA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/119283/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/119283/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/119283/releases{/id}",
+ "size": 91,
+ "ssh_url": "git@github.com:OpenSourceBrain/119283.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/119283/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/119283/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/119283/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/119283/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/119283",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/119283/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/119283/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/119283/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/119283",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120115": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120115/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120115/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120115/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120115/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120115.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120115/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120115/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120115/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120115/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120115/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120115/contributors",
+ "created_at": "2024-01-10T15:02:17Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120115/deployments",
+ "description": "Transmitter release and Ca diffusion models (Yamada and Zucker 1992)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120115/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120115/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120115/forks",
+ "full_name": "OpenSourceBrain/120115",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120115/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120115/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120115/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120115.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/120115",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120115/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120115",
+ "id": 741516997,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120115/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120115/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120115/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120115/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120115/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120115/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120115/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120115/milestones{/number}",
+ "mirror_url": null,
+ "name": "120115",
+ "node_id": "R_kgDOLDKmxQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120115/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120115/pulls{/number}",
+ "pushed_at": "2023-12-23T03:39:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120115/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/120115.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120115/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120115/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120115/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120115/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120115",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120115/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120115/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120115/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120115",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120117": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120117/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120117/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120117/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120117/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120117.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120117/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120117/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120117/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120117/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120117/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120117/contributors",
+ "created_at": "2024-01-10T15:02:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120117/deployments",
+ "description": "TTX-R Na+ current effect on cell response (Herzog et al 2001) (MATLAB)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120117/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120117/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120117/forks",
+ "full_name": "OpenSourceBrain/120117",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120117/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120117/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120117/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120117.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120117",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120117/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120117",
+ "id": 741517018,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120117/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120117/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120117/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120117/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120117/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120117/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120117/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120117/milestones{/number}",
+ "mirror_url": null,
+ "name": "120117",
+ "node_id": "R_kgDOLDKm2g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120117/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120117/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120117/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/120117.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120117/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120117/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120117/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120117/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120117",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120117/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120117/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120117/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120117",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120137": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120137/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120137/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120137/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120137/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120137.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120137/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120137/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120137/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120137/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120137/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120137/contributors",
+ "created_at": "2024-01-10T15:02:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120137/deployments",
+ "description": "A finite volume method for stochastic integrate-and-fire models (Marpeau et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120137/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120137/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120137/forks",
+ "full_name": "OpenSourceBrain/120137",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120137/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120137/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120137/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120137.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120137",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120137/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120137",
+ "id": 741517034,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120137/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120137/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120137/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120137/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120137/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120137/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120137/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120137/milestones{/number}",
+ "mirror_url": null,
+ "name": "120137",
+ "node_id": "R_kgDOLDKm6g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120137/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120137/pulls{/number}",
+ "pushed_at": "2019-05-31T05:06:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120137/releases{/id}",
+ "size": 118,
+ "ssh_url": "git@github.com:OpenSourceBrain/120137.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120137/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120137/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120137/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120137/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120137",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120137/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120137/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120137/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120137",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120184": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120184/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120184/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120184/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120184/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120184.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120184/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120184/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120184/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120184/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120184/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120184/contributors",
+ "created_at": "2024-01-10T15:02:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120184/deployments",
+ "description": "A kinetic model unifying presynaptic short-term facilitation and depression (Lee et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120184/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120184/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120184/forks",
+ "full_name": "OpenSourceBrain/120184",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120184/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120184/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120184/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120184.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120184",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120184/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120184",
+ "id": 741517051,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120184/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120184/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120184/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120184/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120184/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120184/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120184/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120184/milestones{/number}",
+ "mirror_url": null,
+ "name": "120184",
+ "node_id": "R_kgDOLDKm-w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120184/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120184/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120184/releases{/id}",
+ "size": 1569,
+ "ssh_url": "git@github.com:OpenSourceBrain/120184.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120184/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120184/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120184/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120184/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120184",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120184/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120184/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120184/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120184",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120227": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120227/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120227/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120227/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120227/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120227.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120227/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120227/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120227/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120227/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120227/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120227/contributors",
+ "created_at": "2024-01-10T15:02:27Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120227/deployments",
+ "description": "Multistability of clustered states in a globally inhibitory network (Chandrasekaran et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120227/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120227/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120227/forks",
+ "full_name": "OpenSourceBrain/120227",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120227/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120227/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120227/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120227.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/120227",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120227/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120227",
+ "id": 741517070,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120227/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120227/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120227/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120227/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120227/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120227/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120227/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120227/milestones{/number}",
+ "mirror_url": null,
+ "name": "120227",
+ "node_id": "R_kgDOLDKnDg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120227/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120227/pulls{/number}",
+ "pushed_at": "2023-12-23T03:39:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120227/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/120227.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120227/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120227/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120227/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120227/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120227",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120227/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120227/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120227/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120227",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120243": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120243/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120243/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120243/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120243/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120243.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120243/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120243/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120243/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120243/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120243/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120243/contributors",
+ "created_at": "2024-01-10T15:02:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120243/deployments",
+ "description": "Contribution of ATP-sensitive potassium channels in the neuronal network (Huang et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120243/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120243/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120243/forks",
+ "full_name": "OpenSourceBrain/120243",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120243/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120243/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120243/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120243.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120243",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120243/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120243",
+ "id": 741517092,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120243/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120243/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120243/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120243/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120243/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120243/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120243/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120243/milestones{/number}",
+ "mirror_url": null,
+ "name": "120243",
+ "node_id": "R_kgDOLDKnJA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120243/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120243/pulls{/number}",
+ "pushed_at": "2019-05-31T04:58:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120243/releases{/id}",
+ "size": 84,
+ "ssh_url": "git@github.com:OpenSourceBrain/120243.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120243/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120243/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120243/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120243/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120243",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120243/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120243/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120243/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120243",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120246": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120246/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120246/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120246/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120246/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120246.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120246/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120246/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120246/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120246/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120246/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120246/contributors",
+ "created_at": "2024-01-10T15:02:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120246/deployments",
+ "description": "Action potential of adult rat ventricle (Wang et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120246/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120246/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120246/forks",
+ "full_name": "OpenSourceBrain/120246",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120246/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120246/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120246/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120246.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120246",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120246/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120246",
+ "id": 741517109,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120246/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120246/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120246/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120246/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120246/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120246/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120246/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120246/milestones{/number}",
+ "mirror_url": null,
+ "name": "120246",
+ "node_id": "R_kgDOLDKnNQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120246/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120246/pulls{/number}",
+ "pushed_at": "2022-02-17T06:17:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120246/releases{/id}",
+ "size": 46,
+ "ssh_url": "git@github.com:OpenSourceBrain/120246.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120246/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120246/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120246/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120246/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120246",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120246/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120246/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120246/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120246",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120320": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120320/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120320/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120320/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120320/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120320.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120320/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120320/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120320/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120320/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120320/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120320/contributors",
+ "created_at": "2024-01-10T15:02:35Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120320/deployments",
+ "description": "A nicotinic acetylcholine receptor kinetic model (Edelstein et al. 1996)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120320/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120320/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120320/forks",
+ "full_name": "OpenSourceBrain/120320",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120320/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120320/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120320/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120320.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/120320",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120320/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120320",
+ "id": 741517128,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120320/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120320/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120320/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120320/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120320/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120320/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120320/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120320/milestones{/number}",
+ "mirror_url": null,
+ "name": "120320",
+ "node_id": "R_kgDOLDKnSA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120320/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120320/pulls{/number}",
+ "pushed_at": "2023-12-23T03:39:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120320/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/120320.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120320/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120320/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120320/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120320/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120320",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120320/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120320/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120320/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120320",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120521": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120521/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120521/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120521/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120521/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120521.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120521/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120521/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120521/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120521/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120521/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120521/contributors",
+ "created_at": "2024-01-10T15:02:37Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120521/deployments",
+ "description": "Nodose sensory neuron (Schild et al. 1994, Schild and Kunze 1997)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120521/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120521/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120521/forks",
+ "full_name": "OpenSourceBrain/120521",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120521/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120521/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120521/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120521.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/120521",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120521/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120521",
+ "id": 741517156,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120521/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120521/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120521/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120521/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120521/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120521/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120521/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120521/milestones{/number}",
+ "mirror_url": null,
+ "name": "120521",
+ "node_id": "R_kgDOLDKnZA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120521/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120521/pulls{/number}",
+ "pushed_at": "2023-12-23T03:39:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120521/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/120521.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120521/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120521/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120521/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120521/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120521",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120521/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120521/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120521/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120521",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120692": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120692/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120692/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120692/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120692/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120692.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120692/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120692/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120692/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120692/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120692/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120692/contributors",
+ "created_at": "2024-01-10T15:02:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120692/deployments",
+ "description": "Sodium potassium ATPase pump (Chapman et al. 1983)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120692/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120692/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120692/forks",
+ "full_name": "OpenSourceBrain/120692",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120692/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120692/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120692/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120692.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120692",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120692/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120692",
+ "id": 741517169,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120692/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120692/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120692/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120692/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120692/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120692/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120692/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120692/milestones{/number}",
+ "mirror_url": null,
+ "name": "120692",
+ "node_id": "R_kgDOLDKncQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120692/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120692/pulls{/number}",
+ "pushed_at": "2019-05-31T05:05:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120692/releases{/id}",
+ "size": 89,
+ "ssh_url": "git@github.com:OpenSourceBrain/120692.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120692/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120692/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120692/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120692/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120692",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120692/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120692/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120692/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120692",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120783": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120783/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120783/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120783/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120783/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120783.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120783/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120783/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120783/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120783/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120783/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120783/contributors",
+ "created_at": "2024-01-10T15:02:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120783/deployments",
+ "description": "Generating oscillatory bursts from a network of regular spiking neurons (Shao et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120783/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120783/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120783/forks",
+ "full_name": "OpenSourceBrain/120783",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120783/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120783/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120783/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120783.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120783",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120783/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120783",
+ "id": 741517187,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120783/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120783/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120783/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120783/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120783/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120783/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120783/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120783/milestones{/number}",
+ "mirror_url": null,
+ "name": "120783",
+ "node_id": "R_kgDOLDKngw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120783/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120783/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120783/releases{/id}",
+ "size": 121,
+ "ssh_url": "git@github.com:OpenSourceBrain/120783.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120783/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120783/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120783/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120783/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120783",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120783/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120783/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120783/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120783",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120798": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120798/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120798/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120798/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120798/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120798.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120798/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120798/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120798/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120798/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120798/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120798/contributors",
+ "created_at": "2024-01-10T15:02:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120798/deployments",
+ "description": "Membrane potential changes in dendritic spines during APs and synaptic input (Palmer & Stuart 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120798/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120798/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120798/forks",
+ "full_name": "OpenSourceBrain/120798",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120798/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120798/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120798/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120798.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120798",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120798/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120798",
+ "id": 741517195,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120798/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120798/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120798/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120798/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120798/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120798/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120798/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120798/milestones{/number}",
+ "mirror_url": null,
+ "name": "120798",
+ "node_id": "R_kgDOLDKniw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120798/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120798/pulls{/number}",
+ "pushed_at": "2019-05-31T03:20:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120798/releases{/id}",
+ "size": 71,
+ "ssh_url": "git@github.com:OpenSourceBrain/120798.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120798/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120798/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120798/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120798/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120798",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120798/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120798/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120798/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120798",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120835": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120835/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120835/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120835/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120835/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120835.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120835/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120835/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120835/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120835/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120835/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120835/contributors",
+ "created_at": "2024-01-10T15:02:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120835/deployments",
+ "description": "A model of beta-adrenergic modulation of IKs in the guinea-pig ventricle (Severi et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120835/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120835/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120835/forks",
+ "full_name": "OpenSourceBrain/120835",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120835/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120835/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120835/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120835.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120835",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120835/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120835",
+ "id": 741517208,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120835/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120835/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120835/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120835/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120835/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120835/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120835/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120835/milestones{/number}",
+ "mirror_url": null,
+ "name": "120835",
+ "node_id": "R_kgDOLDKnmA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120835/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120835/pulls{/number}",
+ "pushed_at": "2019-05-31T03:24:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120835/releases{/id}",
+ "size": 64,
+ "ssh_url": "git@github.com:OpenSourceBrain/120835.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120835/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120835/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120835/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120835/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120835",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120835/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120835/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120835/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120835",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120907": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120907/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120907/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120907/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120907/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120907.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120907/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120907/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120907/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120907/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120907/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120907/contributors",
+ "created_at": "2024-01-10T15:02:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120907/deployments",
+ "description": "Mechanisms of very fast oscillations in axon networks coupled by gap junctions (Munro, Borgers 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120907/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120907/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120907/forks",
+ "full_name": "OpenSourceBrain/120907",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120907/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120907/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120907/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120907.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120907",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120907/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120907",
+ "id": 741517224,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120907/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120907/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120907/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120907/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120907/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120907/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120907/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120907/milestones{/number}",
+ "mirror_url": null,
+ "name": "120907",
+ "node_id": "R_kgDOLDKnqA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120907/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120907/pulls{/number}",
+ "pushed_at": "2019-05-31T04:23:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120907/releases{/id}",
+ "size": 41,
+ "ssh_url": "git@github.com:OpenSourceBrain/120907.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120907/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120907/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120907/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120907/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120907",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120907/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120907/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120907/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120907",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/120910": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/120910/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/120910/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/120910/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/120910/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/120910.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/120910/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/120910/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/120910/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/120910/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/120910/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/120910/contributors",
+ "created_at": "2024-01-10T15:02:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/120910/deployments",
+ "description": "Electrically-coupled Retzius neurons (Vazquez et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/120910/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/120910/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/120910/forks",
+ "full_name": "OpenSourceBrain/120910",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/120910/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/120910/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/120910/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/120910.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/120910",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/120910/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/120910",
+ "id": 741517248,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/120910/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/120910/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/120910/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/120910/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/120910/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/120910/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/120910/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/120910/milestones{/number}",
+ "mirror_url": null,
+ "name": "120910",
+ "node_id": "R_kgDOLDKnwA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/120910/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/120910/pulls{/number}",
+ "pushed_at": "2019-05-31T04:29:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/120910/releases{/id}",
+ "size": 28,
+ "ssh_url": "git@github.com:OpenSourceBrain/120910.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/120910/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/120910/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/120910/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/120910/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/120910",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/120910/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/120910/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/120910/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/120910",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/121060": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/121060/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/121060/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/121060/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/121060/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/121060.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/121060/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/121060/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/121060/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/121060/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/121060/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/121060/contributors",
+ "created_at": "2024-01-10T15:02:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/121060/deployments",
+ "description": "Effects of KIR current inactivation in NAc Medium Spiny Neurons (Steephen and Manchanda 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/121060/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/121060/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/121060/forks",
+ "full_name": "OpenSourceBrain/121060",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/121060/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/121060/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/121060/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/121060.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/121060",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/121060/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/121060",
+ "id": 741517264,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/121060/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/121060/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/121060/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/121060/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/121060/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/121060/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/121060/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/121060/milestones{/number}",
+ "mirror_url": null,
+ "name": "121060",
+ "node_id": "R_kgDOLDKn0A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/121060/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/121060/pulls{/number}",
+ "pushed_at": "2023-07-08T16:09:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/121060/releases{/id}",
+ "size": 48,
+ "ssh_url": "git@github.com:OpenSourceBrain/121060.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/121060/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/121060/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/121060/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/121060/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/121060",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/121060/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/121060/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/121060/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/121060",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/121253": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/121253/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/121253/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/121253/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/121253/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/121253.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/121253/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/121253/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/121253/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/121253/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/121253/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/121253/contributors",
+ "created_at": "2024-01-10T15:02:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/121253/deployments",
+ "description": "Submyelin Potassium accumulation in Subthalamic neuron (STN) axons (Bellinger et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/121253/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/121253/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/121253/forks",
+ "full_name": "OpenSourceBrain/121253",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/121253/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/121253/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/121253/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/121253.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/121253",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/121253/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/121253",
+ "id": 741517277,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/121253/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/121253/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/121253/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/121253/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/121253/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/121253/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/121253/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/121253/milestones{/number}",
+ "mirror_url": null,
+ "name": "121253",
+ "node_id": "R_kgDOLDKn3Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/121253/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/121253/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/121253/releases{/id}",
+ "size": 31,
+ "ssh_url": "git@github.com:OpenSourceBrain/121253.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/121253/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/121253/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/121253/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/121253/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/121253",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/121253/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/121253/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/121253/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/121253",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/121259": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/121259/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/121259/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/121259/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/121259/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/121259.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/121259/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/121259/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/121259/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/121259/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/121259/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/121259/contributors",
+ "created_at": "2024-01-10T15:02:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/121259/deployments",
+ "description": "Small world networks of Type I and Type II Excitable Neurons (Bogaard et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/121259/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/121259/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/121259/forks",
+ "full_name": "OpenSourceBrain/121259",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/121259/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/121259/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/121259/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/121259.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/121259",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/121259/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/121259",
+ "id": 741517299,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/121259/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/121259/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/121259/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/121259/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/121259/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/121259/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/121259/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/121259/milestones{/number}",
+ "mirror_url": null,
+ "name": "121259",
+ "node_id": "R_kgDOLDKn8w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/121259/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/121259/pulls{/number}",
+ "pushed_at": "2019-05-31T03:36:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/121259/releases{/id}",
+ "size": 270,
+ "ssh_url": "git@github.com:OpenSourceBrain/121259.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/121259/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/121259/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/121259/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/121259/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/121259",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/121259/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/121259/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/121259/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:02:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/121259",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/121600": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/121600/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/121600/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/121600/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/121600/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/121600.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/121600/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/121600/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/121600/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/121600/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/121600/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/121600/contributors",
+ "created_at": "2024-01-10T15:03:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/121600/deployments",
+ "description": "Thalamic neuron: Modeling rhythmic neuronal activity (Meuth et al. 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/121600/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/121600/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/121600/forks",
+ "full_name": "OpenSourceBrain/121600",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/121600/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/121600/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/121600/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/121600.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/121600",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/121600/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/121600",
+ "id": 741517323,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/121600/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/121600/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/121600/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/121600/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/121600/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/121600/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/121600/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/121600/milestones{/number}",
+ "mirror_url": null,
+ "name": "121600",
+ "node_id": "R_kgDOLDKoCw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/121600/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/121600/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/121600/releases{/id}",
+ "size": 96,
+ "ssh_url": "git@github.com:OpenSourceBrain/121600.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/121600/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/121600/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/121600/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/121600/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/121600",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/121600/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/121600/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/121600/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:03:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/121600",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/121628": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/121628/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/121628/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/121628/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/121628/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/121628.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/121628/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/121628/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/121628/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/121628/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/121628/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/121628/contributors",
+ "created_at": "2024-01-10T15:03:03Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/121628/deployments",
+ "description": "Software for teaching neurophysiology of neuronal circuits (Grisham et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/121628/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/121628/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/121628/forks",
+ "full_name": "OpenSourceBrain/121628",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/121628/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/121628/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/121628/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/121628.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/121628",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/121628/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/121628",
+ "id": 741517348,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/121628/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/121628/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/121628/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/121628/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/121628/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/121628/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/121628/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/121628/milestones{/number}",
+ "mirror_url": null,
+ "name": "121628",
+ "node_id": "R_kgDOLDKoJA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/121628/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/121628/pulls{/number}",
+ "pushed_at": "2023-12-23T03:40:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/121628/releases{/id}",
+ "size": 5422,
+ "ssh_url": "git@github.com:OpenSourceBrain/121628.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/121628/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/121628/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/121628/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/121628/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/121628",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/121628/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/121628/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/121628/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:03:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/121628",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/122329": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/122329/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/122329/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/122329/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/122329/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/122329.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/122329/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/122329/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/122329/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/122329/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/122329/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/122329/contributors",
+ "created_at": "2024-01-10T15:03:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/122329/deployments",
+ "description": "Model of SK current's influence on precision in Globus Pallidus Neurons (Deister et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/122329/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/122329/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/122329/forks",
+ "full_name": "OpenSourceBrain/122329",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/122329/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/122329/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/122329/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/122329.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/122329",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/122329/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/122329",
+ "id": 741517368,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/122329/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/122329/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/122329/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/122329/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/122329/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/122329/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/122329/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/122329/milestones{/number}",
+ "mirror_url": null,
+ "name": "122329",
+ "node_id": "R_kgDOLDKoOA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/122329/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/122329/pulls{/number}",
+ "pushed_at": "2023-11-28T20:39:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/122329/releases{/id}",
+ "size": 90,
+ "ssh_url": "git@github.com:OpenSourceBrain/122329.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/122329/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/122329/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/122329/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/122329/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/122329",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/122329/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/122329/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/122329/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:03:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/122329",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/122369": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/122369/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/122369/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/122369/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/122369/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/122369.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/122369/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/122369/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/122369/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/122369/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/122369/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/122369/contributors",
+ "created_at": "2024-01-10T15:03:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/122369/deployments",
+ "description": "Investigation of different targets in deep brain stimulation for Parkinson`s (Pirini et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/122369/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/122369/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/122369/forks",
+ "full_name": "OpenSourceBrain/122369",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/122369/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/122369/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/122369/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/122369.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/122369",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/122369/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/122369",
+ "id": 741517384,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/122369/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/122369/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/122369/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/122369/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/122369/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/122369/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/122369/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/122369/milestones{/number}",
+ "mirror_url": null,
+ "name": "122369",
+ "node_id": "R_kgDOLDKoSA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/122369/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/122369/pulls{/number}",
+ "pushed_at": "2019-05-31T03:34:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/122369/releases{/id}",
+ "size": 209,
+ "ssh_url": "git@github.com:OpenSourceBrain/122369.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/122369/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/122369/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/122369/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/122369/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/122369",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/122369/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/122369/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/122369/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:03:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/122369",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/122442": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/122442/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/122442/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/122442/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/122442/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/122442.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/122442/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/122442/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/122442/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/122442/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/122442/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/122442/contributors",
+ "created_at": "2024-01-10T15:03:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/122442/deployments",
+ "description": "Tight junction model of CNS myelinated axons (Devaux and Gow 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/122442/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/122442/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/122442/forks",
+ "full_name": "OpenSourceBrain/122442",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/122442/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/122442/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/122442/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/122442.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/122442",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/122442/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/122442",
+ "id": 741517399,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/122442/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/122442/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/122442/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/122442/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/122442/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/122442/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/122442/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/122442/milestones{/number}",
+ "mirror_url": null,
+ "name": "122442",
+ "node_id": "R_kgDOLDKoVw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/122442/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/122442/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/122442/releases{/id}",
+ "size": 860,
+ "ssh_url": "git@github.com:OpenSourceBrain/122442.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/122442/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/122442/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/122442/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/122442/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/122442",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/122442/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/122442/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/122442/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:03:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/122442",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123086": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123086/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123086/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123086/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123086/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123086.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123086/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123086/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123086/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123086/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123086/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123086/contributors",
+ "created_at": "2024-01-10T15:03:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123086/deployments",
+ "description": "CONFIGR: a vision-based model for long-range figure completion (Carpenter et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123086/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123086/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123086/forks",
+ "full_name": "OpenSourceBrain/123086",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123086/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123086/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123086/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123086.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/123086",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123086/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123086",
+ "id": 741517415,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123086/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123086/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123086/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123086/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123086/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123086/languages",
+ "license": {
+ "key": "bsd-2-clause",
+ "name": "BSD 2-Clause \"Simplified\" License",
+ "node_id": "MDc6TGljZW5zZTQ=",
+ "spdx_id": "BSD-2-Clause",
+ "url": "https://api.github.com/licenses/bsd-2-clause"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123086/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123086/milestones{/number}",
+ "mirror_url": null,
+ "name": "123086",
+ "node_id": "R_kgDOLDKoZw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123086/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123086/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123086/releases{/id}",
+ "size": 295,
+ "ssh_url": "git@github.com:OpenSourceBrain/123086.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123086/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123086/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123086/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123086/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123086",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123086/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123086/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123086/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:03:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123086",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123453": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123453/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123453/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123453/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123453/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123453.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123453/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123453/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123453/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123453/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123453/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123453/contributors",
+ "created_at": "2024-01-10T15:16:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123453/deployments",
+ "description": "Effect of voltage sensitive fluorescent proteins on neuronal excitability (Akemann et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123453/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123453/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123453/forks",
+ "full_name": "OpenSourceBrain/123453",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123453/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123453/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123453/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123453.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/123453",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123453/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123453",
+ "id": 741523098,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123453/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123453/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123453/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123453/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123453/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123453/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123453/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123453/milestones{/number}",
+ "mirror_url": null,
+ "name": "123453",
+ "node_id": "R_kgDOLDK-mg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123453/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123453/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123453/releases{/id}",
+ "size": 62,
+ "ssh_url": "git@github.com:OpenSourceBrain/123453.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123453/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123453/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123453/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123453/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123453",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123453/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123453/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123453/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123453",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123623": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123623/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123623/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123623/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123623/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123623.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123623/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123623/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123623/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123623/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123623/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123623/contributors",
+ "created_at": "2024-01-10T15:16:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123623/deployments",
+ "description": "Hodgkin-Huxley models of different classes of cortical neurons (Pospischil et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123623/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123623/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123623/forks",
+ "full_name": "OpenSourceBrain/123623",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123623/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123623/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123623/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123623.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/123623",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123623/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123623",
+ "id": 741523122,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123623/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123623/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123623/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123623/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123623/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123623/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123623/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123623/milestones{/number}",
+ "mirror_url": null,
+ "name": "123623",
+ "node_id": "R_kgDOLDK-sg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123623/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123623/pulls{/number}",
+ "pushed_at": "2018-04-23T18:11:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123623/releases{/id}",
+ "size": 26,
+ "ssh_url": "git@github.com:OpenSourceBrain/123623.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123623/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123623/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123623/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123623/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123623",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123623/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123623/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123623/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123623",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123815": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123815/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123815/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123815/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123815/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123815.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123815/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123815/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123815/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123815/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123815/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123815/contributors",
+ "created_at": "2024-01-10T15:16:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123815/deployments",
+ "description": "Encoding and retrieval in a model of the hippocampal CA1 microcircuit (Cutsuridis et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123815/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123815/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123815/forks",
+ "full_name": "OpenSourceBrain/123815",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123815/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123815/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123815/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123815.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/123815",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123815/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123815",
+ "id": 741523139,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123815/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123815/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123815/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123815/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123815/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123815/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123815/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123815/milestones{/number}",
+ "mirror_url": null,
+ "name": "123815",
+ "node_id": "R_kgDOLDK-ww",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123815/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123815/pulls{/number}",
+ "pushed_at": "2023-11-28T20:39:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123815/releases{/id}",
+ "size": 2426,
+ "ssh_url": "git@github.com:OpenSourceBrain/123815.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123815/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123815/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123815/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123815/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123815",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123815/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123815/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123815/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123815",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123848": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123848/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123848/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123848/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123848/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123848.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123848/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123848/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123848/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123848/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123848/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123848/contributors",
+ "created_at": "2024-01-10T15:16:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123848/deployments",
+ "description": "Na channel mutations in the dentate gyrus (Thomas et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123848/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123848/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123848/forks",
+ "full_name": "OpenSourceBrain/123848",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123848/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123848/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123848/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123848.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/123848",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123848/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123848",
+ "id": 741523167,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123848/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123848/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123848/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123848/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123848/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123848/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123848/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123848/milestones{/number}",
+ "mirror_url": null,
+ "name": "123848",
+ "node_id": "R_kgDOLDK-3w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123848/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123848/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123848/releases{/id}",
+ "size": 345,
+ "ssh_url": "git@github.com:OpenSourceBrain/123848.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123848/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123848/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123848/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123848/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123848",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123848/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123848/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123848/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123848",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123897": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123897/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123897/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123897/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123897/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123897.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123897/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123897/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123897/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123897/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123897/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123897/contributors",
+ "created_at": "2024-01-10T15:16:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123897/deployments",
+ "description": "Action Potential initiation and backpropagation in Neocortical L5 Pyramidal Neuron (Hu et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123897/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123897/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123897/forks",
+ "full_name": "OpenSourceBrain/123897",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123897/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123897/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123897/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123897.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/123897",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123897/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123897",
+ "id": 741523190,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123897/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123897/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123897/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123897/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123897/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123897/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123897/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123897/milestones{/number}",
+ "mirror_url": null,
+ "name": "123897",
+ "node_id": "R_kgDOLDK-9g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123897/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123897/pulls{/number}",
+ "pushed_at": "2023-07-08T17:20:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123897/releases{/id}",
+ "size": 75,
+ "ssh_url": "git@github.com:OpenSourceBrain/123897.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123897/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123897/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123897/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123897/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123897",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123897/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123897/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123897/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123897",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123927": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123927/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123927/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123927/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123927/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123927.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123927/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123927/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123927/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123927/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123927/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123927/contributors",
+ "created_at": "2024-01-10T15:16:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123927/deployments",
+ "description": "Complex CA1-neuron to study AP initiation (Wimmer et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123927/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123927/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123927/forks",
+ "full_name": "OpenSourceBrain/123927",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123927/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123927/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123927/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123927.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/123927",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123927/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123927",
+ "id": 741523203,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123927/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123927/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123927/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123927/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123927/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123927/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123927/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123927/milestones{/number}",
+ "mirror_url": null,
+ "name": "123927",
+ "node_id": "R_kgDOLDK_Aw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123927/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123927/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123927/releases{/id}",
+ "size": 67,
+ "ssh_url": "git@github.com:OpenSourceBrain/123927.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123927/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123927/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123927/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123927/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123927",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123927/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123927/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123927/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123927",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123928": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123928/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123928/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123928/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123928/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123928.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123928/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123928/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123928/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123928/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123928/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123928/contributors",
+ "created_at": "2024-01-10T15:16:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123928/deployments",
+ "description": "Oscillations, phase-of-firing coding and STDP: an efficient learning scheme (Masquelier et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123928/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123928/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123928/forks",
+ "full_name": "OpenSourceBrain/123928",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123928/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123928/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123928/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123928.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/123928",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123928/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123928",
+ "id": 741523229,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123928/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123928/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123928/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123928/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123928/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123928/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123928/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123928/milestones{/number}",
+ "mirror_url": null,
+ "name": "123928",
+ "node_id": "R_kgDOLDK_HQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123928/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123928/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123928/releases{/id}",
+ "size": 130,
+ "ssh_url": "git@github.com:OpenSourceBrain/123928.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123928/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123928/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123928/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123928/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123928",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123928/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123928/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123928/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123928",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123986": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123986/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123986/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123986/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123986/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123986.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123986/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123986/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123986/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123986/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123986/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123986/contributors",
+ "created_at": "2024-01-10T15:16:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123986/deployments",
+ "description": "Oscillation and coding in a proposed NN model of insect olfaction (Horcholle-Bossavit et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123986/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123986/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123986/forks",
+ "full_name": "OpenSourceBrain/123986",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123986/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123986/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123986/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123986.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/123986",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123986/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123986",
+ "id": 741523242,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123986/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123986/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123986/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123986/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123986/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123986/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123986/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123986/milestones{/number}",
+ "mirror_url": null,
+ "name": "123986",
+ "node_id": "R_kgDOLDK_Kg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123986/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123986/pulls{/number}",
+ "pushed_at": "2019-05-31T04:58:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123986/releases{/id}",
+ "size": 597,
+ "ssh_url": "git@github.com:OpenSourceBrain/123986.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123986/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123986/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123986/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123986/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123986",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123986/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123986/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123986/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123986",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/123987": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/123987/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/123987/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/123987/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/123987/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/123987.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/123987/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/123987/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/123987/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/123987/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/123987/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/123987/contributors",
+ "created_at": "2024-01-10T15:16:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/123987/deployments",
+ "description": "Neural model of frog ventilatory rhythmogenesis (Horcholle-Bossavit and Quenet 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/123987/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/123987/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/123987/forks",
+ "full_name": "OpenSourceBrain/123987",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/123987/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/123987/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/123987/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/123987.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/123987",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/123987/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/123987",
+ "id": 741523258,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/123987/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/123987/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/123987/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/123987/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/123987/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/123987/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/123987/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/123987/milestones{/number}",
+ "mirror_url": null,
+ "name": "123987",
+ "node_id": "R_kgDOLDK_Og",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/123987/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/123987/pulls{/number}",
+ "pushed_at": "2019-05-31T04:54:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/123987/releases{/id}",
+ "size": 272,
+ "ssh_url": "git@github.com:OpenSourceBrain/123987.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/123987/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/123987/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/123987/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/123987/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/123987",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/123987/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/123987/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/123987/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/123987",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/124043": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/124043/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/124043/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/124043/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/124043/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/124043.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/124043/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/124043/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/124043/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/124043/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/124043/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/124043/contributors",
+ "created_at": "2024-01-10T15:16:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/124043/deployments",
+ "description": "Synaptic integration in tuft dendrites of layer 5 pyramidal neurons (Larkum et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/124043/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/124043/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/124043/forks",
+ "full_name": "OpenSourceBrain/124043",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/124043/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/124043/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/124043/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/124043.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/124043",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/124043/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/124043",
+ "id": 741523268,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/124043/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/124043/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/124043/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/124043/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/124043/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/124043/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/124043/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/124043/milestones{/number}",
+ "mirror_url": null,
+ "name": "124043",
+ "node_id": "R_kgDOLDK_RA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/124043/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/124043/pulls{/number}",
+ "pushed_at": "2018-04-23T18:13:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/124043/releases{/id}",
+ "size": 347,
+ "ssh_url": "git@github.com:OpenSourceBrain/124043.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/124043/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/124043/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/124043/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/124043/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/124043",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/124043/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/124043/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/124043/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/124043",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/124063": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/124063/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/124063/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/124063/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/124063/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/124063.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/124063/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/124063/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/124063/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/124063/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/124063/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/124063/contributors",
+ "created_at": "2024-01-10T15:16:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/124063/deployments",
+ "description": "A network model of the vertebrate retina (Publio et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/124063/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/124063/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/124063/forks",
+ "full_name": "OpenSourceBrain/124063",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/124063/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/124063/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/124063/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/124063.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/124063",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/124063/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/124063",
+ "id": 741523285,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/124063/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/124063/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/124063/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/124063/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/124063/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/124063/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/124063/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/124063/milestones{/number}",
+ "mirror_url": null,
+ "name": "124063",
+ "node_id": "R_kgDOLDK_VQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/124063/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/124063/pulls{/number}",
+ "pushed_at": "2018-04-23T18:13:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/124063/releases{/id}",
+ "size": 65,
+ "ssh_url": "git@github.com:OpenSourceBrain/124063.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/124063/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/124063/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/124063/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/124063/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/124063",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/124063/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/124063/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/124063/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/124063",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/124111": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/124111/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/124111/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/124111/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/124111/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/124111.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/124111/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/124111/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/124111/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/124111/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/124111/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/124111/contributors",
+ "created_at": "2024-01-10T15:16:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/124111/deployments",
+ "description": "A contracting model of the basal ganglia (Girard et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/124111/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/124111/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/124111/forks",
+ "full_name": "OpenSourceBrain/124111",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/124111/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/124111/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/124111/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/124111.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/124111",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/124111/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/124111",
+ "id": 741523309,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/124111/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/124111/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/124111/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/124111/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/124111/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/124111/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/124111/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/124111/milestones{/number}",
+ "mirror_url": null,
+ "name": "124111",
+ "node_id": "R_kgDOLDK_bQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/124111/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/124111/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/124111/releases{/id}",
+ "size": 1282,
+ "ssh_url": "git@github.com:OpenSourceBrain/124111.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/124111/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/124111/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/124111/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/124111/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/124111",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/124111/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/124111/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/124111/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/124111",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/124291": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/124291/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/124291/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/124291/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/124291/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/124291.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/124291/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/124291/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/124291/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/124291/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/124291/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/124291/contributors",
+ "created_at": "2024-01-10T15:16:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/124291/deployments",
+ "description": "Dentate Gyrus Feed-forward inhibition (Ferrante et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/124291/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/124291/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/124291/forks",
+ "full_name": "OpenSourceBrain/124291",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/124291/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/124291/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/124291/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/124291.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/124291",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/124291/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/124291",
+ "id": 741523325,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/124291/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/124291/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/124291/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/124291/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/124291/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/124291/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/124291/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/124291/milestones{/number}",
+ "mirror_url": null,
+ "name": "124291",
+ "node_id": "R_kgDOLDK_fQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/124291/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/124291/pulls{/number}",
+ "pushed_at": "2019-05-31T03:43:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/124291/releases{/id}",
+ "size": 62,
+ "ssh_url": "git@github.com:OpenSourceBrain/124291.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/124291/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/124291/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/124291/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/124291/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/124291",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/124291/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/124291/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/124291/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/124291",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/124329": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/124329/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/124329/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/124329/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/124329/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/124329.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/124329/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/124329/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/124329/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/124329/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/124329/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/124329/contributors",
+ "created_at": "2024-01-10T15:16:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/124329/deployments",
+ "description": "Alternative time representation in dopamine models (Rivest et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/124329/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/124329/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/124329/forks",
+ "full_name": "OpenSourceBrain/124329",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/124329/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/124329/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/124329/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/124329.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/124329",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/124329/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/124329",
+ "id": 741523339,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/124329/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/124329/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/124329/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/124329/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/124329/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/124329/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/124329/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/124329/milestones{/number}",
+ "mirror_url": null,
+ "name": "124329",
+ "node_id": "R_kgDOLDK_iw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/124329/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/124329/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/124329/releases{/id}",
+ "size": 417,
+ "ssh_url": "git@github.com:OpenSourceBrain/124329.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/124329/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/124329/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/124329/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/124329/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/124329",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/124329/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/124329/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/124329/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/124329",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/124392": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/124392/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/124392/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/124392/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/124392/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/124392.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/124392/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/124392/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/124392/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/124392/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/124392/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/124392/contributors",
+ "created_at": "2024-01-10T15:16:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/124392/deployments",
+ "description": "Epilepsy may be caused by very small functional changes in ion channels (Thomas et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/124392/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/124392/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/124392/forks",
+ "full_name": "OpenSourceBrain/124392",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/124392/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/124392/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/124392/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/124392.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/124392",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/124392/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/124392",
+ "id": 741523357,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/124392/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/124392/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/124392/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/124392/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/124392/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/124392/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/124392/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/124392/milestones{/number}",
+ "mirror_url": null,
+ "name": "124392",
+ "node_id": "R_kgDOLDK_nQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/124392/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/124392/pulls{/number}",
+ "pushed_at": "2023-11-28T20:39:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/124392/releases{/id}",
+ "size": 379,
+ "ssh_url": "git@github.com:OpenSourceBrain/124392.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/124392/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/124392/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/124392/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/124392/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/124392",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/124392/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/124392/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/124392/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/124392",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/124394": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/124394/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/124394/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/124394/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/124394/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/124394.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/124394/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/124394/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/124394/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/124394/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/124394/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/124394/contributors",
+ "created_at": "2024-01-10T15:16:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/124394/deployments",
+ "description": "Dendritic Na+ spike initiation and backpropagation of APs in active dendrites (Nevian et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/124394/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/124394/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/124394/forks",
+ "full_name": "OpenSourceBrain/124394",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/124394/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/124394/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/124394/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/124394.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/124394",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/124394/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/124394",
+ "id": 741523374,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/124394/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/124394/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/124394/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/124394/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/124394/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/124394/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/124394/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/124394/milestones{/number}",
+ "mirror_url": null,
+ "name": "124394",
+ "node_id": "R_kgDOLDK_rg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/124394/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/124394/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/124394/releases{/id}",
+ "size": 79,
+ "ssh_url": "git@github.com:OpenSourceBrain/124394.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/124394/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/124394/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/124394/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/124394/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/124394",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/124394/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/124394/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/124394/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/124394",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/124513": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/124513/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/124513/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/124513/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/124513/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/124513.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/124513/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/124513/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/124513/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/124513/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/124513/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/124513/contributors",
+ "created_at": "2024-01-10T15:16:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/124513/deployments",
+ "description": "Dentate gyrus (Morgan et al. 2007, 2008, Santhakumar et al. 2005, Dyhrfjeld-Johnsen et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/124513/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/124513/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/124513/forks",
+ "full_name": "OpenSourceBrain/124513",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/124513/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/124513/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/124513/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/124513.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/124513",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/124513/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/124513",
+ "id": 741523387,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/124513/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/124513/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/124513/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/124513/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/124513/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/124513/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/124513/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/124513/milestones{/number}",
+ "mirror_url": null,
+ "name": "124513",
+ "node_id": "R_kgDOLDK_uw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/124513/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/124513/pulls{/number}",
+ "pushed_at": "2023-11-28T20:40:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/124513/releases{/id}",
+ "size": 76,
+ "ssh_url": "git@github.com:OpenSourceBrain/124513.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/124513/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/124513/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/124513/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/124513/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/124513",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/124513/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/124513/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/124513/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:16:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/124513",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125125": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125125/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125125/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125125/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125125/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125125.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125125/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125125/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125125/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125125/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125125/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125125/contributors",
+ "created_at": "2024-01-10T15:17:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125125/deployments",
+ "description": "Reduced leech heart interneuron (Channell et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125125/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125125/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125125/forks",
+ "full_name": "OpenSourceBrain/125125",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125125/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125125/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125125/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125125.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125125",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125125/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125125",
+ "id": 741523408,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125125/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125125/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125125/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125125/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125125/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125125/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125125/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125125/milestones{/number}",
+ "mirror_url": null,
+ "name": "125125",
+ "node_id": "R_kgDOLDK_0A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125125/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125125/pulls{/number}",
+ "pushed_at": "2019-05-31T02:38:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125125/releases{/id}",
+ "size": 2475,
+ "ssh_url": "git@github.com:OpenSourceBrain/125125.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125125/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125125/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125125/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125125/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125125",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125125/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125125/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125125/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125125",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125152": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125152/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125152/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125152/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125152/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125152.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125152/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125152/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125152/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125152/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125152/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125152/contributors",
+ "created_at": "2024-01-10T15:17:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125152/deployments",
+ "description": "CA1 pyramidal neuron to study INaP properties and repetitive firing (Uebachs et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125152/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125152/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125152/forks",
+ "full_name": "OpenSourceBrain/125152",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125152/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125152/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125152/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125152.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125152",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125152/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125152",
+ "id": 741523420,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125152/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125152/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125152/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125152/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125152/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125152/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125152/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125152/milestones{/number}",
+ "mirror_url": null,
+ "name": "125152",
+ "node_id": "R_kgDOLDK_3A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125152/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125152/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125152/releases{/id}",
+ "size": 41,
+ "ssh_url": "git@github.com:OpenSourceBrain/125152.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125152/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125152/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125152/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125152/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125152",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125152/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125152/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125152/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125152",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125154": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125154/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125154/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125154/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125154/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125154.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125154/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125154/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125154/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125154/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125154/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125154/contributors",
+ "created_at": "2024-01-10T15:17:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125154/deployments",
+ "description": "Simulation studies on mechanisms of levetiracetam-mediated inhibition of IK(DR) (Huang et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125154/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125154/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125154/forks",
+ "full_name": "OpenSourceBrain/125154",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125154/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125154/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125154/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125154.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125154",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125154/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125154",
+ "id": 741523432,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125154/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125154/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125154/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125154/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125154/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125154/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125154/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125154/milestones{/number}",
+ "mirror_url": null,
+ "name": "125154",
+ "node_id": "R_kgDOLDK_6A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125154/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125154/pulls{/number}",
+ "pushed_at": "2019-05-31T02:51:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125154/releases{/id}",
+ "size": 659,
+ "ssh_url": "git@github.com:OpenSourceBrain/125154.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125154/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125154/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125154/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125154/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125154",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125154/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125154/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125154/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125154",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125290": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125290/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125290/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125290/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125290/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125290.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125290/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125290/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125290/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125290/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125290/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125290/contributors",
+ "created_at": "2024-01-10T15:17:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125290/deployments",
+ "description": "Maximum entropy model to predict spatiotemporal spike patterns (Marre et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125290/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125290/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125290/forks",
+ "full_name": "OpenSourceBrain/125290",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125290/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125290/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125290/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125290.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125290",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125290/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125290",
+ "id": 741523451,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125290/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125290/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125290/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125290/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125290/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125290/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125290/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125290/milestones{/number}",
+ "mirror_url": null,
+ "name": "125290",
+ "node_id": "R_kgDOLDK_-w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125290/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125290/pulls{/number}",
+ "pushed_at": "2019-05-31T02:39:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125290/releases{/id}",
+ "size": 18,
+ "ssh_url": "git@github.com:OpenSourceBrain/125290.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125290/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125290/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125290/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125290/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125290",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125290/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125290/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125290/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125290",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125378": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125378/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125378/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125378/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125378/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125378.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125378/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125378/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125378/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125378/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125378/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125378/contributors",
+ "created_at": "2024-01-10T15:17:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125378/deployments",
+ "description": "Availability of low-threshold Ca2+ current in retinal ganglion cells (Lee SC et al. 2003)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125378/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125378/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125378/forks",
+ "full_name": "OpenSourceBrain/125378",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125378/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125378/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125378/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125378.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125378",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125378/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125378",
+ "id": 741523464,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125378/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125378/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125378/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125378/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125378/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125378/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125378/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125378/milestones{/number}",
+ "mirror_url": null,
+ "name": "125378",
+ "node_id": "R_kgDOLDLACA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125378/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125378/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125378/releases{/id}",
+ "size": 24,
+ "ssh_url": "git@github.com:OpenSourceBrain/125378.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125378/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125378/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125378/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125378/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125378",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125378/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125378/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125378/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125378",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125385": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125385/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125385/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125385/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125385/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125385.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125385/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125385/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125385/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125385/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125385/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125385/contributors",
+ "created_at": "2024-01-10T15:17:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125385/deployments",
+ "description": "Spike propagation in dendrites with stochastic ion channels (Diba et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125385/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125385/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125385/forks",
+ "full_name": "OpenSourceBrain/125385",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125385/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125385/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125385/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125385.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/125385",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125385/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125385",
+ "id": 741523482,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125385/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125385/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125385/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125385/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125385/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125385/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125385/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125385/milestones{/number}",
+ "mirror_url": null,
+ "name": "125385",
+ "node_id": "R_kgDOLDLAGg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125385/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125385/pulls{/number}",
+ "pushed_at": "2018-04-23T18:15:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125385/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/125385.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125385/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125385/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125385/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125385/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125385",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125385/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125385/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125385/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125385",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125529": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125529/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125529/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125529/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125529/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125529.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125529/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125529/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125529/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125529/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125529/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125529/contributors",
+ "created_at": "2024-01-10T15:17:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125529/deployments",
+ "description": "Respiratory central pattern generator network in mammalian brainstem (Rubin et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125529/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125529/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125529/forks",
+ "full_name": "OpenSourceBrain/125529",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125529/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125529/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125529/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125529.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125529",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125529/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125529",
+ "id": 741523499,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125529/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125529/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125529/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125529/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125529/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125529/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125529/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125529/milestones{/number}",
+ "mirror_url": null,
+ "name": "125529",
+ "node_id": "R_kgDOLDLAKw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125529/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125529/pulls{/number}",
+ "pushed_at": "2019-05-31T04:56:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125529/releases{/id}",
+ "size": 46,
+ "ssh_url": "git@github.com:OpenSourceBrain/125529.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125529/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125529/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125529/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125529/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125529",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125529/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125529/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125529/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125529",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125649": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125649/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125649/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125649/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125649/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125649.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125649/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125649/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125649/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125649/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125649/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125649/contributors",
+ "created_at": "2024-01-10T15:17:18Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125649/deployments",
+ "description": "Ca2+-activated I_CAN and synaptic depression promotes network-dependent oscil. (Rubin et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125649/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125649/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125649/forks",
+ "full_name": "OpenSourceBrain/125649",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125649/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125649/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125649/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125649.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/125649",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125649/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125649",
+ "id": 741523511,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125649/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125649/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125649/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125649/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125649/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125649/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125649/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125649/milestones{/number}",
+ "mirror_url": null,
+ "name": "125649",
+ "node_id": "R_kgDOLDLANw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125649/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125649/pulls{/number}",
+ "pushed_at": "2023-12-23T03:40:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125649/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/125649.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125649/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125649/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125649/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125649/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125649",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125649/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125649/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125649/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125649",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125676": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125676/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125676/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125676/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125676/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125676.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125676/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125676/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125676/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125676/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125676/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125676/contributors",
+ "created_at": "2024-01-10T15:17:20Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125676/deployments",
+ "description": "Ca2+ current versus Ca2+ channel cooperativity of exocytosis (Matveev et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125676/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125676/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125676/forks",
+ "full_name": "OpenSourceBrain/125676",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125676/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125676/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125676/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125676.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/125676",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125676/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125676",
+ "id": 741523530,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125676/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125676/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125676/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125676/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125676/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125676/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125676/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125676/milestones{/number}",
+ "mirror_url": null,
+ "name": "125676",
+ "node_id": "R_kgDOLDLASg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125676/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125676/pulls{/number}",
+ "pushed_at": "2023-12-23T03:40:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125676/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/125676.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125676/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125676/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125676/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125676/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125676",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125676/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125676/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125676/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125676",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125683": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125683/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125683/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125683/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125683/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125683.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125683/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125683/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125683/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125683/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125683/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125683/contributors",
+ "created_at": "2024-01-10T15:17:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125683/deployments",
+ "description": "Deterministic chaos in a mathematical model of a snail neuron (Komendantov and Kononenko 1996)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125683/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125683/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125683/forks",
+ "full_name": "OpenSourceBrain/125683",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125683/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125683/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125683/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125683.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125683",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125683/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125683",
+ "id": 741523546,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125683/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125683/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125683/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125683/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125683/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125683/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125683/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125683/milestones{/number}",
+ "mirror_url": null,
+ "name": "125683",
+ "node_id": "R_kgDOLDLAWg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125683/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125683/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125683/releases{/id}",
+ "size": 1675,
+ "ssh_url": "git@github.com:OpenSourceBrain/125683.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125683/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125683/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125683/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125683/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125683",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125683/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125683/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125683/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125683",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125689": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125689/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125689/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125689/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125689/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125689.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125689/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125689/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125689/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125689/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125689/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125689/contributors",
+ "created_at": "2024-01-10T15:17:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125689/deployments",
+ "description": "Balance of excitation and inhibition (Carvalho and Buonomano 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125689/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125689/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125689/forks",
+ "full_name": "OpenSourceBrain/125689",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125689/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125689/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125689/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125689.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/125689",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125689/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125689",
+ "id": 741523573,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125689/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125689/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125689/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125689/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125689/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125689/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125689/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125689/milestones{/number}",
+ "mirror_url": null,
+ "name": "125689",
+ "node_id": "R_kgDOLDLAdQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125689/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125689/pulls{/number}",
+ "pushed_at": "2018-04-23T18:15:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125689/releases{/id}",
+ "size": 170,
+ "ssh_url": "git@github.com:OpenSourceBrain/125689.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125689/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125689/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125689/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125689/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125689",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125689/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125689/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125689/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125689",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125733": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125733/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125733/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125733/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125733/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125733.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125733/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125733/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125733/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125733/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125733/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125733/contributors",
+ "created_at": "2024-01-10T15:17:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125733/deployments",
+ "description": "Hippocampus CA1: Temporal sensitivity of signaling pathways underlying LTP (Kim et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125733/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125733/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125733/forks",
+ "full_name": "OpenSourceBrain/125733",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125733/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125733/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125733/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125733.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125733",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125733/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125733",
+ "id": 741523597,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125733/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125733/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125733/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125733/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125733/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125733/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125733/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125733/milestones{/number}",
+ "mirror_url": null,
+ "name": "125733",
+ "node_id": "R_kgDOLDLAjQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125733/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125733/pulls{/number}",
+ "pushed_at": "2022-02-17T19:22:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125733/releases{/id}",
+ "size": 267,
+ "ssh_url": "git@github.com:OpenSourceBrain/125733.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125733/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125733/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125733/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125733/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125733",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125733/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125733/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125733/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125733",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125745": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125745/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125745/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125745/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125745/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125745.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125745/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125745/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125745/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125745/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125745/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125745/contributors",
+ "created_at": "2024-01-10T15:17:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125745/deployments",
+ "description": "Calcium waves in neuroblastoma cells (Fink et al. 2000)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125745/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125745/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125745/forks",
+ "full_name": "OpenSourceBrain/125745",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125745/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125745/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125745/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125745.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125745",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125745/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125745",
+ "id": 741523614,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125745/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125745/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125745/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125745/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125745/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125745/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125745/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125745/milestones{/number}",
+ "mirror_url": null,
+ "name": "125745",
+ "node_id": "R_kgDOLDLAng",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125745/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125745/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125745/releases{/id}",
+ "size": 78,
+ "ssh_url": "git@github.com:OpenSourceBrain/125745.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125745/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125745/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125745/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125745/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125745",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125745/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125745/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125745/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125745",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125748": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125748/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125748/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125748/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125748/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125748.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125748/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125748/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125748/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125748/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125748/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125748/contributors",
+ "created_at": "2024-01-10T15:17:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125748/deployments",
+ "description": "Huntington`s disease model (Gambazzi et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125748/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125748/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125748/forks",
+ "full_name": "OpenSourceBrain/125748",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125748/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125748/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125748/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125748.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125748",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125748/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125748",
+ "id": 741523623,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125748/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125748/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125748/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125748/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125748/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125748/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125748/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125748/milestones{/number}",
+ "mirror_url": null,
+ "name": "125748",
+ "node_id": "R_kgDOLDLApw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125748/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125748/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125748/releases{/id}",
+ "size": 160,
+ "ssh_url": "git@github.com:OpenSourceBrain/125748.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125748/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125748/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125748/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125748/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125748",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125748/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125748/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125748/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125748",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125855": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125855/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125855/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125855/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125855/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125855.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125855/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125855/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125855/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125855/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125855/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125855/contributors",
+ "created_at": "2024-01-10T15:17:37Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125855/deployments",
+ "description": "Long-term adaptation with power-law dynamics (Zilany et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125855/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125855/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125855/forks",
+ "full_name": "OpenSourceBrain/125855",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125855/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125855/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125855/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125855.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/125855",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125855/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125855",
+ "id": 741523637,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125855/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125855/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125855/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125855/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125855/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125855/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125855/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125855/milestones{/number}",
+ "mirror_url": null,
+ "name": "125855",
+ "node_id": "R_kgDOLDLAtQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125855/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125855/pulls{/number}",
+ "pushed_at": "2023-12-23T03:41:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125855/releases{/id}",
+ "size": 282,
+ "ssh_url": "git@github.com:OpenSourceBrain/125855.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125855/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125855/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125855/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125855/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125855",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125855/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125855/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125855/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125855",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/125857": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/125857/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/125857/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/125857/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/125857/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/125857.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/125857/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/125857/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/125857/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/125857/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/125857/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/125857/contributors",
+ "created_at": "2024-01-10T15:17:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/125857/deployments",
+ "description": "A Fast Rhythmic Bursting Cell: in vivo cell modeling (Lee 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/125857/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/125857/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/125857/forks",
+ "full_name": "OpenSourceBrain/125857",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/125857/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/125857/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/125857/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/125857.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/125857",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/125857/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/125857",
+ "id": 741523659,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/125857/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/125857/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/125857/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/125857/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/125857/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/125857/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/125857/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/125857/milestones{/number}",
+ "mirror_url": null,
+ "name": "125857",
+ "node_id": "R_kgDOLDLAyw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/125857/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/125857/pulls{/number}",
+ "pushed_at": "2019-05-31T04:23:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/125857/releases{/id}",
+ "size": 1032,
+ "ssh_url": "git@github.com:OpenSourceBrain/125857.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/125857/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/125857/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/125857/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/125857/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/125857",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/125857/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/125857/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/125857/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/125857",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126052": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126052/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126052/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126052/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126052/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126052.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126052/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126052/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126052/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126052/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126052/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126052/contributors",
+ "created_at": "2024-01-10T15:17:42Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126052/deployments",
+ "description": "Integrate and fire model code for spike-based coincidence-detection (Heinz et al. 2001, others)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126052/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126052/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126052/forks",
+ "full_name": "OpenSourceBrain/126052",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126052/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126052/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126052/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126052.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/126052",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126052/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126052",
+ "id": 741523674,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126052/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126052/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126052/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126052/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126052/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126052/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126052/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126052/milestones{/number}",
+ "mirror_url": null,
+ "name": "126052",
+ "node_id": "R_kgDOLDLA2g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126052/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126052/pulls{/number}",
+ "pushed_at": "2023-12-23T03:41:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126052/releases{/id}",
+ "size": 1081,
+ "ssh_url": "git@github.com:OpenSourceBrain/126052.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126052/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126052/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126052/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126052/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126052",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126052/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126052/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126052/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126052",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126096": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126096/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126096/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126096/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126096/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126096.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126096/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126096/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126096/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126096/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126096/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126096/contributors",
+ "created_at": "2024-01-10T15:17:45Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126096/deployments",
+ "description": "Model of neural responses to amplitude-modulated tones (Nelson and Carney 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126096/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126096/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126096/forks",
+ "full_name": "OpenSourceBrain/126096",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126096/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126096/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126096/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126096.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/126096",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126096/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126096",
+ "id": 741523698,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126096/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126096/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126096/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126096/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126096/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126096/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126096/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126096/milestones{/number}",
+ "mirror_url": null,
+ "name": "126096",
+ "node_id": "R_kgDOLDLA8g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126096/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126096/pulls{/number}",
+ "pushed_at": "2023-12-23T03:41:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126096/releases{/id}",
+ "size": 207,
+ "ssh_url": "git@github.com:OpenSourceBrain/126096.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126096/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126096/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126096/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126096/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126096",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126096/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126096/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126096/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126096",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126098": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126098/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126098/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126098/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126098/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126098.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126098/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126098/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126098/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126098/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126098/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126098/contributors",
+ "created_at": "2024-01-10T15:17:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126098/deployments",
+ "description": "A kinetic model of dopamine- and calcium-dependent striatal synaptic plasticity (Nakano et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126098/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126098/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126098/forks",
+ "full_name": "OpenSourceBrain/126098",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126098/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126098/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126098/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126098.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/126098",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126098/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126098",
+ "id": 741523710,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126098/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126098/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126098/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126098/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126098/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126098/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126098/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126098/milestones{/number}",
+ "mirror_url": null,
+ "name": "126098",
+ "node_id": "R_kgDOLDLA_g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126098/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126098/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126098/releases{/id}",
+ "size": 374,
+ "ssh_url": "git@github.com:OpenSourceBrain/126098.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126098/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126098/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126098/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126098/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126098",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126098/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126098/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126098/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126098",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/12631": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/12631/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/12631/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/12631/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/12631/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/12631.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/12631/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/12631/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/12631/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/12631/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/12631/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/12631/contributors",
+ "created_at": "2024-01-08T14:05:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/12631/deployments",
+ "description": "Computer model of clonazepam's effect in thalamic slice (Lytton 1997)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/12631/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/12631/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/12631/forks",
+ "full_name": "OpenSourceBrain/12631",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/12631/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/12631/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/12631/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/12631.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/12631",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/12631/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/12631",
+ "id": 740518258,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/12631/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/12631/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/12631/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/12631/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/12631/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/12631/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/12631/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/12631/milestones{/number}",
+ "mirror_url": null,
+ "name": "12631",
+ "node_id": "R_kgDOLCNpcg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/12631/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/12631/pulls{/number}",
+ "pushed_at": "2023-04-30T19:09:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/12631/releases{/id}",
+ "size": 323,
+ "ssh_url": "git@github.com:OpenSourceBrain/12631.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/12631/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/12631/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/12631/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/12631/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/12631",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/12631/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/12631/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/12631/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/12631",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126371": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126371/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126371/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126371/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126371/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126371.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126371/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126371/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126371/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126371/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126371/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126371/contributors",
+ "created_at": "2024-01-10T15:17:49Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126371/deployments",
+ "description": "Encoding and discrimination of vowel-like sounds (Tan and Carney 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126371/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126371/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126371/forks",
+ "full_name": "OpenSourceBrain/126371",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126371/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126371/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126371/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126371.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/126371",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126371/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126371",
+ "id": 741523740,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126371/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126371/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126371/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126371/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126371/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126371/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126371/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126371/milestones{/number}",
+ "mirror_url": null,
+ "name": "126371",
+ "node_id": "R_kgDOLDLBHA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126371/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126371/pulls{/number}",
+ "pushed_at": "2023-12-23T03:41:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126371/releases{/id}",
+ "size": 1204,
+ "ssh_url": "git@github.com:OpenSourceBrain/126371.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126371/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126371/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126371/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126371/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126371",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126371/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126371/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126371/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126371",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126389": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126389/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126389/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126389/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126389/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126389.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126389/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126389/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126389/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126389/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126389/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126389/contributors",
+ "created_at": "2024-01-10T15:17:52Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126389/deployments",
+ "description": "Auditory nerve spontaneous rate histograms (Jackson and Carney 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126389/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126389/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126389/forks",
+ "full_name": "OpenSourceBrain/126389",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126389/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126389/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126389/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126389.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/126389",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126389/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126389",
+ "id": 741523750,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126389/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126389/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126389/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126389/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126389/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126389/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126389/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126389/milestones{/number}",
+ "mirror_url": null,
+ "name": "126389",
+ "node_id": "R_kgDOLDLBJg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126389/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126389/pulls{/number}",
+ "pushed_at": "2023-12-23T03:41:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126389/releases{/id}",
+ "size": 451,
+ "ssh_url": "git@github.com:OpenSourceBrain/126389.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126389/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126389/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126389/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126389/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126389",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126389/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126389/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126389/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126389",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126392": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126392/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126392/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126392/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126392/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126392.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126392/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126392/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126392/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126392/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126392/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126392/contributors",
+ "created_at": "2024-01-10T15:17:54Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126392/deployments",
+ "description": "Response properties of an integrate and fire model (Zhang and Carney 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126392/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126392/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126392/forks",
+ "full_name": "OpenSourceBrain/126392",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126392/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126392/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126392/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126392.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/126392",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126392/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126392",
+ "id": 741523768,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126392/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126392/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126392/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126392/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126392/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126392/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126392/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126392/milestones{/number}",
+ "mirror_url": null,
+ "name": "126392",
+ "node_id": "R_kgDOLDLBOA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126392/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126392/pulls{/number}",
+ "pushed_at": "2023-12-23T03:42:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126392/releases{/id}",
+ "size": 216,
+ "ssh_url": "git@github.com:OpenSourceBrain/126392.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126392/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126392/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126392/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126392/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126392",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126392/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126392/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126392/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126392",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126465": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126465/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126465/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126465/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126465/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126465.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126465/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126465/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126465/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126465/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126465/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126465/contributors",
+ "created_at": "2024-01-10T15:17:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126465/deployments",
+ "description": "Spike-Timing-Based Computation in Sound Localization (Goodman and Brette 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126465/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126465/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126465/forks",
+ "full_name": "OpenSourceBrain/126465",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126465/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126465/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126465/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126465.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/126465",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126465/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126465",
+ "id": 741523783,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126465/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126465/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126465/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126465/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126465/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126465/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126465/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126465/milestones{/number}",
+ "mirror_url": null,
+ "name": "126465",
+ "node_id": "R_kgDOLDLBRw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126465/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126465/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126465/releases{/id}",
+ "size": 8,
+ "ssh_url": "git@github.com:OpenSourceBrain/126465.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126465/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126465/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126465/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126465/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126465",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126465/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126465/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126465/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126465",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126466": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126466/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126466/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126466/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126466/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126466.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126466/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126466/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126466/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126466/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126466/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126466/contributors",
+ "created_at": "2024-01-10T15:17:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126466/deployments",
+ "description": "Asynchronous irregular and up/down states in excitatory and inhibitory NNs (Destexhe 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126466/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126466/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126466/forks",
+ "full_name": "OpenSourceBrain/126466",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126466/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126466/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126466/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126466.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/126466",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126466/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126466",
+ "id": 741523797,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126466/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126466/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126466/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126466/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126466/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126466/languages",
+ "license": {
+ "key": "bsd-3-clause",
+ "name": "BSD 3-Clause \"New\" or \"Revised\" License",
+ "node_id": "MDc6TGljZW5zZTU=",
+ "spdx_id": "BSD-3-Clause",
+ "url": "https://api.github.com/licenses/bsd-3-clause"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126466/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126466/milestones{/number}",
+ "mirror_url": null,
+ "name": "126466",
+ "node_id": "R_kgDOLDLBVQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126466/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126466/pulls{/number}",
+ "pushed_at": "2018-04-23T18:16:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126466/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/126466.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126466/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126466/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126466/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126466/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126466",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126466/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126466/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126466/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:17:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126466",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126467": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126467/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126467/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126467/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126467/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126467.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126467/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126467/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126467/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126467/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126467/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126467/contributors",
+ "created_at": "2024-01-10T15:18:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126467/deployments",
+ "description": "Cardiac sarcomere dynamics (Negroni and Lascano 1996)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126467/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126467/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126467/forks",
+ "full_name": "OpenSourceBrain/126467",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126467/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126467/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126467/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126467.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/126467",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126467/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126467",
+ "id": 741523814,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126467/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126467/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126467/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126467/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126467/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126467/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126467/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126467/milestones{/number}",
+ "mirror_url": null,
+ "name": "126467",
+ "node_id": "R_kgDOLDLBZg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126467/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126467/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126467/releases{/id}",
+ "size": 131,
+ "ssh_url": "git@github.com:OpenSourceBrain/126467.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126467/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126467/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126467/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126467/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126467",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126467/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126467/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126467/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126467",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126471": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126471/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126471/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126471/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126471/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126471.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126471/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126471/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126471/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126471/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126471/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126471/contributors",
+ "created_at": "2024-01-10T15:18:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126471/deployments",
+ "description": "Formation of synfire chains (Jun and Jin 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126471/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126471/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126471/forks",
+ "full_name": "OpenSourceBrain/126471",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126471/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126471/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126471/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126471.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/126471",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126471/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126471",
+ "id": 741523836,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126471/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126471/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126471/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126471/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126471/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126471/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126471/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126471/milestones{/number}",
+ "mirror_url": null,
+ "name": "126471",
+ "node_id": "R_kgDOLDLBfA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126471/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126471/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126471/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/126471.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126471/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126471/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126471/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126471/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126471",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126471/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126471/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126471/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126471",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126489": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126489/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126489/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126489/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126489/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126489.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126489/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126489/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126489/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126489/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126489/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126489/contributors",
+ "created_at": "2024-01-10T15:18:05Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126489/deployments",
+ "description": "Models analysis for auditory-nerve synapse (Zhang and Carney 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126489/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126489/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126489/forks",
+ "full_name": "OpenSourceBrain/126489",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126489/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126489/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126489/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126489.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/126489",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126489/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126489",
+ "id": 741523852,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126489/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126489/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126489/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126489/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126489/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126489/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126489/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126489/milestones{/number}",
+ "mirror_url": null,
+ "name": "126489",
+ "node_id": "R_kgDOLDLBjA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126489/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126489/pulls{/number}",
+ "pushed_at": "2023-12-23T03:42:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126489/releases{/id}",
+ "size": 211,
+ "ssh_url": "git@github.com:OpenSourceBrain/126489.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126489/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126489/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126489/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126489/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126489",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126489/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126489/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126489/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126489",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126598": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126598/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126598/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126598/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126598/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126598.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126598/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126598/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126598/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126598/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126598/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126598/contributors",
+ "created_at": "2024-01-10T15:18:07Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126598/deployments",
+ "description": "Predicting formant-frequency discrimination in noise (Tan and Carney 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126598/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126598/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126598/forks",
+ "full_name": "OpenSourceBrain/126598",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126598/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126598/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126598/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126598.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/126598",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126598/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126598",
+ "id": 741523867,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126598/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126598/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126598/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126598/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126598/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126598/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126598/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126598/milestones{/number}",
+ "mirror_url": null,
+ "name": "126598",
+ "node_id": "R_kgDOLDLBmw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126598/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126598/pulls{/number}",
+ "pushed_at": "2023-12-23T03:42:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126598/releases{/id}",
+ "size": 2335,
+ "ssh_url": "git@github.com:OpenSourceBrain/126598.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126598/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126598/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126598/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126598/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126598",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126598/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126598/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126598/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126598",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126636": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126636/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126636/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126636/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126636/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126636.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126636/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126636/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126636/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126636/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126636/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126636/contributors",
+ "created_at": "2024-01-10T15:18:09Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126636/deployments",
+ "description": "Models for diotic and dichotic detection (Davidson et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126636/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126636/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126636/forks",
+ "full_name": "OpenSourceBrain/126636",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126636/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126636/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126636/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126636.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/126636",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126636/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126636",
+ "id": 741523882,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126636/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126636/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126636/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126636/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126636/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126636/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126636/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126636/milestones{/number}",
+ "mirror_url": null,
+ "name": "126636",
+ "node_id": "R_kgDOLDLBqg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126636/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126636/pulls{/number}",
+ "pushed_at": "2023-12-23T03:42:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126636/releases{/id}",
+ "size": 1568,
+ "ssh_url": "git@github.com:OpenSourceBrain/126636.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126636/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126636/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126636/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126636/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126636",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126636/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126636/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126636/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126636",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126637": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126637/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126637/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126637/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126637/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126637.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126637/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126637/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126637/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126637/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126637/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126637/contributors",
+ "created_at": "2024-01-10T15:18:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126637/deployments",
+ "description": "A simplified cerebellar Purkinje neuron (the PPR model) (Brown et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126637/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126637/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126637/forks",
+ "full_name": "OpenSourceBrain/126637",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126637/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126637/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126637/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126637.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/126637",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126637/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126637",
+ "id": 741523902,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126637/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126637/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126637/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126637/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126637/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126637/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126637/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126637/milestones{/number}",
+ "mirror_url": null,
+ "name": "126637",
+ "node_id": "R_kgDOLDLBvg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126637/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126637/pulls{/number}",
+ "pushed_at": "2023-11-28T20:40:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126637/releases{/id}",
+ "size": 33,
+ "ssh_url": "git@github.com:OpenSourceBrain/126637.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126637/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126637/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126637/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126637/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126637",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126637/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126637/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126637/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126637",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126640": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126640/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126640/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126640/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126640/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126640.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126640/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126640/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126640/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126640/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126640/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126640/contributors",
+ "created_at": "2024-01-10T15:18:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126640/deployments",
+ "description": "NAcc medium spiny neuron: effects of cannabinoid withdrawal (Spiga et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126640/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126640/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126640/forks",
+ "full_name": "OpenSourceBrain/126640",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126640/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126640/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126640/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126640.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/126640",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126640/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126640",
+ "id": 741523926,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126640/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126640/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126640/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126640/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126640/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126640/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126640/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126640/milestones{/number}",
+ "mirror_url": null,
+ "name": "126640",
+ "node_id": "R_kgDOLDLB1g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126640/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126640/pulls{/number}",
+ "pushed_at": "2023-11-28T20:40:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126640/releases{/id}",
+ "size": 45,
+ "ssh_url": "git@github.com:OpenSourceBrain/126640.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126640/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126640/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126640/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126640/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126640",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126640/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126640/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126640/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126640",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126776": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126776/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126776/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126776/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126776/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126776.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126776/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126776/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126776/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126776/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126776/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126776/contributors",
+ "created_at": "2024-01-10T15:18:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126776/deployments",
+ "description": "CA1 pyramidal neuron: rebound spiking (Ascoli et al.2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126776/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126776/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126776/forks",
+ "full_name": "OpenSourceBrain/126776",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126776/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126776/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126776/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126776.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/126776",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126776/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126776",
+ "id": 741523951,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126776/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126776/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126776/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126776/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126776/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126776/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126776/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126776/milestones{/number}",
+ "mirror_url": null,
+ "name": "126776",
+ "node_id": "R_kgDOLDLB7w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126776/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126776/pulls{/number}",
+ "pushed_at": "2019-05-31T02:36:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126776/releases{/id}",
+ "size": 107,
+ "ssh_url": "git@github.com:OpenSourceBrain/126776.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126776/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126776/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126776/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126776/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126776",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126776/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126776/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126776/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126776",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126814": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126814/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126814/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126814/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126814/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126814.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126814/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126814/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126814/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126814/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126814/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126814/contributors",
+ "created_at": "2024-01-10T15:18:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126814/deployments",
+ "description": "CA3 pyramidal neuron (Safiulina et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126814/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126814/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126814/forks",
+ "full_name": "OpenSourceBrain/126814",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126814/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126814/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126814/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126814.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/126814",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126814/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126814",
+ "id": 741523977,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126814/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126814/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126814/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126814/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126814/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126814/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126814/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126814/milestones{/number}",
+ "mirror_url": null,
+ "name": "126814",
+ "node_id": "R_kgDOLDLCCQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126814/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126814/pulls{/number}",
+ "pushed_at": "2019-05-31T04:54:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126814/releases{/id}",
+ "size": 121,
+ "ssh_url": "git@github.com:OpenSourceBrain/126814.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126814/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126814/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126814/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126814/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126814",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126814/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126814/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126814/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126814",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/126899": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/126899/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/126899/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/126899/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/126899/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/126899.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/126899/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/126899/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/126899/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/126899/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/126899/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/126899/contributors",
+ "created_at": "2024-01-10T15:18:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/126899/deployments",
+ "description": "CN bushy, stellate neurons (Rothman, Manis 2003) (Brian)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/126899/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/126899/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/126899/forks",
+ "full_name": "OpenSourceBrain/126899",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/126899/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/126899/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/126899/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/126899.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/126899",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/126899/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/126899",
+ "id": 741524001,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/126899/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/126899/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/126899/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/126899/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/126899/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/126899/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/126899/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/126899/milestones{/number}",
+ "mirror_url": null,
+ "name": "126899",
+ "node_id": "R_kgDOLDLCIQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/126899/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/126899/pulls{/number}",
+ "pushed_at": "2019-05-31T03:34:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/126899/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/126899.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/126899/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/126899/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/126899/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/126899/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/126899",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/126899/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/126899/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/126899/git/trees{/sha}",
+ "updated_at": "2024-01-10T15:18:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/126899",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127021": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127021/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127021/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127021/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127021/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127021.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127021/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127021/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127021/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127021/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127021/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127021/contributors",
+ "created_at": "2024-01-10T17:00:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127021/deployments",
+ "description": "Alcohol excites Cerebellar Golgi Cells by inhibiting the Na+/K+ ATPase (Botta et al.2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127021/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127021/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127021/forks",
+ "full_name": "OpenSourceBrain/127021",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127021/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127021/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127021/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127021.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/127021",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127021/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127021",
+ "id": 741567947,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127021/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127021/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127021/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127021/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127021/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127021/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127021/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127021/milestones{/number}",
+ "mirror_url": null,
+ "name": "127021",
+ "node_id": "R_kgDOLDNtyw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127021/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127021/pulls{/number}",
+ "pushed_at": "2023-11-28T20:40:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127021/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/127021.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127021/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127021/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127021/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127021/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127021",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127021/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127021/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127021/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127021",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127022": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127022/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127022/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127022/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127022/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127022.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127022/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127022/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127022/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127022/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127022/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127022/contributors",
+ "created_at": "2024-01-10T17:00:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127022/deployments",
+ "description": "Control of vibrissa motoneuron firing (Harish and Golomb 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127022/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127022/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127022/forks",
+ "full_name": "OpenSourceBrain/127022",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127022/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127022/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127022/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127022.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127022",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127022/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127022",
+ "id": 741567958,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127022/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127022/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127022/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127022/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127022/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127022/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127022/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127022/milestones{/number}",
+ "mirror_url": null,
+ "name": "127022",
+ "node_id": "R_kgDOLDNt1g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127022/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127022/pulls{/number}",
+ "pushed_at": "2022-02-25T07:51:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127022/releases{/id}",
+ "size": 50,
+ "ssh_url": "git@github.com:OpenSourceBrain/127022.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127022/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127022/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127022/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127022/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127022",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127022/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127022/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127022/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127022",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127190": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127190/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127190/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127190/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127190/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127190.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127190/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127190/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127190/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127190/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127190/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127190/contributors",
+ "created_at": "2024-01-10T17:00:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127190/deployments",
+ "description": "Pipette and membrane patch geometry effects on GABAa currents patch-clamp exps (Moroni et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127190/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127190/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127190/forks",
+ "full_name": "OpenSourceBrain/127190",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127190/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127190/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127190/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127190.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127190",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127190/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127190",
+ "id": 741567973,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127190/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127190/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127190/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127190/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127190/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127190/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127190/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127190/milestones{/number}",
+ "mirror_url": null,
+ "name": "127190",
+ "node_id": "R_kgDOLDNt5Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127190/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127190/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127190/releases{/id}",
+ "size": 171,
+ "ssh_url": "git@github.com:OpenSourceBrain/127190.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127190/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127190/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127190/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127190/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127190",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127190/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127190/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127190/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127190",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127192": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127192/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127192/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127192/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127192/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127192.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127192/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127192/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127192/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127192/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127192/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127192/contributors",
+ "created_at": "2024-01-10T17:00:45Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127192/deployments",
+ "description": "Network topologies for producing limited sustained activation (Kaiser and Hilgetag 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127192/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127192/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127192/forks",
+ "full_name": "OpenSourceBrain/127192",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127192/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127192/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127192/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127192.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/127192",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127192/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127192",
+ "id": 741567992,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127192/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127192/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127192/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127192/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127192/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127192/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127192/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127192/milestones{/number}",
+ "mirror_url": null,
+ "name": "127192",
+ "node_id": "R_kgDOLDNt-A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127192/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127192/pulls{/number}",
+ "pushed_at": "2023-12-23T03:42:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127192/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/127192.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127192/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127192/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127192/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127192/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127192",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127192/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127192/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127192/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127192",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127305": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127305/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127305/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127305/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127305/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127305.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127305/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127305/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127305/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127305/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127305/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127305/contributors",
+ "created_at": "2024-01-10T17:00:47Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127305/deployments",
+ "description": "Spatial summation of excitatory and inhibitory inputs in pyramidal neurons (Hao et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127305/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127305/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127305/forks",
+ "full_name": "OpenSourceBrain/127305",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127305/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127305/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127305/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127305.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/127305",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127305/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127305",
+ "id": 741568004,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127305/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127305/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127305/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127305/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127305/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127305/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127305/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127305/milestones{/number}",
+ "mirror_url": null,
+ "name": "127305",
+ "node_id": "R_kgDOLDNuBA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127305/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127305/pulls{/number}",
+ "pushed_at": "2023-12-23T03:42:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127305/releases{/id}",
+ "size": 169,
+ "ssh_url": "git@github.com:OpenSourceBrain/127305.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127305/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127305/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127305/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127305/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127305",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127305/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127305/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127305/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127305",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127321": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127321/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127321/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127321/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127321/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127321.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127321/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127321/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127321/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127321/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127321/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127321/contributors",
+ "created_at": "2024-01-10T17:00:49Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127321/deployments",
+ "description": "A model of the temporal pattern generator of C. elegans egg-laying behavior (Zhang et. al 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127321/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127321/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127321/forks",
+ "full_name": "OpenSourceBrain/127321",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127321/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127321/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127321/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127321.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/127321",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127321/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127321",
+ "id": 741568022,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127321/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127321/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127321/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127321/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127321/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127321/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127321/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127321/milestones{/number}",
+ "mirror_url": null,
+ "name": "127321",
+ "node_id": "R_kgDOLDNuFg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127321/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127321/pulls{/number}",
+ "pushed_at": "2023-12-23T03:43:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127321/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/127321.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127321/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127321/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127321/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127321/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127321",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127321/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127321/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127321/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127321",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127351": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127351/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127351/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127351/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127351/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127351.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127351/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127351/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127351/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127351/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127351/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127351/contributors",
+ "created_at": "2024-01-10T17:00:52Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127351/deployments",
+ "description": "A two-stage model of dendritic integration in CA1 pyramidal neurons (Katz et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127351/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127351/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127351/forks",
+ "full_name": "OpenSourceBrain/127351",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127351/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127351/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127351/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127351.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/127351",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127351/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127351",
+ "id": 741568041,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127351/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127351/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127351/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127351/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127351/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127351/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127351/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127351/milestones{/number}",
+ "mirror_url": null,
+ "name": "127351",
+ "node_id": "R_kgDOLDNuKQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127351/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127351/pulls{/number}",
+ "pushed_at": "2023-12-23T03:43:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127351/releases{/id}",
+ "size": 2174,
+ "ssh_url": "git@github.com:OpenSourceBrain/127351.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127351/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127351/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127351/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127351/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127351",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127351/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127351/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127351/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127351",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127355": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127355/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127355/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127355/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127355/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127355.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127355/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127355/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127355/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127355/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127355/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127355/contributors",
+ "created_at": "2024-01-10T17:00:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127355/deployments",
+ "description": "Prediction for the presence of voltage-gated Ca2+ channels in myelinated central axons (Brown 2003)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127355/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127355/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127355/forks",
+ "full_name": "OpenSourceBrain/127355",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127355/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127355/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127355/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127355.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127355",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127355/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127355",
+ "id": 741568063,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127355/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127355/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127355/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127355/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127355/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127355/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127355/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127355/milestones{/number}",
+ "mirror_url": null,
+ "name": "127355",
+ "node_id": "R_kgDOLDNuPw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127355/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127355/pulls{/number}",
+ "pushed_at": "2022-02-18T15:21:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127355/releases{/id}",
+ "size": 48,
+ "ssh_url": "git@github.com:OpenSourceBrain/127355.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127355/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127355/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127355/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127355/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127355",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127355/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127355/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127355/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127355",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127388": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127388/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127388/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127388/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127388/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127388.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127388/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127388/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127388/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127388/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127388/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127388/contributors",
+ "created_at": "2024-01-10T17:00:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127388/deployments",
+ "description": "Basal ganglia network model of subthalamic deep brain stimulation (Hahn and McIntyre 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127388/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127388/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127388/forks",
+ "full_name": "OpenSourceBrain/127388",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127388/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127388/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127388/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127388.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127388",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127388/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127388",
+ "id": 741568085,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127388/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127388/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127388/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127388/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127388/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127388/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127388/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127388/milestones{/number}",
+ "mirror_url": null,
+ "name": "127388",
+ "node_id": "R_kgDOLDNuVQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127388/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127388/pulls{/number}",
+ "pushed_at": "2019-08-03T00:09:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127388/releases{/id}",
+ "size": 238,
+ "ssh_url": "git@github.com:OpenSourceBrain/127388.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127388/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127388/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127388/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127388/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127388",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127388/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127388/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127388/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127388",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127507": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127507/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127507/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127507/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127507/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127507.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127507/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127507/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127507/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127507/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127507/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127507/contributors",
+ "created_at": "2024-01-10T17:00:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127507/deployments",
+ "description": "Regulation of firing frequency in a midbrain dopaminergic neuron model (Kuznetsova et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127507/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127507/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127507/forks",
+ "full_name": "OpenSourceBrain/127507",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127507/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127507/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127507/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127507.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127507",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127507/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127507",
+ "id": 741568102,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127507/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127507/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127507/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127507/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127507/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127507/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127507/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127507/milestones{/number}",
+ "mirror_url": null,
+ "name": "127507",
+ "node_id": "R_kgDOLDNuZg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127507/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127507/pulls{/number}",
+ "pushed_at": "2019-05-31T05:07:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127507/releases{/id}",
+ "size": 93,
+ "ssh_url": "git@github.com:OpenSourceBrain/127507.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127507/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127507/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127507/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127507/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127507",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127507/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127507/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127507/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:00:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127507",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127512": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127512/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127512/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127512/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127512/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127512.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127512/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127512/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127512/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127512/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127512/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127512/contributors",
+ "created_at": "2024-01-10T17:01:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127512/deployments",
+ "description": "Temporal and spatial characteristics of vibrissa responses to motor commands (Simony et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127512/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127512/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127512/forks",
+ "full_name": "OpenSourceBrain/127512",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127512/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127512/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127512/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127512.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127512",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127512/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127512",
+ "id": 741568110,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127512/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127512/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127512/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127512/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127512/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127512/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127512/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127512/milestones{/number}",
+ "mirror_url": null,
+ "name": "127512",
+ "node_id": "R_kgDOLDNubg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127512/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127512/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127512/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/127512.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127512/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127512/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127512/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127512/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127512",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127512/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127512/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127512/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127512",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127728": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127728/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127728/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127728/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127728/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127728.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127728/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127728/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127728/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127728/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127728/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127728/contributors",
+ "created_at": "2024-01-10T17:01:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127728/deployments",
+ "description": "Comparison of full and reduced globus pallidus models (Hendrickson 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127728/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127728/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127728/forks",
+ "full_name": "OpenSourceBrain/127728",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127728/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127728/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127728/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127728.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127728",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127728/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127728",
+ "id": 741568126,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127728/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127728/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127728/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127728/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127728/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127728/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127728/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127728/milestones{/number}",
+ "mirror_url": null,
+ "name": "127728",
+ "node_id": "R_kgDOLDNufg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127728/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127728/pulls{/number}",
+ "pushed_at": "2019-05-31T04:29:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127728/releases{/id}",
+ "size": 555,
+ "ssh_url": "git@github.com:OpenSourceBrain/127728.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127728/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127728/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127728/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127728/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127728",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127728/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127728/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127728/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127728",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127878": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127878/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127878/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127878/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127878/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127878.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127878/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127878/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127878/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127878/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127878/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127878/contributors",
+ "created_at": "2024-01-10T17:01:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127878/deployments",
+ "description": "Global structure, robustness, and modulation of neuronal models (Goldman et al. 2001)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127878/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127878/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127878/forks",
+ "full_name": "OpenSourceBrain/127878",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127878/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127878/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127878/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127878.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127878",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127878/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127878",
+ "id": 741568143,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127878/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127878/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127878/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127878/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127878/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127878/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127878/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127878/milestones{/number}",
+ "mirror_url": null,
+ "name": "127878",
+ "node_id": "R_kgDOLDNujw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127878/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127878/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127878/releases{/id}",
+ "size": 166,
+ "ssh_url": "git@github.com:OpenSourceBrain/127878.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127878/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127878/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127878/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127878/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127878",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127878/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127878/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127878/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127878",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127887": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127887/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127887/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127887/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127887/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127887.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127887/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127887/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127887/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127887/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127887/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127887/contributors",
+ "created_at": "2024-01-10T17:01:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127887/deployments",
+ "description": "Spectral method and high-order finite differences for nonlinear cable (Omurtag and Lytton 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127887/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127887/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127887/forks",
+ "full_name": "OpenSourceBrain/127887",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127887/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127887/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127887/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127887.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127887",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127887/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127887",
+ "id": 741568157,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127887/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127887/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127887/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127887/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127887/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127887/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127887/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127887/milestones{/number}",
+ "mirror_url": null,
+ "name": "127887",
+ "node_id": "R_kgDOLDNunQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127887/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127887/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127887/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/127887.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127887/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127887/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127887/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127887/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127887",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127887/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127887/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127887/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127887",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127967": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127967/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127967/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127967/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127967/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127967.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127967/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127967/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127967/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127967/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127967/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127967/contributors",
+ "created_at": "2024-01-10T17:01:11Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127967/deployments",
+ "description": "Generating coherent patterns of activity from chaotic neural networks (Sussillo and Abbott 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127967/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127967/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127967/forks",
+ "full_name": "OpenSourceBrain/127967",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127967/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127967/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127967/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127967.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/127967",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127967/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127967",
+ "id": 741568170,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127967/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127967/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127967/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127967/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127967/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127967/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127967/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127967/milestones{/number}",
+ "mirror_url": null,
+ "name": "127967",
+ "node_id": "R_kgDOLDNuqg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127967/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127967/pulls{/number}",
+ "pushed_at": "2023-12-23T03:43:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127967/releases{/id}",
+ "size": 10,
+ "ssh_url": "git@github.com:OpenSourceBrain/127967.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127967/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127967/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127967/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127967/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127967",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127967/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127967/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127967/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127967",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127992": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127992/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127992/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127992/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127992/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127992.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127992/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127992/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127992/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127992/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127992/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127992/contributors",
+ "created_at": "2024-01-10T17:01:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127992/deployments",
+ "description": "Accurate and fast simulation of channel noise in conductance-based model neurons (Linaro et al 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127992/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127992/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127992/forks",
+ "full_name": "OpenSourceBrain/127992",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127992/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127992/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127992/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127992.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127992",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127992/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127992",
+ "id": 741568189,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127992/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127992/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127992/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127992/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127992/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127992/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127992/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127992/milestones{/number}",
+ "mirror_url": null,
+ "name": "127992",
+ "node_id": "R_kgDOLDNuvQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127992/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127992/pulls{/number}",
+ "pushed_at": "2019-05-31T03:27:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127992/releases{/id}",
+ "size": 29,
+ "ssh_url": "git@github.com:OpenSourceBrain/127992.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127992/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127992/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127992/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127992/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127992",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127992/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127992/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127992/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127992",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127995": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127995/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127995/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127995/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127995/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127995.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127995/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127995/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127995/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127995/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127995/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127995/contributors",
+ "created_at": "2024-01-10T17:01:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127995/deployments",
+ "description": "Olfactory bulb cluster formation (Migliore et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127995/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127995/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127995/forks",
+ "full_name": "OpenSourceBrain/127995",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127995/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127995/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127995/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127995.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/127995",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127995/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127995",
+ "id": 741568203,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127995/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127995/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127995/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127995/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127995/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127995/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127995/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127995/milestones{/number}",
+ "mirror_url": null,
+ "name": "127995",
+ "node_id": "R_kgDOLDNuyw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127995/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127995/pulls{/number}",
+ "pushed_at": "2019-05-31T03:42:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127995/releases{/id}",
+ "size": 688,
+ "ssh_url": "git@github.com:OpenSourceBrain/127995.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127995/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127995/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127995/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127995/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127995",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127995/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127995/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127995/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127995",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/127996": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/127996/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/127996/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/127996/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/127996/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/127996.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/127996/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/127996/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/127996/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/127996/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/127996/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/127996/contributors",
+ "created_at": "2024-01-10T17:01:18Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/127996/deployments",
+ "description": "Rapid desynchronization of an electrically coupled Golgi cell network (Vervaeke et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/127996/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/127996/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/127996/forks",
+ "full_name": "OpenSourceBrain/127996",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/127996/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/127996/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/127996/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/127996.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/127996",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/127996/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/127996",
+ "id": 741568219,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/127996/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/127996/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/127996/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/127996/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/127996/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/127996/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/127996/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/127996/milestones{/number}",
+ "mirror_url": null,
+ "name": "127996",
+ "node_id": "R_kgDOLDNu2w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/127996/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/127996/pulls{/number}",
+ "pushed_at": "2023-12-23T03:43:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/127996/releases{/id}",
+ "size": 1778,
+ "ssh_url": "git@github.com:OpenSourceBrain/127996.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/127996/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/127996/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/127996/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/127996/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/127996",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/127996/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/127996/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/127996/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/127996",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128043": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128043/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128043/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128043/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128043/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128043.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128043/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128043/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128043/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128043/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128043/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128043/contributors",
+ "created_at": "2024-01-10T17:01:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128043/deployments",
+ "description": "Stochastic ion channels and neuronal morphology (Cannon et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128043/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128043/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128043/forks",
+ "full_name": "OpenSourceBrain/128043",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128043/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128043/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128043/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128043.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128043",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128043/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128043",
+ "id": 741568234,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128043/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128043/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128043/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128043/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128043/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128043/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128043/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128043/milestones{/number}",
+ "mirror_url": null,
+ "name": "128043",
+ "node_id": "R_kgDOLDNu6g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128043/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128043/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128043/releases{/id}",
+ "size": 1363,
+ "ssh_url": "git@github.com:OpenSourceBrain/128043.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128043/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128043/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128043/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128043/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128043",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128043/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128043/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128043/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128043",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128068": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128068/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128068/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128068/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128068/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128068.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128068/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128068/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128068/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128068/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128068/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128068/contributors",
+ "created_at": "2024-01-10T17:01:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128068/deployments",
+ "description": "Generic Bi-directional Real-time Neural Interface (Zrenner et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128068/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128068/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128068/forks",
+ "full_name": "OpenSourceBrain/128068",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128068/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128068/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128068/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128068.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128068",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128068/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128068",
+ "id": 741568256,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128068/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128068/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128068/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128068/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128068/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128068/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128068/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128068/milestones{/number}",
+ "mirror_url": null,
+ "name": "128068",
+ "node_id": "R_kgDOLDNvAA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128068/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128068/pulls{/number}",
+ "pushed_at": "2019-05-31T03:31:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128068/releases{/id}",
+ "size": 63,
+ "ssh_url": "git@github.com:OpenSourceBrain/128068.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128068/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128068/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128068/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128068/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128068",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128068/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128068/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128068/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128068",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128079": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128079/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128079/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128079/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128079/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128079.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128079/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128079/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128079/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128079/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128079/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128079/contributors",
+ "created_at": "2024-01-10T17:01:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128079/deployments",
+ "description": "Fast sodium channel gating in mossy fiber axons (Schmidt-Hieber et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128079/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128079/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128079/forks",
+ "full_name": "OpenSourceBrain/128079",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128079/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128079/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128079/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128079.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/128079",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128079/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128079",
+ "id": 741568280,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128079/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128079/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128079/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128079/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128079/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128079/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128079/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128079/milestones{/number}",
+ "mirror_url": null,
+ "name": "128079",
+ "node_id": "R_kgDOLDNvGA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128079/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128079/pulls{/number}",
+ "pushed_at": "2018-04-23T18:18:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128079/releases{/id}",
+ "size": 32,
+ "ssh_url": "git@github.com:OpenSourceBrain/128079.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128079/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128079/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128079/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128079/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128079",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128079/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128079/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128079/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128079",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128446": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128446/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128446/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128446/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128446/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128446.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128446/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128446/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128446/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128446/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128446/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128446/contributors",
+ "created_at": "2024-01-10T17:01:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128446/deployments",
+ "description": "Short term plasticity at the cerebellar granule cell (Nieus et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128446/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128446/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128446/forks",
+ "full_name": "OpenSourceBrain/128446",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128446/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128446/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128446/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128446.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128446",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128446/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128446",
+ "id": 741568300,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128446/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128446/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128446/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128446/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128446/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128446/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128446/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128446/milestones{/number}",
+ "mirror_url": null,
+ "name": "128446",
+ "node_id": "R_kgDOLDNvLA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128446/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128446/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128446/releases{/id}",
+ "size": 75,
+ "ssh_url": "git@github.com:OpenSourceBrain/128446.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128446/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128446/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128446/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128446/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128446",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128446/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128446/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128446/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128446",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128449": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128449/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128449/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128449/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128449/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128449.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128449/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128449/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128449/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128449/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128449/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128449/contributors",
+ "created_at": "2024-01-10T17:01:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128449/deployments",
+ "description": "Leaky integrate-and-fire model of spike frequency adaptation in the LGMD (Gabbiani and Krapp 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128449/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128449/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128449/forks",
+ "full_name": "OpenSourceBrain/128449",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128449/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128449/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128449/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128449.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128449",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128449/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128449",
+ "id": 741568315,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128449/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128449/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128449/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128449/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128449/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128449/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128449/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128449/milestones{/number}",
+ "mirror_url": null,
+ "name": "128449",
+ "node_id": "R_kgDOLDNvOw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128449/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128449/pulls{/number}",
+ "pushed_at": "2019-05-31T03:20:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128449/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/128449.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128449/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128449/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128449/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128449/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128449",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128449/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128449/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128449/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128449",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128502": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128502/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128502/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128502/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128502/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128502.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128502/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128502/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128502/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128502/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128502/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128502/contributors",
+ "created_at": "2024-01-10T17:01:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128502/deployments",
+ "description": "On stochastic diff. eq. models for ion channel noise in Hodgkin-Huxley neurons (Goldwyn et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128502/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128502/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128502/forks",
+ "full_name": "OpenSourceBrain/128502",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128502/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128502/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128502/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128502.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128502",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128502/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128502",
+ "id": 741568331,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128502/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128502/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128502/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128502/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128502/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128502/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128502/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128502/milestones{/number}",
+ "mirror_url": null,
+ "name": "128502",
+ "node_id": "R_kgDOLDNvSw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128502/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128502/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128502/releases{/id}",
+ "size": 616,
+ "ssh_url": "git@github.com:OpenSourceBrain/128502.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128502/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128502/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128502/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128502/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128502",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128502/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128502/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128502/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128502",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128559": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128559/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128559/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128559/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128559/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128559.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128559/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128559/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128559/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128559/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128559/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128559/contributors",
+ "created_at": "2024-01-10T17:01:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128559/deployments",
+ "description": "Mathematical model for windup (Aguiar et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128559/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128559/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128559/forks",
+ "full_name": "OpenSourceBrain/128559",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128559/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128559/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128559/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128559.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/128559",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128559/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128559",
+ "id": 741568350,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128559/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128559/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128559/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128559/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128559/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128559/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128559/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128559/milestones{/number}",
+ "mirror_url": null,
+ "name": "128559",
+ "node_id": "R_kgDOLDNvXg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128559/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128559/pulls{/number}",
+ "pushed_at": "2018-04-23T18:19:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128559/releases{/id}",
+ "size": 45,
+ "ssh_url": "git@github.com:OpenSourceBrain/128559.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128559/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128559/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128559/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128559/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128559",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128559/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128559/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128559/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128559",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128812": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128812/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128812/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128812/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128812/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128812.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128812/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128812/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128812/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128812/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128812/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128812/contributors",
+ "created_at": "2024-01-10T17:01:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128812/deployments",
+ "description": "Grid cell oscillatory interference with noisy network oscillators (Zilli and Hasselmo 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128812/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128812/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128812/forks",
+ "full_name": "OpenSourceBrain/128812",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128812/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128812/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128812/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128812.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128812",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128812/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128812",
+ "id": 741568366,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128812/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128812/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128812/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128812/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128812/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128812/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128812/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128812/milestones{/number}",
+ "mirror_url": null,
+ "name": "128812",
+ "node_id": "R_kgDOLDNvbg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128812/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128812/pulls{/number}",
+ "pushed_at": "2019-05-31T05:03:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128812/releases{/id}",
+ "size": 4988,
+ "ssh_url": "git@github.com:OpenSourceBrain/128812.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128812/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128812/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128812/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128812/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128812",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128812/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128812/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128812/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128812",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128816": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128816/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128816/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128816/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128816/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128816.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128816/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128816/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128816/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128816/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128816/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128816/contributors",
+ "created_at": "2024-01-10T17:01:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128816/deployments",
+ "description": "Medial reticular formation of the brainstem: anatomy and dynamics (Humphries et al. 2006, 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128816/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128816/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128816/forks",
+ "full_name": "OpenSourceBrain/128816",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128816/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128816/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128816/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128816.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128816",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128816/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128816",
+ "id": 741568380,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128816/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128816/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128816/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128816/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128816/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128816/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128816/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128816/milestones{/number}",
+ "mirror_url": null,
+ "name": "128816",
+ "node_id": "R_kgDOLDNvfA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128816/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128816/pulls{/number}",
+ "pushed_at": "2023-11-28T20:40:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128816/releases{/id}",
+ "size": 2813,
+ "ssh_url": "git@github.com:OpenSourceBrain/128816.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128816/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128816/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128816/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128816/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128816",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128816/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128816/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128816/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128816",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128818": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128818/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128818/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128818/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128818/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128818.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128818/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128818/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128818/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128818/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128818/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128818/contributors",
+ "created_at": "2024-01-10T17:01:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128818/deployments",
+ "description": "Dopamine-modulated medium spiny neuron, reduced model (Humphries et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128818/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128818/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128818/forks",
+ "full_name": "OpenSourceBrain/128818",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128818/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128818/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128818/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128818.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128818",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128818/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128818",
+ "id": 741568397,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128818/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128818/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128818/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128818/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128818/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128818/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128818/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128818/milestones{/number}",
+ "mirror_url": null,
+ "name": "128818",
+ "node_id": "R_kgDOLDNvjQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128818/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128818/pulls{/number}",
+ "pushed_at": "2019-05-31T02:39:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128818/releases{/id}",
+ "size": 1719,
+ "ssh_url": "git@github.com:OpenSourceBrain/128818.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128818/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128818/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128818/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128818/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128818",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128818/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128818/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128818/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128818",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/128874": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/128874/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/128874/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/128874/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/128874/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/128874.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/128874/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/128874/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/128874/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/128874/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/128874/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/128874/contributors",
+ "created_at": "2024-01-10T17:01:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/128874/deployments",
+ "description": "Striatal GABAergic microcircuit, dopamine-modulated cell assemblies (Humphries et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/128874/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/128874/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/128874/forks",
+ "full_name": "OpenSourceBrain/128874",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/128874/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/128874/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/128874/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/128874.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/128874",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/128874/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/128874",
+ "id": 741568419,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/128874/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/128874/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/128874/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/128874/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/128874/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/128874/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/128874/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/128874/milestones{/number}",
+ "mirror_url": null,
+ "name": "128874",
+ "node_id": "R_kgDOLDNvow",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/128874/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/128874/pulls{/number}",
+ "pushed_at": "2019-05-31T03:28:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/128874/releases{/id}",
+ "size": 3687,
+ "ssh_url": "git@github.com:OpenSourceBrain/128874.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/128874/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/128874/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/128874/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/128874/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/128874",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/128874/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/128874/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/128874/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/128874",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/129067": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/129067/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/129067/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/129067/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/129067/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/129067.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/129067/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/129067/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/129067/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/129067/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/129067/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/129067/contributors",
+ "created_at": "2024-01-10T17:01:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/129067/deployments",
+ "description": "Synthesis of spatial tuning functions from theta cell spike trains (Welday et al., 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/129067/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/129067/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/129067/forks",
+ "full_name": "OpenSourceBrain/129067",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/129067/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/129067/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/129067/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/129067.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/129067",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/129067/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/129067",
+ "id": 741568435,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/129067/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/129067/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/129067/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/129067/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/129067/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/129067/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/129067/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/129067/milestones{/number}",
+ "mirror_url": null,
+ "name": "129067",
+ "node_id": "R_kgDOLDNvsw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/129067/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/129067/pulls{/number}",
+ "pushed_at": "2019-05-31T05:03:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/129067/releases{/id}",
+ "size": 7718,
+ "ssh_url": "git@github.com:OpenSourceBrain/129067.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/129067/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/129067/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/129067/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/129067/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/129067",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/129067/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/129067/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/129067/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/129067",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/129071": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/129071/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/129071/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/129071/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/129071/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/129071.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/129071/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/129071/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/129071/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/129071/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/129071/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/129071/contributors",
+ "created_at": "2024-01-10T17:01:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/129071/deployments",
+ "description": "Continuous time stochastic model for neurite branching (van Elburg 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/129071/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/129071/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/129071/forks",
+ "full_name": "OpenSourceBrain/129071",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/129071/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/129071/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/129071/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/129071.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/129071",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/129071/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/129071",
+ "id": 741568454,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/129071/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/129071/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/129071/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/129071/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/129071/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/129071/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/129071/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/129071/milestones{/number}",
+ "mirror_url": null,
+ "name": "129071",
+ "node_id": "R_kgDOLDNvxg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/129071/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/129071/pulls{/number}",
+ "pushed_at": "2019-05-31T05:00:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/129071/releases{/id}",
+ "size": 160,
+ "ssh_url": "git@github.com:OpenSourceBrain/129071.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/129071/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/129071/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/129071/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/129071/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/129071",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/129071/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/129071/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/129071/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/129071",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/129149": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/129149/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/129149/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/129149/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/129149/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/129149.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/129149/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/129149/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/129149/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/129149/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/129149/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/129149/contributors",
+ "created_at": "2024-01-10T17:01:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/129149/deployments",
+ "description": "Increased computational accuracy in multi-compartmental cable models (Lindsay et al. 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/129149/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/129149/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/129149/forks",
+ "full_name": "OpenSourceBrain/129149",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/129149/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/129149/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/129149/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/129149.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/129149",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/129149/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/129149",
+ "id": 741568464,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/129149/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/129149/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/129149/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/129149/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/129149/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/129149/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/129149/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/129149/milestones{/number}",
+ "mirror_url": null,
+ "name": "129149",
+ "node_id": "R_kgDOLDNv0A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/129149/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/129149/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/129149/releases{/id}",
+ "size": 2658,
+ "ssh_url": "git@github.com:OpenSourceBrain/129149.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/129149/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/129149/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/129149/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/129149/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/129149",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/129149/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/129149/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/129149/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/129149",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/135787": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/135787/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/135787/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/135787/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/135787/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/135787.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/135787/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/135787/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/135787/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/135787/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/135787/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/135787/contributors",
+ "created_at": "2024-01-10T17:01:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/135787/deployments",
+ "description": "Intracortical synaptic potential modulation by presynaptic somatic potential (Shu et al. 2006, 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/135787/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/135787/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/135787/forks",
+ "full_name": "OpenSourceBrain/135787",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/135787/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/135787/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/135787/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/135787.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/135787",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/135787/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/135787",
+ "id": 741568476,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/135787/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/135787/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/135787/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/135787/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/135787/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/135787/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/135787/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/135787/milestones{/number}",
+ "mirror_url": null,
+ "name": "135787",
+ "node_id": "R_kgDOLDNv3A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/135787/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/135787/pulls{/number}",
+ "pushed_at": "2018-04-23T18:19:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/135787/releases{/id}",
+ "size": 4248,
+ "ssh_url": "git@github.com:OpenSourceBrain/135787.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/135787/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/135787/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/135787/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/135787/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/135787",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/135787/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/135787/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/135787/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/135787",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/135838": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/135838/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/135838/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/135838/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/135838/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/135838.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/135838/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/135838/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/135838/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/135838/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/135838/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/135838/contributors",
+ "created_at": "2024-01-10T17:01:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/135838/deployments",
+ "description": "Action potential reconstitution from measured current waveforms (Alle et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/135838/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/135838/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/135838/forks",
+ "full_name": "OpenSourceBrain/135838",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/135838/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/135838/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/135838/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/135838.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/135838",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/135838/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/135838",
+ "id": 741568487,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/135838/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/135838/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/135838/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/135838/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/135838/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/135838/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/135838/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/135838/milestones{/number}",
+ "mirror_url": null,
+ "name": "135838",
+ "node_id": "R_kgDOLDNv5w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/135838/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/135838/pulls{/number}",
+ "pushed_at": "2019-05-31T02:51:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/135838/releases{/id}",
+ "size": 21,
+ "ssh_url": "git@github.com:OpenSourceBrain/135838.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/135838/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/135838/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/135838/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/135838/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/135838",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/135838/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/135838/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/135838/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:01:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/135838",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/135839": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/135839/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/135839/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/135839/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/135839/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/135839.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/135839/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/135839/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/135839/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/135839/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/135839/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/135839/contributors",
+ "created_at": "2024-01-10T17:02:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/135839/deployments",
+ "description": "AP back-prop. explains threshold variability and rapid rise (McCormick et al. 2007, Yu et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/135839/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/135839/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/135839/forks",
+ "full_name": "OpenSourceBrain/135839",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/135839/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/135839/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/135839/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/135839.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/135839",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/135839/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/135839",
+ "id": 741568500,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/135839/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/135839/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/135839/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/135839/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/135839/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/135839/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/135839/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/135839/milestones{/number}",
+ "mirror_url": null,
+ "name": "135839",
+ "node_id": "R_kgDOLDNv9A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/135839/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/135839/pulls{/number}",
+ "pushed_at": "2018-04-23T18:20:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/135839/releases{/id}",
+ "size": 1030,
+ "ssh_url": "git@github.com:OpenSourceBrain/135839.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/135839/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/135839/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/135839/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/135839/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/135839",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/135839/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/135839/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/135839/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/135839",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/135898": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/135898/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/135898/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/135898/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/135898/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/135898.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/135898/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/135898/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/135898/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/135898/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/135898/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/135898/contributors",
+ "created_at": "2024-01-10T17:02:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/135898/deployments",
+ "description": "Selective control of cortical axonal spikes by a slowly inactivating K+ current (Shu et al. 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/135898/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/135898/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/135898/forks",
+ "full_name": "OpenSourceBrain/135898",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/135898/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/135898/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/135898/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/135898.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/135898",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/135898/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/135898",
+ "id": 741568515,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/135898/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/135898/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/135898/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/135898/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/135898/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/135898/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/135898/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/135898/milestones{/number}",
+ "mirror_url": null,
+ "name": "135898",
+ "node_id": "R_kgDOLDNwAw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/135898/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/135898/pulls{/number}",
+ "pushed_at": "2019-05-31T02:10:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/135898/releases{/id}",
+ "size": 40,
+ "ssh_url": "git@github.com:OpenSourceBrain/135898.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/135898/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/135898/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/135898/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/135898/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/135898",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/135898/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/135898/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/135898/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/135898",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/135902": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/135902/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/135902/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/135902/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/135902/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/135902.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/135902/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/135902/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/135902/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/135902/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/135902/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/135902/contributors",
+ "created_at": "2024-01-10T17:02:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/135902/deployments",
+ "description": "High frequency oscillations in a hippocampal computational model (Stacey et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/135902/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/135902/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/135902/forks",
+ "full_name": "OpenSourceBrain/135902",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/135902/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/135902/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/135902/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/135902.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/135902",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/135902/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/135902",
+ "id": 741568529,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/135902/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/135902/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/135902/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/135902/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/135902/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/135902/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/135902/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/135902/milestones{/number}",
+ "mirror_url": null,
+ "name": "135902",
+ "node_id": "R_kgDOLDNwEQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/135902/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/135902/pulls{/number}",
+ "pushed_at": "2023-11-28T20:40:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/135902/releases{/id}",
+ "size": 95,
+ "ssh_url": "git@github.com:OpenSourceBrain/135902.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/135902/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/135902/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/135902/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/135902/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/135902",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/135902/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/135902/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/135902/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/135902",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/135903": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/135903/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/135903/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/135903/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/135903/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/135903.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/135903/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/135903/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/135903/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/135903/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/135903/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/135903/contributors",
+ "created_at": "2024-01-10T17:02:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/135903/deployments",
+ "description": "Network recruitment to coherent oscillations in a hippocampal model (Stacey et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/135903/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/135903/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/135903/forks",
+ "full_name": "OpenSourceBrain/135903",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/135903/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/135903/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/135903/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/135903.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/135903",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/135903/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/135903",
+ "id": 741568545,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/135903/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/135903/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/135903/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/135903/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/135903/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/135903/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/135903/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/135903/milestones{/number}",
+ "mirror_url": null,
+ "name": "135903",
+ "node_id": "R_kgDOLDNwIQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/135903/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/135903/pulls{/number}",
+ "pushed_at": "2023-11-28T20:40:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/135903/releases{/id}",
+ "size": 78,
+ "ssh_url": "git@github.com:OpenSourceBrain/135903.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/135903/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/135903/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/135903/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/135903/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/135903",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/135903/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/135903/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/135903/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/135903",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136024": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136024/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136024/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136024/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136024/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136024.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136024/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136024/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136024/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136024/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136024/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136024/contributors",
+ "created_at": "2024-01-10T17:02:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136024/deployments",
+ "description": "Modelling enteric neuron populations and muscle fed-state motor patterns (Chambers et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136024/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136024/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136024/forks",
+ "full_name": "OpenSourceBrain/136024",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136024/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136024/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136024/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136024.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136024",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136024/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136024",
+ "id": 741568565,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136024/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136024/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136024/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136024/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136024/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136024/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136024/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136024/milestones{/number}",
+ "mirror_url": null,
+ "name": "136024",
+ "node_id": "R_kgDOLDNwNQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136024/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136024/pulls{/number}",
+ "pushed_at": "2019-05-31T04:56:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136024/releases{/id}",
+ "size": 16,
+ "ssh_url": "git@github.com:OpenSourceBrain/136024.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136024/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136024/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136024/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136024/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136024",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136024/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136024/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136024/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136024",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136026": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136026/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136026/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136026/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136026/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136026.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136026/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136026/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136026/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136026/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136026/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136026/contributors",
+ "created_at": "2024-01-10T17:02:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136026/deployments",
+ "description": "Functional structure of mitral cell dendritic tuft (Djurisic et al. 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136026/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136026/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136026/forks",
+ "full_name": "OpenSourceBrain/136026",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136026/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136026/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136026/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136026.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136026",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136026/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136026",
+ "id": 741568590,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136026/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136026/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136026/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136026/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136026/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136026/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136026/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136026/milestones{/number}",
+ "mirror_url": null,
+ "name": "136026",
+ "node_id": "R_kgDOLDNwTg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136026/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136026/pulls{/number}",
+ "pushed_at": "2019-05-31T05:06:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136026/releases{/id}",
+ "size": 50,
+ "ssh_url": "git@github.com:OpenSourceBrain/136026.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136026/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136026/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136026/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136026/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136026",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136026/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136026/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136026/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136026",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136095": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136095/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136095/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136095/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136095/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136095.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136095/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136095/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136095/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136095/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136095/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136095/contributors",
+ "created_at": "2024-01-10T17:02:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136095/deployments",
+ "description": "Synaptic information transfer in computer models of neocortical columns (Neymotin et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136095/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136095/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136095/forks",
+ "full_name": "OpenSourceBrain/136095",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136095/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136095/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136095/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136095.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/136095",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136095/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136095",
+ "id": 741568609,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136095/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136095/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136095/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136095/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136095/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136095/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136095/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136095/milestones{/number}",
+ "mirror_url": null,
+ "name": "136095",
+ "node_id": "R_kgDOLDNwYQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136095/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136095/pulls{/number}",
+ "pushed_at": "2023-04-30T19:21:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136095/releases{/id}",
+ "size": 343,
+ "ssh_url": "git@github.com:OpenSourceBrain/136095.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136095/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136095/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136095/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136095/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136095",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136095/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136095/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136095/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136095",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136097": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136097/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136097/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136097/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136097/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136097.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136097/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136097/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136097/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136097/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136097/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136097/contributors",
+ "created_at": "2024-01-10T17:02:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136097/deployments",
+ "description": "Multiscale model of olfactory receptor neuron in mouse (Dougherty 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136097/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136097/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136097/forks",
+ "full_name": "OpenSourceBrain/136097",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136097/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136097/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136097/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136097.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136097",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136097/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136097",
+ "id": 741568623,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136097/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136097/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136097/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136097/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136097/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136097/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136097/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136097/milestones{/number}",
+ "mirror_url": null,
+ "name": "136097",
+ "node_id": "R_kgDOLDNwbw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136097/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136097/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136097/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/136097.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136097/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136097/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136097/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136097/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136097",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136097/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136097/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136097/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136097",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136175": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136175/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136175/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136175/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136175/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136175.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136175/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136175/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136175/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136175/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136175/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136175/contributors",
+ "created_at": "2024-01-10T17:02:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136175/deployments",
+ "description": "Cerebellar Nucleus Neuron (Steuber, Schultheiss, Silver, De Schutter & Jaeger, 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136175/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136175/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136175/forks",
+ "full_name": "OpenSourceBrain/136175",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136175/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136175/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136175/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136175.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136175",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136175/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136175",
+ "id": 741568636,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136175/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136175/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136175/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136175/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136175/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136175/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136175/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136175/milestones{/number}",
+ "mirror_url": null,
+ "name": "136175",
+ "node_id": "R_kgDOLDNwfA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136175/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136175/pulls{/number}",
+ "pushed_at": "2019-05-31T02:38:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136175/releases{/id}",
+ "size": 23,
+ "ssh_url": "git@github.com:OpenSourceBrain/136175.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136175/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136175/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136175/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136175/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136175",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136175/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136175/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136175/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136175",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136176": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136176/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136176/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136176/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136176/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136176.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136176/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136176/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136176/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136176/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136176/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136176/contributors",
+ "created_at": "2024-01-10T17:02:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136176/deployments",
+ "description": "CA1 stratum radiatum interneuron multicompartmental model (Katona et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136176/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136176/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136176/forks",
+ "full_name": "OpenSourceBrain/136176",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136176/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136176/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136176/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136176.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136176",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136176/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136176",
+ "id": 741568651,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136176/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136176/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136176/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136176/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136176/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136176/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136176/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136176/milestones{/number}",
+ "mirror_url": null,
+ "name": "136176",
+ "node_id": "R_kgDOLDNwiw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136176/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136176/pulls{/number}",
+ "pushed_at": "2019-05-31T02:18:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136176/releases{/id}",
+ "size": 33,
+ "ssh_url": "git@github.com:OpenSourceBrain/136176.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136176/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136176/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136176/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136176/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136176",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136176/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136176/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136176/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136176",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136296": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136296/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136296/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136296/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136296/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136296.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136296/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136296/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136296/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136296/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136296/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136296/contributors",
+ "created_at": "2024-01-10T17:02:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136296/deployments",
+ "description": "Myelinated nerve fibre myelin resistance dependent on extracellular K+ level (Brazhe et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136296/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136296/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136296/forks",
+ "full_name": "OpenSourceBrain/136296",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136296/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136296/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136296/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136296.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136296",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136296/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136296",
+ "id": 741568669,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136296/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136296/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136296/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136296/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136296/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136296/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136296/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136296/milestones{/number}",
+ "mirror_url": null,
+ "name": "136296",
+ "node_id": "R_kgDOLDNwnQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136296/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136296/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136296/releases{/id}",
+ "size": 21,
+ "ssh_url": "git@github.com:OpenSourceBrain/136296.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136296/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136296/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136296/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136296/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136296",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136296/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136296/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136296/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136296",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136308": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136308/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136308/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136308/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136308/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136308.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136308/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136308/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136308/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136308/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136308/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136308/contributors",
+ "created_at": "2024-01-10T17:02:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136308/deployments",
+ "description": "Wang-Buzsaki Interneuron (Talathi et al., 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136308/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136308/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136308/forks",
+ "full_name": "OpenSourceBrain/136308",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136308/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136308/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136308/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136308.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136308",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136308/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136308",
+ "id": 741568680,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136308/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136308/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136308/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136308/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136308/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136308/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136308/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136308/milestones{/number}",
+ "mirror_url": null,
+ "name": "136308",
+ "node_id": "R_kgDOLDNwqA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136308/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136308/pulls{/number}",
+ "pushed_at": "2023-11-28T20:42:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136308/releases{/id}",
+ "size": 5289,
+ "ssh_url": "git@github.com:OpenSourceBrain/136308.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136308/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136308/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136308/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136308/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136308",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136308/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136308/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136308/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136308",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136309": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136309/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136309/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136309/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136309/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136309.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136309/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136309/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136309/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136309/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136309/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136309/contributors",
+ "created_at": "2024-01-10T17:02:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136309/deployments",
+ "description": "Neocort. pyramidal cells subthreshold somatic voltage controls spike propagation (Munro Kopell 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136309/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136309/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136309/forks",
+ "full_name": "OpenSourceBrain/136309",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136309/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136309/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136309/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136309.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136309",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136309/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136309",
+ "id": 741568691,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136309/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136309/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136309/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136309/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136309/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136309/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136309/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136309/milestones{/number}",
+ "mirror_url": null,
+ "name": "136309",
+ "node_id": "R_kgDOLDNwsw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136309/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136309/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136309/releases{/id}",
+ "size": 1512,
+ "ssh_url": "git@github.com:OpenSourceBrain/136309.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136309/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136309/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136309/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136309/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136309",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136309/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136309/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136309/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136309",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136310": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136310/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136310/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136310/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136310/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136310.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136310/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136310/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136310/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136310/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136310/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136310/contributors",
+ "created_at": "2024-01-10T17:02:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136310/deployments",
+ "description": "Modeling local field potentials (Bedard et al. 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136310/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136310/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136310/forks",
+ "full_name": "OpenSourceBrain/136310",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136310/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136310/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136310/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136310.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136310",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136310/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136310",
+ "id": 741568706,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136310/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136310/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136310/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136310/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136310/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136310/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136310/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136310/milestones{/number}",
+ "mirror_url": null,
+ "name": "136310",
+ "node_id": "R_kgDOLDNwwg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136310/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136310/pulls{/number}",
+ "pushed_at": "2023-11-28T20:42:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136310/releases{/id}",
+ "size": 21,
+ "ssh_url": "git@github.com:OpenSourceBrain/136310.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136310/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136310/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136310/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136310/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136310",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136310/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136310/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136310/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136310",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136315": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136315/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136315/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136315/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136315/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136315.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136315/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136315/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136315/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136315/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136315/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136315/contributors",
+ "created_at": "2024-01-10T17:02:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136315/deployments",
+ "description": "Globus pallidus neuron models with differing dendritic Na channel expression (Edgerton et al., 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136315/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136315/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136315/forks",
+ "full_name": "OpenSourceBrain/136315",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136315/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136315/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136315/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136315.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136315",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136315/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136315",
+ "id": 741568722,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136315/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136315/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136315/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136315/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136315/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136315/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136315/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136315/milestones{/number}",
+ "mirror_url": null,
+ "name": "136315",
+ "node_id": "R_kgDOLDNw0g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136315/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136315/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136315/releases{/id}",
+ "size": 63,
+ "ssh_url": "git@github.com:OpenSourceBrain/136315.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136315/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136315/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136315/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136315/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136315",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136315/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136315/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136315/git/trees{/sha}",
+ "updated_at": "2024-01-10T17:02:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136315",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136380": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136380/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136380/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136380/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136380/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136380.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136380/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136380/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136380/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136380/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136380/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136380/contributors",
+ "created_at": "2024-01-11T09:30:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136380/deployments",
+ "description": "Neural transformations on spike timing information (Tripp and Eliasmith 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136380/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136380/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136380/forks",
+ "full_name": "OpenSourceBrain/136380",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136380/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136380/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136380/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136380.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136380",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136380/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136380",
+ "id": 741869619,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136380/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136380/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136380/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136380/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136380/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136380/languages",
+ "license": {
+ "key": "other",
+ "name": "Other",
+ "node_id": "MDc6TGljZW5zZTA=",
+ "spdx_id": "NOASSERTION",
+ "url": null
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136380/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136380/milestones{/number}",
+ "mirror_url": null,
+ "name": "136380",
+ "node_id": "R_kgDOLDgIMw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136380/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136380/pulls{/number}",
+ "pushed_at": "2019-05-31T04:31:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136380/releases{/id}",
+ "size": 328,
+ "ssh_url": "git@github.com:OpenSourceBrain/136380.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136380/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136380/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136380/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136380/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136380",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136380/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136380/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136380/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136380",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136715": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136715/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136715/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136715/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136715/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136715.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136715/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136715/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136715/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136715/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136715/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136715/contributors",
+ "created_at": "2024-01-11T09:30:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136715/deployments",
+ "description": "Action potential-evoked Na+ influx are similar in axon and soma (Fleidervish et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136715/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136715/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136715/forks",
+ "full_name": "OpenSourceBrain/136715",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136715/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136715/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136715/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136715.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136715",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136715/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136715",
+ "id": 741869633,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136715/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136715/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136715/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136715/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136715/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136715/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136715/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136715/milestones{/number}",
+ "mirror_url": null,
+ "name": "136715",
+ "node_id": "R_kgDOLDgIQQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136715/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136715/pulls{/number}",
+ "pushed_at": "2019-05-31T03:18:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136715/releases{/id}",
+ "size": 39,
+ "ssh_url": "git@github.com:OpenSourceBrain/136715.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136715/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136715/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136715/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136715/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136715",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136715/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136715/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136715/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136715",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136717": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136717/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136717/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136717/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136717/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136717.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136717/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136717/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136717/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136717/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136717/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136717/contributors",
+ "created_at": "2024-01-11T09:30:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136717/deployments",
+ "description": "STDP allows fast rate-modulated coding with Poisson-like spike trains (Gilson et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136717/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136717/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136717/forks",
+ "full_name": "OpenSourceBrain/136717",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136717/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136717/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136717/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136717.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136717",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136717/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136717",
+ "id": 741869648,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136717/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136717/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136717/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136717/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136717/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136717/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136717/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136717/milestones{/number}",
+ "mirror_url": null,
+ "name": "136717",
+ "node_id": "R_kgDOLDgIUA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136717/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136717/pulls{/number}",
+ "pushed_at": "2019-05-31T03:22:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136717/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/136717.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136717/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136717/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136717/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136717/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136717",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136717/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136717/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136717/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136717",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136773": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136773/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136773/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136773/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136773/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136773.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136773/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136773/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136773/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136773/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136773/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136773/contributors",
+ "created_at": "2024-01-11T09:30:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136773/deployments",
+ "description": "Single neuron with dynamic ion concentrations (Cressman et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136773/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136773/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136773/forks",
+ "full_name": "OpenSourceBrain/136773",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136773/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136773/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136773/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136773.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136773",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136773/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136773",
+ "id": 741869663,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136773/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136773/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136773/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136773/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136773/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136773/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136773/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136773/milestones{/number}",
+ "mirror_url": null,
+ "name": "136773",
+ "node_id": "R_kgDOLDgIXw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136773/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136773/pulls{/number}",
+ "pushed_at": "2019-05-31T02:35:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136773/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/136773.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136773/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136773/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136773/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136773/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136773",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136773/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136773/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136773/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136773",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136799": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136799/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136799/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136799/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136799/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136799.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136799/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136799/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136799/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136799/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136799/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136799/contributors",
+ "created_at": "2024-01-11T09:30:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136799/deployments",
+ "description": "Population models of temporal differentiation (Tripp and Eliasmith 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136799/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136799/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136799/forks",
+ "full_name": "OpenSourceBrain/136799",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136799/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136799/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136799/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136799.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136799",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136799/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136799",
+ "id": 741869677,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136799/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136799/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136799/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136799/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136799/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136799/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136799/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136799/milestones{/number}",
+ "mirror_url": null,
+ "name": "136799",
+ "node_id": "R_kgDOLDgIbQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136799/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136799/pulls{/number}",
+ "pushed_at": "2019-05-31T02:33:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136799/releases{/id}",
+ "size": 41,
+ "ssh_url": "git@github.com:OpenSourceBrain/136799.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136799/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136799/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136799/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136799/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136799",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136799/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136799/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136799/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136799",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136803": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136803/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136803/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136803/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136803/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136803.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136803/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136803/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136803/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136803/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136803/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136803/contributors",
+ "created_at": "2024-01-11T09:30:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136803/deployments",
+ "description": "Biophysically realistic neural modeling of the MEG mu rhythm (Jones et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136803/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136803/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136803/forks",
+ "full_name": "OpenSourceBrain/136803",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136803/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136803/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136803/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136803.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/136803",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136803/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136803",
+ "id": 741869692,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136803/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136803/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136803/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136803/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136803/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136803/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136803/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136803/milestones{/number}",
+ "mirror_url": null,
+ "name": "136803",
+ "node_id": "R_kgDOLDgIfA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136803/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136803/pulls{/number}",
+ "pushed_at": "2018-04-23T18:20:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136803/releases{/id}",
+ "size": 64,
+ "ssh_url": "git@github.com:OpenSourceBrain/136803.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136803/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136803/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136803/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136803/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136803",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136803/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136803/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136803/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136803",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136807": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136807/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136807/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136807/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136807/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136807.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136807/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136807/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136807/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136807/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136807/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136807/contributors",
+ "created_at": "2024-01-11T09:30:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136807/deployments",
+ "description": "Democratic population decisions result in robust policy-gradient learning (Richmond et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136807/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136807/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136807/forks",
+ "full_name": "OpenSourceBrain/136807",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136807/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136807/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136807/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136807.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136807",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136807/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136807",
+ "id": 741869709,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136807/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136807/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136807/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136807/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136807/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136807/languages",
+ "license": {
+ "key": "gpl-2.0",
+ "name": "GNU General Public License v2.0",
+ "node_id": "MDc6TGljZW5zZTg=",
+ "spdx_id": "GPL-2.0",
+ "url": "https://api.github.com/licenses/gpl-2.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136807/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136807/milestones{/number}",
+ "mirror_url": null,
+ "name": "136807",
+ "node_id": "R_kgDOLDgIjQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136807/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136807/pulls{/number}",
+ "pushed_at": "2019-05-31T05:08:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136807/releases{/id}",
+ "size": 38,
+ "ssh_url": "git@github.com:OpenSourceBrain/136807.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136807/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136807/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136807/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136807/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136807",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136807/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136807/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136807/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136807",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/136808": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/136808/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/136808/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/136808/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/136808/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/136808.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/136808/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/136808/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/136808/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/136808/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/136808/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/136808/contributors",
+ "created_at": "2024-01-11T09:30:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/136808/deployments",
+ "description": "Parameter estimation for Hodgkin-Huxley based models of cortical neurons (Lepora et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/136808/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/136808/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/136808/forks",
+ "full_name": "OpenSourceBrain/136808",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/136808/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/136808/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/136808/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/136808.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/136808",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/136808/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/136808",
+ "id": 741869721,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/136808/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/136808/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/136808/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/136808/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/136808/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/136808/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/136808/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/136808/milestones{/number}",
+ "mirror_url": null,
+ "name": "136808",
+ "node_id": "R_kgDOLDgImQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/136808/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/136808/pulls{/number}",
+ "pushed_at": "2019-05-31T02:38:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/136808/releases{/id}",
+ "size": 19,
+ "ssh_url": "git@github.com:OpenSourceBrain/136808.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/136808/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/136808/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/136808/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/136808/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/136808",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/136808/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/136808/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/136808/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/136808",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137259": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137259/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137259/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137259/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137259/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137259.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137259/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137259/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137259/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137259/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137259/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137259/contributors",
+ "created_at": "2024-01-11T09:30:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137259/deployments",
+ "description": "A model of unitary responses from A/C and PP synapses in CA3 pyramidal cells (Baker et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137259/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137259/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137259/forks",
+ "full_name": "OpenSourceBrain/137259",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137259/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137259/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137259/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137259.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137259",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137259/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137259",
+ "id": 741869735,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137259/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137259/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137259/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137259/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137259/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137259/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137259/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137259/milestones{/number}",
+ "mirror_url": null,
+ "name": "137259",
+ "node_id": "R_kgDOLDgIpw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137259/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137259/pulls{/number}",
+ "pushed_at": "2019-05-31T05:03:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137259/releases{/id}",
+ "size": 779,
+ "ssh_url": "git@github.com:OpenSourceBrain/137259.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137259/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137259/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137259/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137259/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137259",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137259/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137259/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137259/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137259",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137263": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137263/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137263/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137263/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137263/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137263.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137263/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137263/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137263/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137263/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137263/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137263/contributors",
+ "created_at": "2024-01-11T09:30:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137263/deployments",
+ "description": "Effect of trp-like current on APs during exposure to sinusoidal voltage (Chen et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137263/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137263/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137263/forks",
+ "full_name": "OpenSourceBrain/137263",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137263/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137263/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137263/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137263.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137263",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137263/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137263",
+ "id": 741869742,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137263/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137263/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137263/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137263/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137263/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137263/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137263/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137263/milestones{/number}",
+ "mirror_url": null,
+ "name": "137263",
+ "node_id": "R_kgDOLDgIrg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137263/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137263/pulls{/number}",
+ "pushed_at": "2022-02-18T15:19:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137263/releases{/id}",
+ "size": 151,
+ "ssh_url": "git@github.com:OpenSourceBrain/137263.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137263/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137263/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137263/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137263/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137263",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137263/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137263/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137263/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:30:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137263",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137502": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137502/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137502/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137502/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137502/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137502.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137502/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137502/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137502/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137502/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137502/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137502/contributors",
+ "created_at": "2024-01-11T09:36:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137502/deployments",
+ "description": "Striatal GABAergic microcircuit, spatial scales of dynamics (Humphries et al, 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137502/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137502/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137502/forks",
+ "full_name": "OpenSourceBrain/137502",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137502/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137502/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137502/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137502.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137502",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137502/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137502",
+ "id": 741872213,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137502/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137502/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137502/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137502/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137502/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137502/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137502/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137502/milestones{/number}",
+ "mirror_url": null,
+ "name": "137502",
+ "node_id": "R_kgDOLDgSVQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137502/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137502/pulls{/number}",
+ "pushed_at": "2019-05-31T05:08:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137502/releases{/id}",
+ "size": 1734,
+ "ssh_url": "git@github.com:OpenSourceBrain/137502.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137502/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137502/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137502/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137502/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137502",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137502/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137502/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137502/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:36:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137502",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137505": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137505/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137505/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137505/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137505/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137505.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137505/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137505/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137505/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137505/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137505/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137505/contributors",
+ "created_at": "2024-01-11T09:36:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137505/deployments",
+ "description": "Model of long range transmission of gamma oscillation (Murray 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137505/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137505/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137505/forks",
+ "full_name": "OpenSourceBrain/137505",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137505/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137505/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137505/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137505.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137505",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137505/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137505",
+ "id": 741872227,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137505/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137505/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137505/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137505/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137505/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137505/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137505/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137505/milestones{/number}",
+ "mirror_url": null,
+ "name": "137505",
+ "node_id": "R_kgDOLDgSYw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137505/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137505/pulls{/number}",
+ "pushed_at": "2019-05-31T04:30:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137505/releases{/id}",
+ "size": 263,
+ "ssh_url": "git@github.com:OpenSourceBrain/137505.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137505/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137505/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137505/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137505/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137505",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137505/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137505/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137505/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:36:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137505",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137676": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137676/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137676/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137676/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137676/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137676.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137676/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137676/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137676/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137676/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137676/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137676/contributors",
+ "created_at": "2024-01-11T09:38:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137676/deployments",
+ "description": "Sensory feedback in an oscillatory interference model of place cell activity (Monaco et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137676/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137676/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137676/forks",
+ "full_name": "OpenSourceBrain/137676",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137676/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137676/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137676/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137676.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137676",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137676/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137676",
+ "id": 741872784,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137676/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137676/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137676/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137676/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137676/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137676/languages",
+ "license": {
+ "key": "other",
+ "name": "Other",
+ "node_id": "MDc6TGljZW5zZTA=",
+ "spdx_id": "NOASSERTION",
+ "url": null
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137676/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137676/milestones{/number}",
+ "mirror_url": null,
+ "name": "137676",
+ "node_id": "R_kgDOLDgUkA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137676/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137676/pulls{/number}",
+ "pushed_at": "2019-05-31T04:55:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137676/releases{/id}",
+ "size": 771,
+ "ssh_url": "git@github.com:OpenSourceBrain/137676.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137676/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137676/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137676/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137676/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137676",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137676/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137676/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137676/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:38:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137676",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137743": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137743/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137743/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137743/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137743/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137743.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137743/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137743/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137743/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137743/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137743/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137743/contributors",
+ "created_at": "2024-01-11T09:38:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137743/deployments",
+ "description": "Laminar analysis of excitatory circuits in vibrissal motor and sensory cortex (Hooks et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137743/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137743/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137743/forks",
+ "full_name": "OpenSourceBrain/137743",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137743/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137743/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137743/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137743.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137743",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137743/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137743",
+ "id": 741872798,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137743/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137743/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137743/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137743/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137743/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137743/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137743/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137743/milestones{/number}",
+ "mirror_url": null,
+ "name": "137743",
+ "node_id": "R_kgDOLDgUng",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137743/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137743/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137743/releases{/id}",
+ "size": 138,
+ "ssh_url": "git@github.com:OpenSourceBrain/137743.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137743/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137743/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137743/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137743/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137743",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137743/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137743/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137743/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:38:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137743",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137745": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137745/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137745/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137745/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137745/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137745.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137745/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137745/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137745/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137745/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137745/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137745/contributors",
+ "created_at": "2024-01-11T09:38:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137745/deployments",
+ "description": "CA1 pyramidal: Stochastic amplification of KCa in Ca2+ microdomains (Stanley et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137745/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137745/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137745/forks",
+ "full_name": "OpenSourceBrain/137745",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137745/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137745/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137745/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137745.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137745",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137745/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137745",
+ "id": 741872809,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137745/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137745/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137745/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137745/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137745/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137745/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137745/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137745/milestones{/number}",
+ "mirror_url": null,
+ "name": "137745",
+ "node_id": "R_kgDOLDgUqQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137745/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137745/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137745/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/137745.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137745/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137745/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137745/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137745/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137745",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137745/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137745/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137745/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:38:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137745",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137845": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137845/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137845/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137845/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137845/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137845.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137845/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137845/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137845/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137845/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137845/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137845/contributors",
+ "created_at": "2024-01-11T09:38:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137845/deployments",
+ "description": "Spike exchange methods for a Blue Gene/P supercomputer (Hines et al., 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137845/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137845/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137845/forks",
+ "full_name": "OpenSourceBrain/137845",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137845/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137845/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137845/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137845.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137845",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137845/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137845",
+ "id": 741872822,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137845/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137845/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137845/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137845/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137845/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137845/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137845/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137845/milestones{/number}",
+ "mirror_url": null,
+ "name": "137845",
+ "node_id": "R_kgDOLDgUtg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137845/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137845/pulls{/number}",
+ "pushed_at": "2023-11-28T20:42:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137845/releases{/id}",
+ "size": 1650,
+ "ssh_url": "git@github.com:OpenSourceBrain/137845.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137845/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137845/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137845/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137845/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137845",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137845/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137845/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137845/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:38:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137845",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137846": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137846/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137846/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137846/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137846/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137846.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137846/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137846/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137846/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137846/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137846/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137846/contributors",
+ "created_at": "2024-01-11T09:38:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137846/deployments",
+ "description": "GP Neuron, somatic and dendritic phase response curves (Schultheiss et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137846/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137846/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137846/forks",
+ "full_name": "OpenSourceBrain/137846",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137846/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137846/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137846/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137846.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137846",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137846/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137846",
+ "id": 741872836,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137846/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137846/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137846/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137846/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137846/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137846/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137846/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137846/milestones{/number}",
+ "mirror_url": null,
+ "name": "137846",
+ "node_id": "R_kgDOLDgUxA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137846/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137846/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137846/releases{/id}",
+ "size": 48,
+ "ssh_url": "git@github.com:OpenSourceBrain/137846.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137846/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137846/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137846/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137846/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137846",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137846/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137846/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137846/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:38:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137846",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/137989": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/137989/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/137989/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/137989/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/137989/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/137989.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/137989/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/137989/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/137989/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/137989/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/137989/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/137989/contributors",
+ "created_at": "2024-01-11T09:38:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/137989/deployments",
+ "description": "Vectorized algorithms for spiking neural network simulation (Brette and Goodman 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/137989/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/137989/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/137989/forks",
+ "full_name": "OpenSourceBrain/137989",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/137989/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/137989/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/137989/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/137989.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/137989",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/137989/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/137989",
+ "id": 741872846,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/137989/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/137989/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/137989/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/137989/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/137989/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/137989/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/137989/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/137989/milestones{/number}",
+ "mirror_url": null,
+ "name": "137989",
+ "node_id": "R_kgDOLDgUzg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/137989/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/137989/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/137989/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/137989.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/137989/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/137989/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/137989/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/137989/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/137989",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/137989/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/137989/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/137989/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:38:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/137989",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138082": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138082/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138082/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138082/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138082/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138082.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138082/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138082/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138082/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138082/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138082/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138082/contributors",
+ "created_at": "2024-01-11T09:38:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138082/deployments",
+ "description": "HMM of Nav1.7 WT and F1449V (Gurkiewicz et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138082/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138082/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138082/forks",
+ "full_name": "OpenSourceBrain/138082",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138082/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138082/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138082/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138082.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/138082",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138082/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138082",
+ "id": 741872859,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138082/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138082/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138082/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138082/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138082/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138082/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138082/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138082/milestones{/number}",
+ "mirror_url": null,
+ "name": "138082",
+ "node_id": "R_kgDOLDgU2w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138082/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138082/pulls{/number}",
+ "pushed_at": "2019-05-31T03:45:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138082/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/138082.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138082/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138082/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138082/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138082/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138082",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138082/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138082/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138082/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:38:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138082",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138205": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138205/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138205/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138205/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138205/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138205.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138205/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138205/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138205/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138205/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138205/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138205/contributors",
+ "created_at": "2024-01-11T09:38:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138205/deployments",
+ "description": "CA1 pyramidal neuron: schizophrenic behavior (Migliore et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138205/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138205/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138205/forks",
+ "full_name": "OpenSourceBrain/138205",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138205/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138205/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138205/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138205.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/138205",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138205/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138205",
+ "id": 741872868,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138205/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138205/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138205/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138205/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138205/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138205/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138205/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138205/milestones{/number}",
+ "mirror_url": null,
+ "name": "138205",
+ "node_id": "R_kgDOLDgU5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138205/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138205/pulls{/number}",
+ "pushed_at": "2023-11-28T20:42:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138205/releases{/id}",
+ "size": 39,
+ "ssh_url": "git@github.com:OpenSourceBrain/138205.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138205/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138205/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138205/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138205/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138205",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138205/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138205/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138205/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:38:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138205",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138273": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138273/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138273/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138273/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138273/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138273.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138273/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138273/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138273/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138273/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138273/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138273/contributors",
+ "created_at": "2024-01-11T09:39:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138273/deployments",
+ "description": "Stochastic 3D model of neonatal rat spinal motoneuron (Ostroumov 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138273/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138273/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138273/forks",
+ "full_name": "OpenSourceBrain/138273",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138273/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138273/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138273/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138273.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/138273",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138273/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138273",
+ "id": 741873123,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138273/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138273/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138273/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138273/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138273/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138273/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138273/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138273/milestones{/number}",
+ "mirror_url": null,
+ "name": "138273",
+ "node_id": "R_kgDOLDgV4w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138273/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138273/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138273/releases{/id}",
+ "size": 459,
+ "ssh_url": "git@github.com:OpenSourceBrain/138273.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138273/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138273/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138273/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138273/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138273",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138273/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138273/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138273/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138273",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138321": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138321/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138321/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138321/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138321/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138321.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138321/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138321/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138321/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138321/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138321/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138321/contributors",
+ "created_at": "2024-01-11T09:39:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138321/deployments",
+ "description": "Mechanisms of magnetic stimulation of central nervous system neurons (Pashut et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138321/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138321/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138321/forks",
+ "full_name": "OpenSourceBrain/138321",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138321/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138321/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138321/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138321.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/138321",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138321/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138321",
+ "id": 741873134,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138321/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138321/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138321/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138321/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138321/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138321/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138321/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138321/milestones{/number}",
+ "mirror_url": null,
+ "name": "138321",
+ "node_id": "R_kgDOLDgV7g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138321/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138321/pulls{/number}",
+ "pushed_at": "2019-05-31T03:42:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138321/releases{/id}",
+ "size": 386,
+ "ssh_url": "git@github.com:OpenSourceBrain/138321.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138321/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138321/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138321/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138321/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138321",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138321/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138321/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138321/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138321",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138379": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138379/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138379/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138379/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138379/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138379.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138379/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138379/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138379/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138379/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138379/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138379/contributors",
+ "created_at": "2024-01-11T09:39:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138379/deployments",
+ "description": "Emergence of physiological oscillation frequencies in neocortex simulations (Neymotin et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138379/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138379/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138379/forks",
+ "full_name": "OpenSourceBrain/138379",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138379/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138379/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138379/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138379.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/138379",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138379/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138379",
+ "id": 741873146,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138379/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138379/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138379/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138379/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138379/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138379/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138379/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138379/milestones{/number}",
+ "mirror_url": null,
+ "name": "138379",
+ "node_id": "R_kgDOLDgV-g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138379/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138379/pulls{/number}",
+ "pushed_at": "2023-04-30T19:22:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138379/releases{/id}",
+ "size": 306,
+ "ssh_url": "git@github.com:OpenSourceBrain/138379.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138379/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138379/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138379/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138379/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138379",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138379/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138379/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138379/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138379",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138382": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138382/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138382/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138382/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138382/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138382.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138382/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138382/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138382/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138382/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138382/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138382/contributors",
+ "created_at": "2024-01-11T09:39:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138382/deployments",
+ "description": "Controlling KCa channels with different Ca2+ buffering models in Purkinje cell (Anwar et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138382/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138382/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138382/forks",
+ "full_name": "OpenSourceBrain/138382",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138382/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138382/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138382/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138382.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/138382",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138382/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138382",
+ "id": 741873162,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138382/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138382/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138382/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138382/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138382/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138382/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138382/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138382/milestones{/number}",
+ "mirror_url": null,
+ "name": "138382",
+ "node_id": "R_kgDOLDgWCg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138382/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138382/pulls{/number}",
+ "pushed_at": "2023-11-28T20:42:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138382/releases{/id}",
+ "size": 1271,
+ "ssh_url": "git@github.com:OpenSourceBrain/138382.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138382/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138382/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138382/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138382/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138382",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138382/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138382/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138382/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138382",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138421": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138421/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138421/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138421/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138421/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138421.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138421/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138421/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138421/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138421/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138421/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138421/contributors",
+ "created_at": "2024-01-11T09:39:28Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138421/deployments",
+ "description": "Gamma and theta rythms in biophysical models of hippocampus circuits (Kopell et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138421/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138421/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138421/forks",
+ "full_name": "OpenSourceBrain/138421",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138421/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138421/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138421/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138421.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/138421",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138421/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138421",
+ "id": 741873177,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138421/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138421/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138421/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138421/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138421/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138421/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138421/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138421/milestones{/number}",
+ "mirror_url": null,
+ "name": "138421",
+ "node_id": "R_kgDOLDgWGQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138421/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138421/pulls{/number}",
+ "pushed_at": "2023-12-23T03:43:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138421/releases{/id}",
+ "size": 1019,
+ "ssh_url": "git@github.com:OpenSourceBrain/138421.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138421/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138421/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138421/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138421/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138421",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138421/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138421/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138421/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138421",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138631": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138631/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138631/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138631/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138631/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138631.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138631/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138631/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138631/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138631/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138631/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138631/contributors",
+ "created_at": "2024-01-11T09:39:30Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138631/deployments",
+ "description": "Prefrontal\u2013striatal Parkinsons comp. model of multicue category learning (Moustafa and Gluck 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138631/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138631/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138631/forks",
+ "full_name": "OpenSourceBrain/138631",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138631/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138631/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138631/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138631.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/138631",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138631/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138631",
+ "id": 741873193,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138631/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138631/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138631/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138631/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138631/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138631/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138631/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138631/milestones{/number}",
+ "mirror_url": null,
+ "name": "138631",
+ "node_id": "R_kgDOLDgWKQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138631/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138631/pulls{/number}",
+ "pushed_at": "2023-12-23T03:43:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138631/releases{/id}",
+ "size": 1416,
+ "ssh_url": "git@github.com:OpenSourceBrain/138631.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138631/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138631/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138631/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138631/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138631",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138631/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138631/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138631/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138631",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138634": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138634/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138634/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138634/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138634/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138634.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138634/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138634/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138634/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138634/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138634/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138634/contributors",
+ "created_at": "2024-01-11T09:39:32Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138634/deployments",
+ "description": "A neurocomputational model of classical conditioning phenomena (Moustafa et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138634/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138634/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138634/forks",
+ "full_name": "OpenSourceBrain/138634",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138634/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138634/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138634/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138634.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/138634",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138634/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138634",
+ "id": 741873209,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138634/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138634/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138634/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138634/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138634/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138634/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138634/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138634/milestones{/number}",
+ "mirror_url": null,
+ "name": "138634",
+ "node_id": "R_kgDOLDgWOQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138634/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138634/pulls{/number}",
+ "pushed_at": "2023-12-23T03:44:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138634/releases{/id}",
+ "size": 1525,
+ "ssh_url": "git@github.com:OpenSourceBrain/138634.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138634/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138634/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138634/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138634/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138634",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138634/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138634/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138634/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138634",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138950": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138950/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138950/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138950/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138950/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138950.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138950/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138950/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138950/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138950/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138950/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138950/contributors",
+ "created_at": "2024-01-11T09:39:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138950/deployments",
+ "description": "Stochastic versions of the Hodgkin-Huxley equations (Goldwyn, Shea-Brown 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138950/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138950/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138950/forks",
+ "full_name": "OpenSourceBrain/138950",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138950/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138950/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138950/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138950.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/138950",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138950/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138950",
+ "id": 741873220,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138950/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138950/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138950/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138950/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138950/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138950/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138950/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138950/milestones{/number}",
+ "mirror_url": null,
+ "name": "138950",
+ "node_id": "R_kgDOLDgWRA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138950/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138950/pulls{/number}",
+ "pushed_at": "2019-05-31T02:34:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138950/releases{/id}",
+ "size": 1740,
+ "ssh_url": "git@github.com:OpenSourceBrain/138950.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138950/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138950/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138950/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138950/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138950",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138950/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138950/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138950/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138950",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138951": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138951/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138951/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138951/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138951/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138951.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138951/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138951/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138951/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138951/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138951/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138951/contributors",
+ "created_at": "2024-01-11T09:39:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138951/deployments",
+ "description": "Modular grid cell responses as a basis for hippocampal remapping (Monaco and Abbott 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138951/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138951/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138951/forks",
+ "full_name": "OpenSourceBrain/138951",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138951/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138951/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138951/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138951.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/138951",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138951/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138951",
+ "id": 741873231,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138951/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138951/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138951/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138951/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138951/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138951/languages",
+ "license": {
+ "key": "other",
+ "name": "Other",
+ "node_id": "MDc6TGljZW5zZTA=",
+ "spdx_id": "NOASSERTION",
+ "url": null
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138951/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138951/milestones{/number}",
+ "mirror_url": null,
+ "name": "138951",
+ "node_id": "R_kgDOLDgWTw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138951/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138951/pulls{/number}",
+ "pushed_at": "2019-05-31T02:35:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138951/releases{/id}",
+ "size": 113,
+ "ssh_url": "git@github.com:OpenSourceBrain/138951.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138951/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138951/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138951/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138951/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138951",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138951/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138951/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138951/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138951",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/138970": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/138970/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/138970/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/138970/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/138970/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/138970.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/138970/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/138970/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/138970/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/138970/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/138970/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/138970/contributors",
+ "created_at": "2024-01-11T09:39:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/138970/deployments",
+ "description": "A Neural mass computational model of the Thalamocorticothalamic circuitry (Bhattacharya et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/138970/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/138970/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/138970/forks",
+ "full_name": "OpenSourceBrain/138970",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/138970/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/138970/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/138970/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/138970.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/138970",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/138970/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/138970",
+ "id": 741873240,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/138970/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/138970/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/138970/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/138970/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/138970/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/138970/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/138970/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/138970/milestones{/number}",
+ "mirror_url": null,
+ "name": "138970",
+ "node_id": "R_kgDOLDgWWA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/138970/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/138970/pulls{/number}",
+ "pushed_at": "2018-04-23T18:21:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/138970/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/138970.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/138970/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/138970/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/138970/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/138970/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/138970",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/138970/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/138970/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/138970/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/138970",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139150": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139150/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139150/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139150/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139150/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139150.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139150/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139150/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139150/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139150/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139150/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139150/contributors",
+ "created_at": "2024-01-11T09:39:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139150/deployments",
+ "description": "Interacting synaptic conductances during, distorting, voltage clamp (Poleg-Polsky and Diamond 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139150/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139150/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139150/forks",
+ "full_name": "OpenSourceBrain/139150",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139150/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139150/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139150/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139150.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139150",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139150/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139150",
+ "id": 741873256,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139150/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139150/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139150/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139150/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139150/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139150/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139150/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139150/milestones{/number}",
+ "mirror_url": null,
+ "name": "139150",
+ "node_id": "R_kgDOLDgWaA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139150/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139150/pulls{/number}",
+ "pushed_at": "2019-05-31T02:54:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139150/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/139150.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139150/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139150/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139150/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139150/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139150",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139150/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139150/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139150/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139150",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139266": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139266/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139266/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139266/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139266/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139266.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139266/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139266/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139266/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139266/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139266/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139266/contributors",
+ "created_at": "2024-01-11T09:39:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139266/deployments",
+ "description": "Single neuron with ion concentrations to model anoxic depolarization (Zandt et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139266/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139266/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139266/forks",
+ "full_name": "OpenSourceBrain/139266",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139266/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139266/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139266/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139266.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139266",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139266/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139266",
+ "id": 741873271,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139266/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139266/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139266/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139266/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139266/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139266/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139266/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139266/milestones{/number}",
+ "mirror_url": null,
+ "name": "139266",
+ "node_id": "R_kgDOLDgWdw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139266/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139266/pulls{/number}",
+ "pushed_at": "2019-05-31T04:30:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139266/releases{/id}",
+ "size": 35,
+ "ssh_url": "git@github.com:OpenSourceBrain/139266.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139266/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139266/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139266/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139266/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139266",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139266/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139266/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139266/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139266",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139296": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139296/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139296/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139296/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139296/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139296.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139296/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139296/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139296/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139296/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139296/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139296/contributors",
+ "created_at": "2024-01-11T09:39:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139296/deployments",
+ "description": "A spatially extended model for macroscopic spike-wave discharges (Taylor and Baier 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139296/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139296/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139296/forks",
+ "full_name": "OpenSourceBrain/139296",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139296/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139296/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139296/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139296.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139296",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139296/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139296",
+ "id": 741873287,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139296/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139296/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139296/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139296/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139296/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139296/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139296/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139296/milestones{/number}",
+ "mirror_url": null,
+ "name": "139296",
+ "node_id": "R_kgDOLDgWhw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139296/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139296/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139296/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/139296.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139296/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139296/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139296/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139296/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139296",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139296/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139296/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139296/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139296",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139418": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139418/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139418/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139418/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139418/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139418.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139418/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139418/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139418/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139418/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139418/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139418/contributors",
+ "created_at": "2024-01-11T09:39:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139418/deployments",
+ "description": "Bursting respiratory net: clustered architecture gives large phase diff`s (Fietkiewicz et al 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139418/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139418/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139418/forks",
+ "full_name": "OpenSourceBrain/139418",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139418/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139418/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139418/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139418.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/139418",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139418/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139418",
+ "id": 741873299,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139418/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139418/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139418/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139418/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139418/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139418/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139418/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139418/milestones{/number}",
+ "mirror_url": null,
+ "name": "139418",
+ "node_id": "R_kgDOLDgWkw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139418/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139418/pulls{/number}",
+ "pushed_at": "2018-04-23T18:22:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139418/releases{/id}",
+ "size": 37,
+ "ssh_url": "git@github.com:OpenSourceBrain/139418.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139418/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139418/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139418/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139418/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139418",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139418/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139418/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139418/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139418",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139421": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139421/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139421/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139421/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139421/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139421.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139421/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139421/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139421/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139421/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139421/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139421/contributors",
+ "created_at": "2024-01-11T09:39:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139421/deployments",
+ "description": "Ketamine disrupts theta modulation of gamma in a computer model of hippocampus (Neymotin et al 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139421/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139421/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139421/forks",
+ "full_name": "OpenSourceBrain/139421",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139421/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139421/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139421/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139421.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/139421",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139421/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139421",
+ "id": 741873315,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139421/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139421/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139421/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139421/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139421/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139421/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139421/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139421/milestones{/number}",
+ "mirror_url": null,
+ "name": "139421",
+ "node_id": "R_kgDOLDgWow",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139421/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139421/pulls{/number}",
+ "pushed_at": "2023-11-28T20:42:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139421/releases{/id}",
+ "size": 281,
+ "ssh_url": "git@github.com:OpenSourceBrain/139421.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139421/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139421/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139421/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139421/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139421",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139421/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139421/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139421/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139421",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139457": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139457/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139457/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139457/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139457/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139457.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139457/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139457/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139457/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139457/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139457/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139457/contributors",
+ "created_at": "2024-01-11T09:39:51Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139457/deployments",
+ "description": "Mathematics for Neuroscientists (Gabbiani and Cox 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139457/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139457/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139457/forks",
+ "full_name": "OpenSourceBrain/139457",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139457/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139457/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139457/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139457.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/139457",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139457/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139457",
+ "id": 741873331,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139457/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139457/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139457/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139457/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139457/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139457/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139457/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139457/milestones{/number}",
+ "mirror_url": null,
+ "name": "139457",
+ "node_id": "R_kgDOLDgWsw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139457/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139457/pulls{/number}",
+ "pushed_at": "2023-12-23T03:44:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139457/releases{/id}",
+ "size": 5750,
+ "ssh_url": "git@github.com:OpenSourceBrain/139457.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139457/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139457/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139457/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139457/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139457",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139457/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139457/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139457/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139457",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139653": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139653/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139653/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139653/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139653/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139653.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139653/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139653/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139653/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139653/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139653/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139653/contributors",
+ "created_at": "2024-01-11T09:39:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139653/deployments",
+ "description": "L5b PC model constrained for BAC firing and perisomatic current step firing (Hay et al., 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139653/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139653/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139653/forks",
+ "full_name": "OpenSourceBrain/139653",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139653/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139653/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139653/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139653.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139653",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139653/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139653",
+ "id": 741873349,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139653/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139653/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139653/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139653/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139653/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139653/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139653/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139653/milestones{/number}",
+ "mirror_url": null,
+ "name": "139653",
+ "node_id": "R_kgDOLDgWxQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139653/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139653/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139653/releases{/id}",
+ "size": 644,
+ "ssh_url": "git@github.com:OpenSourceBrain/139653.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139653/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139653/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139653/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139653/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139653",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139653/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139653/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139653/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139653",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139654": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139654/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139654/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139654/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139654/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139654.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139654/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139654/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139654/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139654/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139654/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139654/contributors",
+ "created_at": "2024-01-11T09:39:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139654/deployments",
+ "description": "Frog second-order vestibular neuron models (Rossert et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139654/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139654/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139654/forks",
+ "full_name": "OpenSourceBrain/139654",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139654/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139654/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139654/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139654.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139654",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139654/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139654",
+ "id": 741873362,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139654/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139654/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139654/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139654/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139654/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139654/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139654/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139654/milestones{/number}",
+ "mirror_url": null,
+ "name": "139654",
+ "node_id": "R_kgDOLDgW0g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139654/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139654/pulls{/number}",
+ "pushed_at": "2019-05-31T02:12:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139654/releases{/id}",
+ "size": 2327,
+ "ssh_url": "git@github.com:OpenSourceBrain/139654.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139654/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139654/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139654/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139654/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139654",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139654/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139654/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139654/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139654",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139655": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139655/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139655/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139655/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139655/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139655.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139655/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139655/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139655/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139655/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139655/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139655/contributors",
+ "created_at": "2024-01-11T09:39:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139655/deployments",
+ "description": "Hippocampus CA1: Simulations of LTP signaling pathways (Kim M et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139655/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139655/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139655/forks",
+ "full_name": "OpenSourceBrain/139655",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139655/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139655/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139655/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139655.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139655",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139655/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139655",
+ "id": 741873382,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139655/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139655/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139655/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139655/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139655/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139655/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139655/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139655/milestones{/number}",
+ "mirror_url": null,
+ "name": "139655",
+ "node_id": "R_kgDOLDgW5g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139655/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139655/pulls{/number}",
+ "pushed_at": "2019-05-31T02:16:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139655/releases{/id}",
+ "size": 2576,
+ "ssh_url": "git@github.com:OpenSourceBrain/139655.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139655/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139655/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139655/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139655/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139655",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139655/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139655/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139655/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139655",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139656": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139656/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139656/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139656/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139656/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139656.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139656/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139656/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139656/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139656/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139656/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139656/contributors",
+ "created_at": "2024-01-11T09:39:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139656/deployments",
+ "description": "Cerebellar cortex oscil. robustness from Golgi cell gap jncs (Simoes de Souza and De Schutter 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139656/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139656/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139656/forks",
+ "full_name": "OpenSourceBrain/139656",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139656/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139656/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139656/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139656.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139656",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139656/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139656",
+ "id": 741873393,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139656/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139656/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139656/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139656/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139656/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139656/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139656/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139656/milestones{/number}",
+ "mirror_url": null,
+ "name": "139656",
+ "node_id": "R_kgDOLDgW8Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139656/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139656/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139656/releases{/id}",
+ "size": 30,
+ "ssh_url": "git@github.com:OpenSourceBrain/139656.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139656/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139656/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139656/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139656/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139656",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139656/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139656/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139656/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:39:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139656",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139657": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139657/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139657/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139657/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139657/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139657.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139657/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139657/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139657/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139657/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139657/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139657/contributors",
+ "created_at": "2024-01-11T09:40:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139657/deployments",
+ "description": "Superior paraolivary nucleus neuron (Kopp-Scheinpflug et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139657/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139657/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139657/forks",
+ "full_name": "OpenSourceBrain/139657",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139657/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139657/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139657/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139657.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139657",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139657/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139657",
+ "id": 741873405,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139657/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139657/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139657/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139657/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139657/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139657/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139657/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139657/milestones{/number}",
+ "mirror_url": null,
+ "name": "139657",
+ "node_id": "R_kgDOLDgW_Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139657/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139657/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139657/releases{/id}",
+ "size": 63,
+ "ssh_url": "git@github.com:OpenSourceBrain/139657.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139657/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139657/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139657/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139657/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139657",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139657/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139657/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139657/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139657",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139760": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139760/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139760/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139760/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139760/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139760.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139760/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139760/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139760/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139760/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139760/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139760/contributors",
+ "created_at": "2024-01-11T09:40:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139760/deployments",
+ "description": "Model of peristalsis in the dorsal blood vessel of Lumbriculus variegatus (Halfmann and Crisp 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139760/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139760/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139760/forks",
+ "full_name": "OpenSourceBrain/139760",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139760/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139760/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139760/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139760.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/139760",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139760/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139760",
+ "id": 741873422,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139760/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139760/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139760/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139760/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139760/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139760/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139760/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139760/milestones{/number}",
+ "mirror_url": null,
+ "name": "139760",
+ "node_id": "R_kgDOLDgXDg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139760/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139760/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139760/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/139760.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139760/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139760/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139760/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139760/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139760",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139760/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139760/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139760/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139760",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/139883": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/139883/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/139883/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/139883/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/139883/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/139883.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/139883/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/139883/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/139883/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/139883/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/139883/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/139883/contributors",
+ "created_at": "2024-01-11T09:40:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/139883/deployments",
+ "description": "Reconstructing cerebellar granule layer evoked LFP using convolution (ReConv) (Diwakar et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/139883/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/139883/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/139883/forks",
+ "full_name": "OpenSourceBrain/139883",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/139883/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/139883/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/139883/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/139883.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/139883",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/139883/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/139883",
+ "id": 741873435,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/139883/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/139883/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/139883/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/139883/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/139883/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/139883/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/139883/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/139883/milestones{/number}",
+ "mirror_url": null,
+ "name": "139883",
+ "node_id": "R_kgDOLDgXGw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/139883/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/139883/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/139883/releases{/id}",
+ "size": 263,
+ "ssh_url": "git@github.com:OpenSourceBrain/139883.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/139883/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/139883/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/139883/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/139883/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/139883",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/139883/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/139883/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/139883/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/139883",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140033": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140033/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140033/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140033/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140033/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140033.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140033/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140033/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140033/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140033/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140033/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140033/contributors",
+ "created_at": "2024-01-11T09:40:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140033/deployments",
+ "description": "Hyperconnectivity, slow synapses in PFC mental retardation and autism model (Testa-Silva et al 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140033/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140033/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140033/forks",
+ "full_name": "OpenSourceBrain/140033",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140033/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140033/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140033/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140033.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140033",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140033/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140033",
+ "id": 741873443,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140033/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140033/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140033/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140033/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140033/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140033/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140033/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140033/milestones{/number}",
+ "mirror_url": null,
+ "name": "140033",
+ "node_id": "R_kgDOLDgXIw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140033/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140033/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140033/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/140033.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140033/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140033/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140033/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140033/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140033",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140033/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140033/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140033/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140033",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140038": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140038/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140038/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140038/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140038/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140038.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140038/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140038/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140038/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140038/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140038/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140038/contributors",
+ "created_at": "2024-01-11T09:40:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140038/deployments",
+ "description": "Dorsal root ganglion (DRG) neuronal model (Kovalsky et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140038/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140038/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140038/forks",
+ "full_name": "OpenSourceBrain/140038",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140038/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140038/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140038/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140038.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140038",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140038/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140038",
+ "id": 741873459,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140038/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140038/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140038/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140038/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140038/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140038/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140038/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140038/milestones{/number}",
+ "mirror_url": null,
+ "name": "140038",
+ "node_id": "R_kgDOLDgXMw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140038/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140038/pulls{/number}",
+ "pushed_at": "2019-05-31T05:01:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140038/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/140038.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140038/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140038/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140038/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140038/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140038",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140038/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140038/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140038/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140038",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140246": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140246/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140246/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140246/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140246/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140246.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140246/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140246/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140246/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140246/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140246/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140246/contributors",
+ "created_at": "2024-01-11T09:40:11Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140246/deployments",
+ "description": "A simple integrative electrophysiological model of bursting GnRH neurons (Csercsik et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140246/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140246/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140246/forks",
+ "full_name": "OpenSourceBrain/140246",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140246/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140246/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140246/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140246.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/140246",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140246/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140246",
+ "id": 741873473,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140246/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140246/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140246/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140246/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140246/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140246/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140246/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140246/milestones{/number}",
+ "mirror_url": null,
+ "name": "140246",
+ "node_id": "R_kgDOLDgXQQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140246/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140246/pulls{/number}",
+ "pushed_at": "2023-12-23T03:44:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140246/releases{/id}",
+ "size": 74,
+ "ssh_url": "git@github.com:OpenSourceBrain/140246.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140246/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140246/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140246/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140246/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140246",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140246/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140246/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140246/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140246",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140249": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140249/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140249/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140249/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140249/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140249.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140249/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140249/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140249/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140249/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140249/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140249/contributors",
+ "created_at": "2024-01-11T09:40:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140249/deployments",
+ "description": "A multi-compartment model for interneurons in the dLGN (Halnes et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140249/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140249/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140249/forks",
+ "full_name": "OpenSourceBrain/140249",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140249/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140249/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140249/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140249.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140249",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140249/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140249",
+ "id": 741873488,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140249/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140249/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140249/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140249/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140249/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140249/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140249/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140249/milestones{/number}",
+ "mirror_url": null,
+ "name": "140249",
+ "node_id": "R_kgDOLDgXUA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140249/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140249/pulls{/number}",
+ "pushed_at": "2019-05-31T03:34:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140249/releases{/id}",
+ "size": 108,
+ "ssh_url": "git@github.com:OpenSourceBrain/140249.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140249/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140249/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140249/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140249/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140249",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140249/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140249/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140249/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140249",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140254": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140254/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140254/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140254/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140254/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140254.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140254/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140254/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140254/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140254/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140254/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140254/contributors",
+ "created_at": "2024-01-11T09:40:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140254/deployments",
+ "description": "Firing patterns in stuttering fast-spiking interneurons (Klaus et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140254/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140254/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140254/forks",
+ "full_name": "OpenSourceBrain/140254",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140254/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140254/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140254/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140254.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140254",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140254/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140254",
+ "id": 741873500,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140254/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140254/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140254/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140254/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140254/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140254/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140254/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140254/milestones{/number}",
+ "mirror_url": null,
+ "name": "140254",
+ "node_id": "R_kgDOLDgXXA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140254/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140254/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140254/releases{/id}",
+ "size": 2728,
+ "ssh_url": "git@github.com:OpenSourceBrain/140254.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140254/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140254/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140254/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140254/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140254",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140254/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140254/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140254/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140254",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140299": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140299/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140299/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140299/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140299/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140299.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140299/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140299/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140299/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140299/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140299/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140299/contributors",
+ "created_at": "2024-01-11T09:40:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140299/deployments",
+ "description": "Four cortical interneuron subtypes (Kubota et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140299/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140299/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140299/forks",
+ "full_name": "OpenSourceBrain/140299",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140299/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140299/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140299/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140299.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140299",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140299/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140299",
+ "id": 741873513,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140299/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140299/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140299/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140299/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140299/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140299/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140299/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140299/milestones{/number}",
+ "mirror_url": null,
+ "name": "140299",
+ "node_id": "R_kgDOLDgXaQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140299/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140299/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140299/releases{/id}",
+ "size": 177,
+ "ssh_url": "git@github.com:OpenSourceBrain/140299.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140299/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140299/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140299/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140299/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140299",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140299/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140299/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140299/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140299",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140462": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140462/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140462/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140462/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140462/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140462.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140462/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140462/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140462/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140462/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140462/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140462/contributors",
+ "created_at": "2024-01-11T09:40:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140462/deployments",
+ "description": "Calcium and potassium currents of olfactory bulb juxtaglomerular cells (Masurkar and Chen 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140462/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140462/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140462/forks",
+ "full_name": "OpenSourceBrain/140462",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140462/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140462/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140462/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140462.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/140462",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140462/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140462",
+ "id": 741873526,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140462/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140462/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140462/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140462/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140462/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140462/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140462/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140462/milestones{/number}",
+ "mirror_url": null,
+ "name": "140462",
+ "node_id": "R_kgDOLDgXdg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140462/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140462/pulls{/number}",
+ "pushed_at": "2018-04-23T18:23:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140462/releases{/id}",
+ "size": 27,
+ "ssh_url": "git@github.com:OpenSourceBrain/140462.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140462/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140462/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140462/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140462/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140462",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140462/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140462/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140462/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140462",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140465": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140465/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140465/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140465/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140465/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140465.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140465/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140465/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140465/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140465/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140465/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140465/contributors",
+ "created_at": "2024-01-11T09:40:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140465/deployments",
+ "description": "Cancelling redundant input in ELL pyramidal cells (Bol et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140465/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140465/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140465/forks",
+ "full_name": "OpenSourceBrain/140465",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140465/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140465/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140465/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140465.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140465",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140465/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140465",
+ "id": 741873538,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140465/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140465/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140465/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140465/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140465/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140465/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140465/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140465/milestones{/number}",
+ "mirror_url": null,
+ "name": "140465",
+ "node_id": "R_kgDOLDgXgg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140465/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140465/pulls{/number}",
+ "pushed_at": "2019-05-31T03:31:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140465/releases{/id}",
+ "size": 18,
+ "ssh_url": "git@github.com:OpenSourceBrain/140465.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140465/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140465/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140465/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140465/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140465",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140465/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140465/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140465/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140465",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140471": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140471/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140471/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140471/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140471/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140471.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140471/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140471/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140471/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140471/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140471/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140471/contributors",
+ "created_at": "2024-01-11T09:40:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140471/deployments",
+ "description": "Shaping of action potentials by different types of BK channels (Jaffe et al., 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140471/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140471/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140471/forks",
+ "full_name": "OpenSourceBrain/140471",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140471/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140471/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140471/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140471.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140471",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140471/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140471",
+ "id": 741873550,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140471/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140471/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140471/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140471/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140471/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140471/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140471/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140471/milestones{/number}",
+ "mirror_url": null,
+ "name": "140471",
+ "node_id": "R_kgDOLDgXjg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140471/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140471/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140471/releases{/id}",
+ "size": 1348,
+ "ssh_url": "git@github.com:OpenSourceBrain/140471.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140471/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140471/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140471/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140471/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140471",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140471/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140471/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140471/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140471",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140599": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140599/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140599/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140599/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140599/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140599.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140599/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140599/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140599/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140599/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140599/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140599/contributors",
+ "created_at": "2024-01-11T09:40:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140599/deployments",
+ "description": "Dipole Localization Kit (Mechler & Victor, 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140599/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140599/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140599/forks",
+ "full_name": "OpenSourceBrain/140599",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140599/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140599/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140599/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140599.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140599",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140599/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140599",
+ "id": 741873563,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140599/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140599/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140599/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140599/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140599/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140599/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140599/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140599/milestones{/number}",
+ "mirror_url": null,
+ "name": "140599",
+ "node_id": "R_kgDOLDgXmw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140599/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140599/pulls{/number}",
+ "pushed_at": "2019-05-31T04:28:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140599/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/140599.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140599/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140599/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140599/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140599/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140599",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140599/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140599/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140599/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140599",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140732": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140732/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140732/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140732/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140732/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140732.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140732/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140732/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140732/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140732/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140732/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140732/contributors",
+ "created_at": "2024-01-11T09:40:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140732/deployments",
+ "description": "CA3 Radiatum/Lacunosum-Moleculare interneuron, Ih (Anderson et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140732/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140732/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140732/forks",
+ "full_name": "OpenSourceBrain/140732",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140732/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140732/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140732/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140732.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140732",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140732/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140732",
+ "id": 741873580,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140732/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140732/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140732/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140732/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140732/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140732/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140732/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140732/milestones{/number}",
+ "mirror_url": null,
+ "name": "140732",
+ "node_id": "R_kgDOLDgXrA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140732/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140732/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140732/releases{/id}",
+ "size": 8,
+ "ssh_url": "git@github.com:OpenSourceBrain/140732.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140732/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140732/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140732/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140732/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140732",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140732/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140732/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140732/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140732",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140788": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140788/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140788/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140788/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140788/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140788.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140788/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140788/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140788/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140788/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140788/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140788/contributors",
+ "created_at": "2024-01-11T09:40:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140788/deployments",
+ "description": "Motoneuron model of self-sustained firing after spinal cord injury (Kurian et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140788/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140788/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140788/forks",
+ "full_name": "OpenSourceBrain/140788",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140788/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140788/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140788/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140788.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140788",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140788/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140788",
+ "id": 741873598,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140788/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140788/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140788/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140788/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140788/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140788/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140788/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140788/milestones{/number}",
+ "mirror_url": null,
+ "name": "140788",
+ "node_id": "R_kgDOLDgXvg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140788/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140788/pulls{/number}",
+ "pushed_at": "2019-05-31T04:53:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140788/releases{/id}",
+ "size": 96,
+ "ssh_url": "git@github.com:OpenSourceBrain/140788.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140788/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140788/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140788/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140788/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140788",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140788/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140788/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140788/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140788",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140789": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140789/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140789/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140789/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140789/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140789.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140789/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140789/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140789/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140789/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140789/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140789/contributors",
+ "created_at": "2024-01-11T09:40:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140789/deployments",
+ "description": "Detailed passive cable model of Dentate Gyrus Basket Cells (Norenberg et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140789/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140789/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140789/forks",
+ "full_name": "OpenSourceBrain/140789",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140789/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140789/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140789/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140789.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/140789",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140789/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140789",
+ "id": 741873612,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140789/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140789/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140789/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140789/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140789/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140789/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140789/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140789/milestones{/number}",
+ "mirror_url": null,
+ "name": "140789",
+ "node_id": "R_kgDOLDgXzA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140789/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140789/pulls{/number}",
+ "pushed_at": "2023-07-08T15:50:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140789/releases{/id}",
+ "size": 2738,
+ "ssh_url": "git@github.com:OpenSourceBrain/140789.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140789/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140789/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140789/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140789/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140789",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140789/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140789/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140789/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140789",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140828": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140828/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140828/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140828/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140828/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140828.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140828/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140828/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140828/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140828/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140828/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140828/contributors",
+ "created_at": "2024-01-11T09:40:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140828/deployments",
+ "description": "Dendritic Discrimination of Temporal Input Sequences (Branco et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140828/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140828/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140828/forks",
+ "full_name": "OpenSourceBrain/140828",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140828/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140828/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140828/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140828.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/140828",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140828/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140828",
+ "id": 741873627,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140828/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140828/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140828/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140828/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140828/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140828/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140828/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140828/milestones{/number}",
+ "mirror_url": null,
+ "name": "140828",
+ "node_id": "R_kgDOLDgX2w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140828/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140828/pulls{/number}",
+ "pushed_at": "2020-09-16T18:25:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140828/releases{/id}",
+ "size": 135,
+ "ssh_url": "git@github.com:OpenSourceBrain/140828.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140828/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140828/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140828/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140828/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140828",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140828/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140828/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140828/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140828",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140881": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140881/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140881/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140881/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140881/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140881.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140881/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140881/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140881/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140881/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140881/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140881/contributors",
+ "created_at": "2024-01-11T09:40:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140881/deployments",
+ "description": "Computational Surgery (Lytton et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140881/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140881/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140881/forks",
+ "full_name": "OpenSourceBrain/140881",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140881/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140881/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140881/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140881.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/140881",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140881/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140881",
+ "id": 741873643,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140881/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140881/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140881/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140881/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140881/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140881/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140881/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140881/milestones{/number}",
+ "mirror_url": null,
+ "name": "140881",
+ "node_id": "R_kgDOLDgX6w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140881/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140881/pulls{/number}",
+ "pushed_at": "2023-04-30T19:25:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140881/releases{/id}",
+ "size": 292,
+ "ssh_url": "git@github.com:OpenSourceBrain/140881.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140881/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140881/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140881/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140881/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140881",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140881/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140881/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140881/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140881",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/140964": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/140964/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/140964/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/140964/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/140964/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/140964.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/140964/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/140964/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/140964/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/140964/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/140964/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/140964/contributors",
+ "created_at": "2024-01-11T09:40:39Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/140964/deployments",
+ "description": "Event-related simulation of neural processing in complex visual scenes (Mihalas et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/140964/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/140964/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/140964/forks",
+ "full_name": "OpenSourceBrain/140964",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/140964/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/140964/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/140964/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/140964.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/140964",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/140964/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/140964",
+ "id": 741873656,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/140964/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/140964/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/140964/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/140964/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/140964/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/140964/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/140964/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/140964/milestones{/number}",
+ "mirror_url": null,
+ "name": "140964",
+ "node_id": "R_kgDOLDgX-A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/140964/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/140964/pulls{/number}",
+ "pushed_at": "2023-12-23T03:44:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/140964/releases{/id}",
+ "size": 9672,
+ "ssh_url": "git@github.com:OpenSourceBrain/140964.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/140964/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/140964/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/140964/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/140964/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/140964",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/140964/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/140964/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/140964/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/140964",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141061": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141061/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141061/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141061/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141061/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141061.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141061/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141061/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141061/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141061/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141061/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141061/contributors",
+ "created_at": "2024-01-11T09:40:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141061/deployments",
+ "description": "Measuring neuronal identification quality in ensemble recordings (isoitools) (Neymotin et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141061/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141061/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141061/forks",
+ "full_name": "OpenSourceBrain/141061",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141061/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141061/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141061/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141061.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141061",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141061/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141061",
+ "id": 741873677,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141061/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141061/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141061/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141061/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141061/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141061/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141061/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141061/milestones{/number}",
+ "mirror_url": null,
+ "name": "141061",
+ "node_id": "R_kgDOLDgYDQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141061/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141061/pulls{/number}",
+ "pushed_at": "2019-05-31T02:32:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141061/releases{/id}",
+ "size": 922,
+ "ssh_url": "git@github.com:OpenSourceBrain/141061.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141061/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141061/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141061/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141061/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141061",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141061/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141061/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141061/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141061",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141062": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141062/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141062/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141062/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141062/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141062.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141062/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141062/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141062/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141062/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141062/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141062/contributors",
+ "created_at": "2024-01-11T09:40:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141062/deployments",
+ "description": "Relative spike time coding and STDP-based orientation selectivity in V1 (Masquelier 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141062/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141062/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141062/forks",
+ "full_name": "OpenSourceBrain/141062",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141062/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141062/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141062/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141062.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141062",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141062/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141062",
+ "id": 741873695,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141062/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141062/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141062/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141062/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141062/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141062/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141062/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141062/milestones{/number}",
+ "mirror_url": null,
+ "name": "141062",
+ "node_id": "R_kgDOLDgYHw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141062/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141062/pulls{/number}",
+ "pushed_at": "2019-05-31T02:11:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141062/releases{/id}",
+ "size": 21,
+ "ssh_url": "git@github.com:OpenSourceBrain/141062.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141062/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141062/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141062/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141062/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141062",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141062/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141062/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141062/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141062",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141063": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141063/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141063/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141063/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141063/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141063.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141063/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141063/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141063/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141063/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141063/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141063/contributors",
+ "created_at": "2024-01-11T09:40:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141063/deployments",
+ "description": "Role of Ih in firing patterns of cold thermoreceptors (Orio et al., 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141063/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141063/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141063/forks",
+ "full_name": "OpenSourceBrain/141063",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141063/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141063/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141063/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141063.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141063",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141063/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141063",
+ "id": 741873711,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141063/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141063/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141063/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141063/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141063/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141063/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141063/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141063/milestones{/number}",
+ "mirror_url": null,
+ "name": "141063",
+ "node_id": "R_kgDOLDgYLw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141063/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141063/pulls{/number}",
+ "pushed_at": "2019-05-31T02:17:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141063/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/141063.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141063/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141063/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141063/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141063/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141063",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141063/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141063/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141063/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141063",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141192": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141192/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141192/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141192/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141192/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141192.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141192/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141192/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141192/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141192/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141192/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141192/contributors",
+ "created_at": "2024-01-11T09:40:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141192/deployments",
+ "description": "A four compartmental model for ABPD complex in crustacean pyloric network (Maran et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141192/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141192/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141192/forks",
+ "full_name": "OpenSourceBrain/141192",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141192/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141192/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141192/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141192.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141192",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141192/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141192",
+ "id": 741873723,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141192/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141192/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141192/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141192/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141192/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141192/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141192/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141192/milestones{/number}",
+ "mirror_url": null,
+ "name": "141192",
+ "node_id": "R_kgDOLDgYOw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141192/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141192/pulls{/number}",
+ "pushed_at": "2019-05-31T03:44:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141192/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/141192.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141192/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141192/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141192/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141192/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141192",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141192/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141192/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141192/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141192",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141226": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141226/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141226/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141226/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141226/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141226.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141226/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141226/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141226/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141226/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141226/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141226/contributors",
+ "created_at": "2024-01-11T09:40:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141226/deployments",
+ "description": "Multiscale interactions between chemical and electric signaling in LTP (Bhalla 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141226/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141226/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141226/forks",
+ "full_name": "OpenSourceBrain/141226",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141226/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141226/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141226/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141226.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141226",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141226/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141226",
+ "id": 741873739,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141226/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141226/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141226/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141226/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141226/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141226/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141226/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141226/milestones{/number}",
+ "mirror_url": null,
+ "name": "141226",
+ "node_id": "R_kgDOLDgYSw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141226/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141226/pulls{/number}",
+ "pushed_at": "2019-05-31T03:45:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141226/releases{/id}",
+ "size": 238,
+ "ssh_url": "git@github.com:OpenSourceBrain/141226.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141226/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141226/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141226/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141226/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141226",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141226/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141226/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141226/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141226",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141270": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141270/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141270/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141270/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141270/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141270.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141270/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141270/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141270/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141270/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141270/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141270/contributors",
+ "created_at": "2024-01-11T09:40:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141270/deployments",
+ "description": "Cerebellar long-term depression (LTD) (Antunes and De Schutter 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141270/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141270/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141270/forks",
+ "full_name": "OpenSourceBrain/141270",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141270/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141270/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141270/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141270.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141270",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141270/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141270",
+ "id": 741873757,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141270/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141270/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141270/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141270/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141270/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141270/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141270/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141270/milestones{/number}",
+ "mirror_url": null,
+ "name": "141270",
+ "node_id": "R_kgDOLDgYXQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141270/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141270/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141270/releases{/id}",
+ "size": 827,
+ "ssh_url": "git@github.com:OpenSourceBrain/141270.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141270/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141270/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141270/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141270/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141270",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141270/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141270/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141270/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141270",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141272": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141272/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141272/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141272/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141272/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141272.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141272/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141272/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141272/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141272/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141272/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141272/contributors",
+ "created_at": "2024-01-11T09:40:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141272/deployments",
+ "description": "Simple and accurate Diffusion Approximation algor. for stochastic ion channels (Orio & Soudry 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141272/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141272/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141272/forks",
+ "full_name": "OpenSourceBrain/141272",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141272/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141272/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141272/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141272.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141272",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141272/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141272",
+ "id": 741873771,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141272/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141272/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141272/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141272/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141272/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141272/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141272/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141272/milestones{/number}",
+ "mirror_url": null,
+ "name": "141272",
+ "node_id": "R_kgDOLDgYaw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141272/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141272/pulls{/number}",
+ "pushed_at": "2019-05-31T02:44:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141272/releases{/id}",
+ "size": 85,
+ "ssh_url": "git@github.com:OpenSourceBrain/141272.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141272/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141272/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141272/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141272/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141272",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141272/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141272/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141272/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141272",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141273": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141273/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141273/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141273/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141273/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141273.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141273/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141273/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141273/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141273/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141273/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141273/contributors",
+ "created_at": "2024-01-11T09:40:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141273/deployments",
+ "description": "Engaging distinct oscillatory neocortical circuits (Vierling-Claassen et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141273/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141273/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141273/forks",
+ "full_name": "OpenSourceBrain/141273",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141273/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141273/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141273/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141273.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/141273",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141273/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141273",
+ "id": 741873784,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141273/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141273/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141273/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141273/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141273/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141273/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141273/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141273/milestones{/number}",
+ "mirror_url": null,
+ "name": "141273",
+ "node_id": "R_kgDOLDgYeA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141273/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141273/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141273/releases{/id}",
+ "size": 323,
+ "ssh_url": "git@github.com:OpenSourceBrain/141273.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141273/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141273/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141273/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141273/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141273",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141273/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141273/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141273/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141273",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141274": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141274/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141274/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141274/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141274/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141274.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141274/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141274/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141274/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141274/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141274/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141274/contributors",
+ "created_at": "2024-01-11T09:40:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141274/deployments",
+ "description": "Biophysically detailed model of the mouse sino-atrial node cell (Kharche et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141274/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141274/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141274/forks",
+ "full_name": "OpenSourceBrain/141274",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141274/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141274/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141274/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141274.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141274",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141274/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141274",
+ "id": 741873797,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141274/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141274/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141274/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141274/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141274/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141274/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141274/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141274/milestones{/number}",
+ "mirror_url": null,
+ "name": "141274",
+ "node_id": "R_kgDOLDgYhQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141274/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141274/pulls{/number}",
+ "pushed_at": "2019-05-31T02:13:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141274/releases{/id}",
+ "size": 86,
+ "ssh_url": "git@github.com:OpenSourceBrain/141274.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141274/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141274/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141274/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141274/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141274",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141274/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141274/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141274/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:40:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141274",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141505": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141505/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141505/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141505/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141505/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141505.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141505/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141505/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141505/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141505/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141505/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141505/contributors",
+ "created_at": "2024-01-11T09:41:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141505/deployments",
+ "description": "Prosthetic electrostimulation for information flow repair in a neocortical simulation (Kerr 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141505/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141505/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141505/forks",
+ "full_name": "OpenSourceBrain/141505",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141505/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141505/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141505/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141505.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/141505",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141505/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141505",
+ "id": 741873809,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141505/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141505/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141505/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141505/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141505/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141505/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141505/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141505/milestones{/number}",
+ "mirror_url": null,
+ "name": "141505",
+ "node_id": "R_kgDOLDgYkQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141505/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141505/pulls{/number}",
+ "pushed_at": "2023-04-30T19:26:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141505/releases{/id}",
+ "size": 536,
+ "ssh_url": "git@github.com:OpenSourceBrain/141505.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141505/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141505/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141505/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141505/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141505",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141505/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141505/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141505/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141505",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141507": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141507/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141507/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141507/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141507/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141507.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141507/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141507/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141507/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141507/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141507/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141507/contributors",
+ "created_at": "2024-01-11T09:41:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141507/deployments",
+ "description": "Network model with neocortical architecture (Anderson et al 2007,2012; Azhar et al 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141507/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141507/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141507/forks",
+ "full_name": "OpenSourceBrain/141507",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141507/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141507/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141507/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141507.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141507",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141507/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141507",
+ "id": 741873826,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141507/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141507/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141507/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141507/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141507/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141507/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141507/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141507/milestones{/number}",
+ "mirror_url": null,
+ "name": "141507",
+ "node_id": "R_kgDOLDgYog",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141507/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141507/pulls{/number}",
+ "pushed_at": "2019-05-31T02:15:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141507/releases{/id}",
+ "size": 11953,
+ "ssh_url": "git@github.com:OpenSourceBrain/141507.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141507/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141507/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141507/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141507/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141507",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141507/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141507/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141507/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141507",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141699": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141699/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141699/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141699/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141699/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141699.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141699/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141699/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141699/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141699/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141699/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141699/contributors",
+ "created_at": "2024-01-11T09:41:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141699/deployments",
+ "description": "Basal ganglia-thalamic network model for deep brain stimulation (So et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141699/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141699/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141699/forks",
+ "full_name": "OpenSourceBrain/141699",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141699/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141699/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141699/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141699.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141699",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141699/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141699",
+ "id": 741873840,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141699/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141699/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141699/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141699/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141699/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141699/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141699/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141699/milestones{/number}",
+ "mirror_url": null,
+ "name": "141699",
+ "node_id": "R_kgDOLDgYsA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141699/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141699/pulls{/number}",
+ "pushed_at": "2019-05-31T02:37:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141699/releases{/id}",
+ "size": 381,
+ "ssh_url": "git@github.com:OpenSourceBrain/141699.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141699/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141699/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141699/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141699/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141699",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141699/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141699/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141699/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141699",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141835": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141835/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141835/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141835/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141835/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141835.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141835/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141835/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141835/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141835/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141835/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141835/contributors",
+ "created_at": "2024-01-11T09:41:07Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141835/deployments",
+ "description": "Mathematical Foundations of Neuroscience (Ermentrout and Terman 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141835/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141835/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141835/forks",
+ "full_name": "OpenSourceBrain/141835",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141835/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141835/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141835/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141835.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/141835",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141835/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141835",
+ "id": 741873855,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141835/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141835/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141835/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141835/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141835/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141835/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141835/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141835/milestones{/number}",
+ "mirror_url": null,
+ "name": "141835",
+ "node_id": "R_kgDOLDgYvw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141835/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141835/pulls{/number}",
+ "pushed_at": "2023-12-23T03:45:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141835/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/141835.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141835/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141835/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141835/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141835/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141835",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141835/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141835/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141835/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141835",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/141991": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/141991/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/141991/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/141991/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/141991/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/141991.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/141991/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/141991/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/141991/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/141991/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/141991/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/141991/contributors",
+ "created_at": "2024-01-11T09:41:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/141991/deployments",
+ "description": "Two Models for synaptic input statistics for the MSO neuron model (Jercog et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/141991/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/141991/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/141991/forks",
+ "full_name": "OpenSourceBrain/141991",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/141991/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/141991/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/141991/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/141991.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/141991",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/141991/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/141991",
+ "id": 741873870,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/141991/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/141991/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/141991/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/141991/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/141991/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/141991/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/141991/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/141991/milestones{/number}",
+ "mirror_url": null,
+ "name": "141991",
+ "node_id": "R_kgDOLDgYzg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/141991/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/141991/pulls{/number}",
+ "pushed_at": "2019-05-31T03:16:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/141991/releases{/id}",
+ "size": 1001,
+ "ssh_url": "git@github.com:OpenSourceBrain/141991.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/141991/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/141991/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/141991/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/141991/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/141991",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/141991/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/141991/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/141991/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/141991",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/142062": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/142062/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/142062/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/142062/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/142062/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/142062.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/142062/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/142062/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/142062/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/142062/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/142062/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/142062/contributors",
+ "created_at": "2024-01-11T09:41:11Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/142062/deployments",
+ "description": "Efficient simulation environment for modeling large-scale cortical processing (Richert et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/142062/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/142062/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/142062/forks",
+ "full_name": "OpenSourceBrain/142062",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/142062/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/142062/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/142062/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/142062.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/142062",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/142062/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/142062",
+ "id": 741873886,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/142062/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/142062/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/142062/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/142062/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/142062/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/142062/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/142062/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/142062/milestones{/number}",
+ "mirror_url": null,
+ "name": "142062",
+ "node_id": "R_kgDOLDgY3g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/142062/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/142062/pulls{/number}",
+ "pushed_at": "2023-12-23T03:45:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/142062/releases{/id}",
+ "size": 1933,
+ "ssh_url": "git@github.com:OpenSourceBrain/142062.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/142062/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/142062/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/142062/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/142062/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/142062",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/142062/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/142062/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/142062/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/142062",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/142104": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/142104/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/142104/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/142104/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/142104/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/142104.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/142104/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/142104/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/142104/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/142104/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/142104/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/142104/contributors",
+ "created_at": "2024-01-11T09:41:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/142104/deployments",
+ "description": "Hippocampal CA3 network and circadian regulation (Stanley et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/142104/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/142104/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/142104/forks",
+ "full_name": "OpenSourceBrain/142104",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/142104/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/142104/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/142104/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/142104.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/142104",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/142104/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/142104",
+ "id": 741873898,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/142104/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/142104/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/142104/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/142104/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/142104/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/142104/languages",
+ "license": {
+ "key": "gpl-2.0",
+ "name": "GNU General Public License v2.0",
+ "node_id": "MDc6TGljZW5zZTg=",
+ "spdx_id": "GPL-2.0",
+ "url": "https://api.github.com/licenses/gpl-2.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/142104/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/142104/milestones{/number}",
+ "mirror_url": null,
+ "name": "142104",
+ "node_id": "R_kgDOLDgY6g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/142104/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/142104/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/142104/releases{/id}",
+ "size": 12497,
+ "ssh_url": "git@github.com:OpenSourceBrain/142104.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/142104/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/142104/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/142104/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/142104/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/142104",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/142104/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/142104/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/142104/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/142104",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/142199": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/142199/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/142199/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/142199/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/142199/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/142199.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/142199/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/142199/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/142199/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/142199/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/142199/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/142199/contributors",
+ "created_at": "2024-01-11T09:41:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/142199/deployments",
+ "description": "Rate model of a cortical RS-FS-LTS network (Hayut et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/142199/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/142199/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/142199/forks",
+ "full_name": "OpenSourceBrain/142199",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/142199/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/142199/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/142199/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/142199.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/142199",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/142199/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/142199",
+ "id": 741873911,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/142199/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/142199/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/142199/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/142199/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/142199/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/142199/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/142199/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/142199/milestones{/number}",
+ "mirror_url": null,
+ "name": "142199",
+ "node_id": "R_kgDOLDgY9w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/142199/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/142199/pulls{/number}",
+ "pushed_at": "2019-05-31T04:25:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/142199/releases{/id}",
+ "size": 30,
+ "ssh_url": "git@github.com:OpenSourceBrain/142199.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/142199/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/142199/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/142199/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/142199/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/142199",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/142199/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/142199/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/142199/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/142199",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/142273": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/142273/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/142273/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/142273/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/142273/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/142273.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/142273/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/142273/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/142273/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/142273/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/142273/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/142273/contributors",
+ "created_at": "2024-01-11T09:41:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/142273/deployments",
+ "description": "FRAT: An amygdala-centered model of fear conditioning (Krasne et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/142273/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/142273/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/142273/forks",
+ "full_name": "OpenSourceBrain/142273",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/142273/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/142273/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/142273/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/142273.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/142273",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/142273/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/142273",
+ "id": 741873927,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/142273/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/142273/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/142273/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/142273/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/142273/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/142273/languages",
+ "license": {
+ "key": "other",
+ "name": "Other",
+ "node_id": "MDc6TGljZW5zZTA=",
+ "spdx_id": "NOASSERTION",
+ "url": null
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/142273/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/142273/milestones{/number}",
+ "mirror_url": null,
+ "name": "142273",
+ "node_id": "R_kgDOLDgZBw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/142273/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/142273/pulls{/number}",
+ "pushed_at": "2019-05-31T03:29:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/142273/releases{/id}",
+ "size": 9642,
+ "ssh_url": "git@github.com:OpenSourceBrain/142273.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/142273/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/142273/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/142273/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/142273/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/142273",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/142273/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/142273/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/142273/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/142273",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/142630": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/142630/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/142630/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/142630/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/142630/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/142630.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/142630/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/142630/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/142630/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/142630/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/142630/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/142630/contributors",
+ "created_at": "2024-01-11T09:41:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/142630/deployments",
+ "description": "Ion concentration dynamics as a mechanism for neuronal bursting (Barreto & Cressman 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/142630/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/142630/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/142630/forks",
+ "full_name": "OpenSourceBrain/142630",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/142630/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/142630/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/142630/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/142630.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/142630",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/142630/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/142630",
+ "id": 741873945,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/142630/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/142630/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/142630/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/142630/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/142630/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/142630/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/142630/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/142630/milestones{/number}",
+ "mirror_url": null,
+ "name": "142630",
+ "node_id": "R_kgDOLDgZGQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/142630/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/142630/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/142630/releases{/id}",
+ "size": 766,
+ "ssh_url": "git@github.com:OpenSourceBrain/142630.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/142630/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/142630/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/142630/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/142630/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/142630",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/142630/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/142630/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/142630/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/142630",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/142990": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/142990/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/142990/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/142990/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/142990/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/142990.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/142990/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/142990/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/142990/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/142990/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/142990/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/142990/contributors",
+ "created_at": "2024-01-11T09:41:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/142990/deployments",
+ "description": "Fisher and Shannon information in finite neural populations (Yarrow et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/142990/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/142990/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/142990/forks",
+ "full_name": "OpenSourceBrain/142990",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/142990/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/142990/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/142990/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/142990.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/142990",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/142990/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/142990",
+ "id": 741873958,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/142990/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/142990/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/142990/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/142990/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/142990/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/142990/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/142990/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/142990/milestones{/number}",
+ "mirror_url": null,
+ "name": "142990",
+ "node_id": "R_kgDOLDgZJg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/142990/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/142990/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/142990/releases{/id}",
+ "size": 26,
+ "ssh_url": "git@github.com:OpenSourceBrain/142990.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/142990/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/142990/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/142990/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/142990/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/142990",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/142990/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/142990/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/142990/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/142990",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/142993": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/142993/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/142993/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/142993/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/142993/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/142993.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/142993/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/142993/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/142993/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/142993/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/142993/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/142993/contributors",
+ "created_at": "2024-01-11T09:41:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/142993/deployments",
+ "description": "ClC-2 channels regulate neuronal excitability, not intracellular Cl- levels (Ratte & Prescott 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/142993/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/142993/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/142993/forks",
+ "full_name": "OpenSourceBrain/142993",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/142993/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/142993/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/142993/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/142993.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/142993",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/142993/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/142993",
+ "id": 741873976,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/142993/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/142993/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/142993/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/142993/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/142993/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/142993/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/142993/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/142993/milestones{/number}",
+ "mirror_url": null,
+ "name": "142993",
+ "node_id": "R_kgDOLDgZOA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/142993/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/142993/pulls{/number}",
+ "pushed_at": "2022-02-25T07:28:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/142993/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/142993.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/142993/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/142993/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/142993/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/142993/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/142993",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/142993/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/142993/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/142993/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/142993",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143072": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143072/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143072/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143072/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143072/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143072.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143072/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143072/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143072/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143072/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143072/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143072/contributors",
+ "created_at": "2024-01-11T09:41:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143072/deployments",
+ "description": "Explaining pathological changes in axonal excitability by dynamical analysis (Coggan et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143072/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143072/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143072/forks",
+ "full_name": "OpenSourceBrain/143072",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143072/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143072/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143072/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143072.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143072/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143072",
+ "id": 741873993,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143072/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143072/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143072/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143072/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143072/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143072/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143072/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143072/milestones{/number}",
+ "mirror_url": null,
+ "name": "143072",
+ "node_id": "R_kgDOLDgZSQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143072/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143072/pulls{/number}",
+ "pushed_at": "2019-05-07T20:09:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143072/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/143072.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143072/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143072/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143072/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143072/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143072",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143072/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143072/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143072/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143072",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143083": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143083/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143083/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143083/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143083/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143083.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143083/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143083/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143083/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143083/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143083/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143083/contributors",
+ "created_at": "2024-01-11T09:41:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143083/deployments",
+ "description": "STDP and oscillations produce phase-locking (Muller et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143083/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143083/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143083/forks",
+ "full_name": "OpenSourceBrain/143083",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143083/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143083/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143083/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143083.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143083",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143083/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143083",
+ "id": 741874004,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143083/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143083/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143083/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143083/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143083/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143083/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143083/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143083/milestones{/number}",
+ "mirror_url": null,
+ "name": "143083",
+ "node_id": "R_kgDOLDgZVA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143083/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143083/pulls{/number}",
+ "pushed_at": "2019-05-31T04:54:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143083/releases{/id}",
+ "size": 155,
+ "ssh_url": "git@github.com:OpenSourceBrain/143083.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143083/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143083/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143083/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143083/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143083",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143083/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143083/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143083/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143083",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143100": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143100/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143100/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143100/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143100/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143100.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143100/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143100/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143100/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143100/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143100/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143100/contributors",
+ "created_at": "2024-01-11T09:41:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143100/deployments",
+ "description": "Phase response curve of a globus pallidal neuron (Fujita et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143100/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143100/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143100/forks",
+ "full_name": "OpenSourceBrain/143100",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143100/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143100/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143100/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143100.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143100",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143100/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143100",
+ "id": 741874015,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143100/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143100/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143100/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143100/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143100/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143100/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143100/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143100/milestones{/number}",
+ "mirror_url": null,
+ "name": "143100",
+ "node_id": "R_kgDOLDgZXw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143100/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143100/pulls{/number}",
+ "pushed_at": "2019-05-31T02:45:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143100/releases{/id}",
+ "size": 52,
+ "ssh_url": "git@github.com:OpenSourceBrain/143100.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143100/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143100/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143100/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143100/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143100",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143100/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143100/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143100/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143100",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143114": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143114/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143114/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143114/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143114/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143114.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143114/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143114/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143114/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143114/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143114/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143114/contributors",
+ "created_at": "2024-01-11T09:41:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143114/deployments",
+ "description": "Effects of the membrane AHP on the Lateral Superior Olive (LSO) (Zhou & Colburn 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143114/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143114/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143114/forks",
+ "full_name": "OpenSourceBrain/143114",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143114/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143114/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143114/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143114.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143114",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143114/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143114",
+ "id": 741874030,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143114/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143114/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143114/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143114/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143114/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143114/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143114/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143114/milestones{/number}",
+ "mirror_url": null,
+ "name": "143114",
+ "node_id": "R_kgDOLDgZbg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143114/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143114/pulls{/number}",
+ "pushed_at": "2019-05-31T02:45:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143114/releases{/id}",
+ "size": 10651,
+ "ssh_url": "git@github.com:OpenSourceBrain/143114.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143114/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143114/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143114/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143114/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143114",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143114/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143114/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143114/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143114",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143148": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143148/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143148/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143148/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143148/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143148.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143148/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143148/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143148/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143148/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143148/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143148/contributors",
+ "created_at": "2024-01-11T09:41:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143148/deployments",
+ "description": "Extraction and classification of three cortical neuron types (Mensi et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143148/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143148/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143148/forks",
+ "full_name": "OpenSourceBrain/143148",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143148/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143148/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143148/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143148.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/143148",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143148/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143148",
+ "id": 741874048,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143148/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143148/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143148/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143148/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143148/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143148/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143148/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143148/milestones{/number}",
+ "mirror_url": null,
+ "name": "143148",
+ "node_id": "R_kgDOLDgZgA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143148/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143148/pulls{/number}",
+ "pushed_at": "2018-04-23T18:25:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143148/releases{/id}",
+ "size": 262,
+ "ssh_url": "git@github.com:OpenSourceBrain/143148.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143148/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143148/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143148/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143148/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143148",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143148/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143148/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143148/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143148",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143248": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143248/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143248/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143248/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143248/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143248.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143248/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143248/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143248/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143248/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143248/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143248/contributors",
+ "created_at": "2024-01-11T09:41:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143248/deployments",
+ "description": "Phase precession through acceleration of local theta rhythm (Castro & Aguiar 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143248/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143248/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143248/forks",
+ "full_name": "OpenSourceBrain/143248",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143248/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143248/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143248/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143248.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143248",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143248/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143248",
+ "id": 741874055,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143248/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143248/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143248/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143248/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143248/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143248/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143248/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143248/milestones{/number}",
+ "mirror_url": null,
+ "name": "143248",
+ "node_id": "R_kgDOLDgZhw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143248/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143248/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143248/releases{/id}",
+ "size": 170,
+ "ssh_url": "git@github.com:OpenSourceBrain/143248.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143248/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143248/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143248/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143248/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143248",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143248/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143248/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143248/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143248",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143253": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143253/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143253/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143253/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143253/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143253.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143253/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143253/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143253/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143253/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143253/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143253/contributors",
+ "created_at": "2024-01-11T09:41:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143253/deployments",
+ "description": "Effects of eugenol on the firing of action potentials in NG108-15 neurons (Huang et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143253/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143253/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143253/forks",
+ "full_name": "OpenSourceBrain/143253",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143253/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143253/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143253/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143253.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143253",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143253/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143253",
+ "id": 741874075,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143253/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143253/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143253/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143253/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143253/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143253/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143253/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143253/milestones{/number}",
+ "mirror_url": null,
+ "name": "143253",
+ "node_id": "R_kgDOLDgZmw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143253/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143253/pulls{/number}",
+ "pushed_at": "2019-05-31T04:29:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143253/releases{/id}",
+ "size": 556,
+ "ssh_url": "git@github.com:OpenSourceBrain/143253.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143253/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143253/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143253/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143253/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143253",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143253/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143253/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143253/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143253",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143442": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143442/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143442/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143442/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143442/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143442.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143442/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143442/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143442/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143442/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143442/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143442/contributors",
+ "created_at": "2024-01-11T09:41:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143442/deployments",
+ "description": "Spike repolarization in axon collaterals (Foust et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143442/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143442/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143442/forks",
+ "full_name": "OpenSourceBrain/143442",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143442/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143442/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143442/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143442.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143442",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143442/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143442",
+ "id": 741874089,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143442/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143442/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143442/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143442/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143442/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143442/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143442/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143442/milestones{/number}",
+ "mirror_url": null,
+ "name": "143442",
+ "node_id": "R_kgDOLDgZqQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143442/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143442/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143442/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/143442.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143442/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143442/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143442/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143442/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143442",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143442/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143442/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143442/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143442",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143446": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143446/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143446/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143446/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143446/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143446.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143446/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143446/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143446/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143446/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143446/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143446/contributors",
+ "created_at": "2024-01-11T09:41:41Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143446/deployments",
+ "description": "Simulations of oscillations in piriform cortex (Wilson & Bower 1992)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143446/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143446/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143446/forks",
+ "full_name": "OpenSourceBrain/143446",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143446/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143446/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143446/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143446.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/143446",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143446/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143446",
+ "id": 741874102,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143446/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143446/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143446/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143446/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143446/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143446/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143446/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143446/milestones{/number}",
+ "mirror_url": null,
+ "name": "143446",
+ "node_id": "R_kgDOLDgZtg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143446/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143446/pulls{/number}",
+ "pushed_at": "2023-12-23T03:45:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143446/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/143446.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143446/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143446/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143446/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143446/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143446",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143446/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143446/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143446/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143446",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143602": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143602/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143602/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143602/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143602/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143602.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143602/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143602/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143602/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143602/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143602/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143602/contributors",
+ "created_at": "2024-01-11T09:41:43Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143602/deployments",
+ "description": "Principles of Computational Modelling in Neuroscience (Book) (Sterratt et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143602/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143602/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143602/forks",
+ "full_name": "OpenSourceBrain/143602",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143602/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143602/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143602/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143602.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/143602",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143602/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143602",
+ "id": 741874114,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143602/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143602/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143602/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143602/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143602/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143602/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143602/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143602/milestones{/number}",
+ "mirror_url": null,
+ "name": "143602",
+ "node_id": "R_kgDOLDgZwg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143602/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143602/pulls{/number}",
+ "pushed_at": "2023-12-23T03:45:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143602/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/143602.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143602/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143602/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143602/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143602/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143602",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143602/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143602/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143602/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143602",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143604": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143604/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143604/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143604/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143604/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143604.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143604/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143604/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143604/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143604/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143604/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143604/contributors",
+ "created_at": "2024-01-11T09:41:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143604/deployments",
+ "description": "Compartmentalization of GABAergic inhibition by dendritic spines (Chiu et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143604/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143604/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143604/forks",
+ "full_name": "OpenSourceBrain/143604",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143604/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143604/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143604/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143604.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143604",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143604/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143604",
+ "id": 741874127,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143604/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143604/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143604/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143604/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143604/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143604/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143604/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143604/milestones{/number}",
+ "mirror_url": null,
+ "name": "143604",
+ "node_id": "R_kgDOLDgZzw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143604/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143604/pulls{/number}",
+ "pushed_at": "2019-05-31T03:16:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143604/releases{/id}",
+ "size": 392,
+ "ssh_url": "git@github.com:OpenSourceBrain/143604.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143604/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143604/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143604/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143604/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143604",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143604/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143604/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143604/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143604",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143633": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143633/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143633/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143633/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143633/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143633.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143633/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143633/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143633/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143633/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143633/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143633/contributors",
+ "created_at": "2024-01-11T09:41:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143633/deployments",
+ "description": "Thalamic network model of deep brain stimulation in essential tremor (Birdno et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143633/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143633/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143633/forks",
+ "full_name": "OpenSourceBrain/143633",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143633/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143633/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143633/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143633.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143633",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143633/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143633",
+ "id": 741874140,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143633/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143633/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143633/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143633/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143633/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143633/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143633/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143633/milestones{/number}",
+ "mirror_url": null,
+ "name": "143633",
+ "node_id": "R_kgDOLDgZ3A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143633/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143633/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143633/releases{/id}",
+ "size": 9257,
+ "ssh_url": "git@github.com:OpenSourceBrain/143633.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143633/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143633/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143633/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143633/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143633",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143633/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143633/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143633/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143633",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143635": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143635/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143635/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143635/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143635/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143635.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143635/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143635/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143635/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143635/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143635/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143635/contributors",
+ "created_at": "2024-01-11T09:41:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143635/deployments",
+ "description": "Active dendritic action potential propagation (Casale & McCormick 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143635/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143635/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143635/forks",
+ "full_name": "OpenSourceBrain/143635",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143635/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143635/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143635/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143635.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143635",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143635/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143635",
+ "id": 741874162,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143635/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143635/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143635/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143635/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143635/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143635/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143635/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143635/milestones{/number}",
+ "mirror_url": null,
+ "name": "143635",
+ "node_id": "R_kgDOLDgZ8g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143635/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143635/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143635/releases{/id}",
+ "size": 20,
+ "ssh_url": "git@github.com:OpenSourceBrain/143635.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143635/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143635/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143635/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143635/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143635",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143635/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143635/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143635/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143635",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143671": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143671/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143671/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143671/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143671/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143671.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143671/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143671/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143671/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143671/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143671/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143671/contributors",
+ "created_at": "2024-01-11T09:41:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143671/deployments",
+ "description": "Simulations of motor unit discharge patterns (Powers et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143671/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143671/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143671/forks",
+ "full_name": "OpenSourceBrain/143671",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143671/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143671/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143671/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143671.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143671",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143671/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143671",
+ "id": 741874177,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143671/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143671/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143671/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143671/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143671/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143671/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143671/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143671/milestones{/number}",
+ "mirror_url": null,
+ "name": "143671",
+ "node_id": "R_kgDOLDgaAQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143671/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143671/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143671/releases{/id}",
+ "size": 59,
+ "ssh_url": "git@github.com:OpenSourceBrain/143671.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143671/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143671/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143671/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143671/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143671",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143671/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143671/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143671/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143671",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143719": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143719/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143719/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143719/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143719/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143719.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143719/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143719/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143719/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143719/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143719/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143719/contributors",
+ "created_at": "2024-01-11T09:41:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143719/deployments",
+ "description": "CA1 pyramidal neuron: depolarization block (Bianchi et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143719/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143719/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143719/forks",
+ "full_name": "OpenSourceBrain/143719",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143719/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143719/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143719/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143719.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143719",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143719/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143719",
+ "id": 741874197,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143719/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143719/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143719/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143719/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143719/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143719/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143719/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143719/milestones{/number}",
+ "mirror_url": null,
+ "name": "143719",
+ "node_id": "R_kgDOLDgaFQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143719/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143719/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143719/releases{/id}",
+ "size": 122,
+ "ssh_url": "git@github.com:OpenSourceBrain/143719.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143719/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143719/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143719/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143719/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143719",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143719/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143719/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143719/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143719",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143751": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143751/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143751/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143751/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143751/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143751.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143751/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143751/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143751/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143751/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143751/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143751/contributors",
+ "created_at": "2024-01-11T09:41:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143751/deployments",
+ "description": "Inhibitory plasticity balances excitation and inhibition (Vogels et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143751/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143751/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143751/forks",
+ "full_name": "OpenSourceBrain/143751",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143751/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143751/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143751/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143751.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143751",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143751/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143751",
+ "id": 741874215,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143751/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143751/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143751/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143751/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143751/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143751/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143751/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143751/milestones{/number}",
+ "mirror_url": null,
+ "name": "143751",
+ "node_id": "R_kgDOLDgaJw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143751/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143751/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143751/releases{/id}",
+ "size": 222,
+ "ssh_url": "git@github.com:OpenSourceBrain/143751.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143751/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143751/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143751/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143751/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143751",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143751/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143751/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143751/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143751",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143753": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143753/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143753/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143753/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143753/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143753.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143753/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143753/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143753/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143753/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143753/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143753/contributors",
+ "created_at": "2024-01-11T09:41:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143753/deployments",
+ "description": "Competition model of pheromone ratio detection (Zavada et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143753/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143753/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143753/forks",
+ "full_name": "OpenSourceBrain/143753",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143753/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143753/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143753/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143753.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143753",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143753/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143753",
+ "id": 741874230,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143753/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143753/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143753/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143753/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143753/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143753/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143753/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143753/milestones{/number}",
+ "mirror_url": null,
+ "name": "143753",
+ "node_id": "R_kgDOLDgaNg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143753/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143753/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143753/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/143753.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143753/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143753/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143753/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143753/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143753",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143753/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143753/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143753/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:41:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143753",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/143760": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/143760/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/143760/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/143760/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/143760/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/143760.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/143760/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/143760/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/143760/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/143760/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/143760/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/143760/contributors",
+ "created_at": "2024-01-11T09:42:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/143760/deployments",
+ "description": "Point process framework for modeling electrical stimulation of auditory nerve (Goldwyn et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/143760/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/143760/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/143760/forks",
+ "full_name": "OpenSourceBrain/143760",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/143760/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/143760/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/143760/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/143760.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/143760",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/143760/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/143760",
+ "id": 741874241,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/143760/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/143760/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/143760/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/143760/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/143760/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/143760/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/143760/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/143760/milestones{/number}",
+ "mirror_url": null,
+ "name": "143760",
+ "node_id": "R_kgDOLDgaQQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/143760/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/143760/pulls{/number}",
+ "pushed_at": "2019-05-31T03:13:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/143760/releases{/id}",
+ "size": 20,
+ "ssh_url": "git@github.com:OpenSourceBrain/143760.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/143760/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/143760/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/143760/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/143760/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/143760",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/143760/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/143760/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/143760/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/143760",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144006": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144006/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144006/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144006/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144006/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144006.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144006/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144006/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144006/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144006/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144006/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144006/contributors",
+ "created_at": "2024-01-11T09:42:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144006/deployments",
+ "description": "Grid cell spatial firing models (Zilli 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144006/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144006/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144006/forks",
+ "full_name": "OpenSourceBrain/144006",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144006/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144006/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144006/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144006.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144006",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144006/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144006",
+ "id": 741874253,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144006/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144006/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144006/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144006/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144006/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144006/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144006/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144006/milestones{/number}",
+ "mirror_url": null,
+ "name": "144006",
+ "node_id": "R_kgDOLDgaTQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144006/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144006/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144006/releases{/id}",
+ "size": 3317,
+ "ssh_url": "git@github.com:OpenSourceBrain/144006.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144006/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144006/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144006/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144006/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144006",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144006/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144006/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144006/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144006",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144007": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144007/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144007/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144007/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144007/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144007.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144007/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144007/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144007/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144007/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144007/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144007/contributors",
+ "created_at": "2024-01-11T09:42:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144007/deployments",
+ "description": "LGMD Variability and logarithmic compression in dendrites (Jones and Gabbiani, 2012, 2012B)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144007/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144007/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144007/forks",
+ "full_name": "OpenSourceBrain/144007",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144007/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144007/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144007/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144007.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144007",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144007/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144007",
+ "id": 741874271,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144007/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144007/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144007/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144007/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144007/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144007/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144007/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144007/milestones{/number}",
+ "mirror_url": null,
+ "name": "144007",
+ "node_id": "R_kgDOLDgaXw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144007/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144007/pulls{/number}",
+ "pushed_at": "2019-05-31T03:34:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144007/releases{/id}",
+ "size": 258,
+ "ssh_url": "git@github.com:OpenSourceBrain/144007.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144007/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144007/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144007/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144007/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144007",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144007/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144007/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144007/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144007",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144010": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144010/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144010/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144010/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144010/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144010.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144010/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144010/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144010/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144010/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144010/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144010/contributors",
+ "created_at": "2024-01-11T09:42:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144010/deployments",
+ "description": "Epileptic seizure model with Morris-Lecar neurons (Beverlin and Netoff 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144010/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144010/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144010/forks",
+ "full_name": "OpenSourceBrain/144010",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144010/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144010/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144010/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144010.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144010",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144010/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144010",
+ "id": 741874288,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144010/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144010/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144010/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144010/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144010/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144010/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144010/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144010/milestones{/number}",
+ "mirror_url": null,
+ "name": "144010",
+ "node_id": "R_kgDOLDgacA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144010/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144010/pulls{/number}",
+ "pushed_at": "2019-05-31T03:28:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144010/releases{/id}",
+ "size": 221,
+ "ssh_url": "git@github.com:OpenSourceBrain/144010.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144010/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144010/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144010/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144010/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144010",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144010/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144010/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144010/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144010",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144027": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144027/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144027/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144027/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144027/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144027.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144027/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144027/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144027/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144027/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144027/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144027/contributors",
+ "created_at": "2024-01-11T09:42:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144027/deployments",
+ "description": "Perturbation sensitivity implies high noise and suggests rate coding in cortex (London et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144027/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144027/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144027/forks",
+ "full_name": "OpenSourceBrain/144027",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144027/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144027/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144027/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144027.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144027",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144027/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144027",
+ "id": 741874296,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144027/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144027/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144027/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144027/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144027/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144027/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144027/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144027/milestones{/number}",
+ "mirror_url": null,
+ "name": "144027",
+ "node_id": "R_kgDOLDgaeA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144027/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144027/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144027/releases{/id}",
+ "size": 116,
+ "ssh_url": "git@github.com:OpenSourceBrain/144027.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144027/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144027/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144027/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144027/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144027",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144027/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144027/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144027/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144027",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144054": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144054/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144054/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144054/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144054/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144054.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144054/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144054/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144054/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144054/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144054/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144054/contributors",
+ "created_at": "2024-01-11T09:42:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144054/deployments",
+ "description": "Synchrony by synapse location (McTavish et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144054/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144054/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144054/forks",
+ "full_name": "OpenSourceBrain/144054",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144054/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144054/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144054/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144054.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144054",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144054/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144054",
+ "id": 741874314,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144054/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144054/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144054/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144054/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144054/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144054/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144054/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144054/milestones{/number}",
+ "mirror_url": null,
+ "name": "144054",
+ "node_id": "R_kgDOLDgaig",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144054/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144054/pulls{/number}",
+ "pushed_at": "2019-05-31T02:39:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144054/releases{/id}",
+ "size": 851,
+ "ssh_url": "git@github.com:OpenSourceBrain/144054.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144054/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144054/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144054/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144054/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144054",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144054/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144054/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144054/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144054",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144089": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144089/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144089/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144089/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144089/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144089.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144089/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144089/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144089/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144089/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144089/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144089/contributors",
+ "created_at": "2024-01-11T09:42:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144089/deployments",
+ "description": "Layer V PFC pyramidal neuron used to study persistent activity (Sidiropoulou & Poirazi 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144089/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144089/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144089/forks",
+ "full_name": "OpenSourceBrain/144089",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144089/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144089/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144089/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144089.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/144089",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144089/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144089",
+ "id": 741874330,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144089/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144089/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144089/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144089/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144089/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144089/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144089/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144089/milestones{/number}",
+ "mirror_url": null,
+ "name": "144089",
+ "node_id": "R_kgDOLDgamg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144089/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144089/pulls{/number}",
+ "pushed_at": "2018-04-23T18:25:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144089/releases{/id}",
+ "size": 97,
+ "ssh_url": "git@github.com:OpenSourceBrain/144089.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144089/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144089/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144089/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144089/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144089",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144089/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144089/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144089/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144089",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144096": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144096/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144096/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144096/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144096/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144096.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144096/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144096/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144096/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144096/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144096/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144096/contributors",
+ "created_at": "2024-01-11T09:42:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144096/deployments",
+ "description": "Surround Suppression in V1 via Withdraw of Balanced Local Excitation in V1 (Shushruth 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144096/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144096/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144096/forks",
+ "full_name": "OpenSourceBrain/144096",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144096/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144096/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144096/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144096.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144096",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144096/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144096",
+ "id": 741874347,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144096/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144096/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144096/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144096/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144096/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144096/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144096/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144096/milestones{/number}",
+ "mirror_url": null,
+ "name": "144096",
+ "node_id": "R_kgDOLDgaqw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144096/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144096/pulls{/number}",
+ "pushed_at": "2019-05-31T02:45:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144096/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/144096.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144096/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144096/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144096/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144096/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144096",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144096/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144096/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144096/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144096",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144372": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144372/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144372/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144372/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144372/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144372.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144372/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144372/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144372/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144372/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144372/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144372/contributors",
+ "created_at": "2024-01-11T09:42:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144372/deployments",
+ "description": "Cortical pyramidal neuron, phase response curve (Stiefel et al 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144372/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144372/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144372/forks",
+ "full_name": "OpenSourceBrain/144372",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144372/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144372/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144372/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144372.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144372",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144372/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144372",
+ "id": 741874356,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144372/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144372/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144372/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144372/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144372/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144372/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144372/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144372/milestones{/number}",
+ "mirror_url": null,
+ "name": "144372",
+ "node_id": "R_kgDOLDgatA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144372/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144372/pulls{/number}",
+ "pushed_at": "2019-12-11T22:54:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144372/releases{/id}",
+ "size": 71,
+ "ssh_url": "git@github.com:OpenSourceBrain/144372.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144372/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144372/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144372/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144372/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144372",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144372/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144372/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144372/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144372",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144376": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144376/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144376/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144376/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144376/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144376.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144376/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144376/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144376/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144376/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144376/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144376/contributors",
+ "created_at": "2024-01-11T09:42:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144376/deployments",
+ "description": "Hodgkin-Huxley model of persistent activity in PFC neurons (Winograd et al. 2008) (NEURON python)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144376/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144376/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144376/forks",
+ "full_name": "OpenSourceBrain/144376",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144376/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144376/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144376/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144376.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144376",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144376/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144376",
+ "id": 741874377,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144376/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144376/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144376/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144376/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144376/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144376/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144376/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144376/milestones{/number}",
+ "mirror_url": null,
+ "name": "144376",
+ "node_id": "R_kgDOLDgayQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144376/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144376/pulls{/number}",
+ "pushed_at": "2019-05-31T03:46:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144376/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/144376.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144376/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144376/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144376/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144376/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144376",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144376/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144376/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144376/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144376",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144380": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144380/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144380/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144380/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144380/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144380.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144380/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144380/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144380/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144380/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144380/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144380/contributors",
+ "created_at": "2024-01-11T09:42:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144380/deployments",
+ "description": "A multiphysics neuron model for cellular volume dynamics (Lee et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144380/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144380/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144380/forks",
+ "full_name": "OpenSourceBrain/144380",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144380/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144380/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144380/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144380.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144380",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144380/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144380",
+ "id": 741874388,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144380/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144380/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144380/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144380/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144380/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144380/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144380/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144380/milestones{/number}",
+ "mirror_url": null,
+ "name": "144380",
+ "node_id": "R_kgDOLDga1A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144380/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144380/pulls{/number}",
+ "pushed_at": "2019-05-31T03:24:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144380/releases{/id}",
+ "size": 17,
+ "ssh_url": "git@github.com:OpenSourceBrain/144380.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144380/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144380/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144380/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144380/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144380",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144380/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144380/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144380/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144380",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144385": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144385/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144385/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144385/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144385/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144385.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144385/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144385/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144385/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144385/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144385/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144385/contributors",
+ "created_at": "2024-01-11T09:42:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144385/deployments",
+ "description": "Dendro-dendritic synaptic circuit (Shepherd Brayton 1979)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144385/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144385/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144385/forks",
+ "full_name": "OpenSourceBrain/144385",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144385/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144385/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144385/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144385.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144385",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144385/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144385",
+ "id": 741874412,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144385/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144385/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144385/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144385/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144385/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144385/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144385/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144385/milestones{/number}",
+ "mirror_url": null,
+ "name": "144385",
+ "node_id": "R_kgDOLDga7A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144385/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144385/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144385/releases{/id}",
+ "size": 322,
+ "ssh_url": "git@github.com:OpenSourceBrain/144385.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144385/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144385/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144385/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144385/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144385",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144385/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144385/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144385/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144385",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144387": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144387/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144387/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144387/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144387/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144387.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144387/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144387/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144387/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144387/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144387/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144387/contributors",
+ "created_at": "2024-01-11T09:42:24Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144387/deployments",
+ "description": "Lobster STG pyloric network model with calcium sensor (Gunay & Prinz 2010) (Prinz et al. 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144387/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144387/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144387/forks",
+ "full_name": "OpenSourceBrain/144387",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144387/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144387/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144387/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144387.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/144387",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144387/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144387",
+ "id": 741874427,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144387/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144387/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144387/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144387/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144387/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144387/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144387/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144387/milestones{/number}",
+ "mirror_url": null,
+ "name": "144387",
+ "node_id": "R_kgDOLDga-w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144387/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144387/pulls{/number}",
+ "pushed_at": "2023-12-23T03:45:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144387/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/144387.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144387/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144387/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144387/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144387/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144387",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144387/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144387/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144387/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144387",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144392": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144392/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144392/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144392/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144392/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144392.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144392/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144392/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144392/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144392/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144392/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144392/contributors",
+ "created_at": "2024-01-11T09:42:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144392/deployments",
+ "description": "CA1 pyramidal neurons: effects of Kv7 (M-) channels on synaptic integration (Shah et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144392/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144392/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144392/forks",
+ "full_name": "OpenSourceBrain/144392",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144392/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144392/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144392/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144392.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144392",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144392/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144392",
+ "id": 741874435,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144392/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144392/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144392/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144392/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144392/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144392/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144392/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144392/milestones{/number}",
+ "mirror_url": null,
+ "name": "144392",
+ "node_id": "R_kgDOLDgbAw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144392/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144392/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144392/releases{/id}",
+ "size": 32,
+ "ssh_url": "git@github.com:OpenSourceBrain/144392.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144392/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144392/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144392/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144392/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144392",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144392/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144392/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144392/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144392",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144401": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144401/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144401/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144401/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144401/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144401.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144401/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144401/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144401/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144401/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144401/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144401/contributors",
+ "created_at": "2024-01-11T09:42:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144401/deployments",
+ "description": "CA1 pyramidal cell: reconstructed axonal arbor and failures at weak gap junctions (Vladimirov 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144401/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144401/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144401/forks",
+ "full_name": "OpenSourceBrain/144401",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144401/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144401/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144401/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144401.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144401",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144401/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144401",
+ "id": 741874453,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144401/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144401/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144401/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144401/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144401/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144401/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144401/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144401/milestones{/number}",
+ "mirror_url": null,
+ "name": "144401",
+ "node_id": "R_kgDOLDgbFQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144401/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144401/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144401/releases{/id}",
+ "size": 92,
+ "ssh_url": "git@github.com:OpenSourceBrain/144401.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144401/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144401/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144401/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144401/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144401",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144401/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144401/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144401/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144401",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144403": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144403/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144403/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144403/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144403/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144403.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144403/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144403/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144403/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144403/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144403/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144403/contributors",
+ "created_at": "2024-01-11T09:42:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144403/deployments",
+ "description": "A Moth MGC Model-A HH network with quantitative rate reduction (Buckley & Nowotny 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144403/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144403/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144403/forks",
+ "full_name": "OpenSourceBrain/144403",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144403/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144403/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144403/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144403.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144403",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144403/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144403",
+ "id": 741874469,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144403/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144403/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144403/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144403/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144403/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144403/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144403/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144403/milestones{/number}",
+ "mirror_url": null,
+ "name": "144403",
+ "node_id": "R_kgDOLDgbJQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144403/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144403/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144403/releases{/id}",
+ "size": 1985,
+ "ssh_url": "git@github.com:OpenSourceBrain/144403.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144403/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144403/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144403/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144403/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144403",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144403/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144403/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144403/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144403",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144416": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144416/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144416/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144416/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144416/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144416.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144416/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144416/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144416/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144416/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144416/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144416/contributors",
+ "created_at": "2024-01-11T09:42:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144416/deployments",
+ "description": "Cerebellar gain and timing control model (Yamazaki & Tanaka 2007)(Yamazaki & Nagao 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144416/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144416/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144416/forks",
+ "full_name": "OpenSourceBrain/144416",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144416/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144416/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144416/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144416.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144416",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144416/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144416",
+ "id": 741874480,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144416/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144416/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144416/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144416/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144416/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144416/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144416/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144416/milestones{/number}",
+ "mirror_url": null,
+ "name": "144416",
+ "node_id": "R_kgDOLDgbMA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144416/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144416/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144416/releases{/id}",
+ "size": 16,
+ "ssh_url": "git@github.com:OpenSourceBrain/144416.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144416/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144416/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144416/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144416/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144416",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144416/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144416/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144416/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144416",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144450": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144450/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144450/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144450/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144450/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144450.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144450/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144450/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144450/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144450/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144450/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144450/contributors",
+ "created_at": "2024-01-11T09:42:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144450/deployments",
+ "description": "Linear vs non-linear integration in CA1 oblique dendrites (G\u00f3mez Gonz\u00e1lez et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144450/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144450/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144450/forks",
+ "full_name": "OpenSourceBrain/144450",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144450/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144450/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144450/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144450.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144450",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144450/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144450",
+ "id": 741874499,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144450/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144450/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144450/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144450/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144450/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144450/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144450/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144450/milestones{/number}",
+ "mirror_url": null,
+ "name": "144450",
+ "node_id": "R_kgDOLDgbQw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144450/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144450/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144450/releases{/id}",
+ "size": 433,
+ "ssh_url": "git@github.com:OpenSourceBrain/144450.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144450/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144450/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144450/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144450/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144450",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144450/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144450/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144450/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144450",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144455": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144455/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144455/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144455/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144455/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144455.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144455/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144455/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144455/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144455/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144455/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144455/contributors",
+ "created_at": "2024-01-11T09:42:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144455/deployments",
+ "description": "Connection-set Algebra (CSA) for the representation of connectivity in NN models (Djurfeldt 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144455/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144455/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144455/forks",
+ "full_name": "OpenSourceBrain/144455",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144455/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144455/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144455/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144455.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144455",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144455/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144455",
+ "id": 741874514,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144455/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144455/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144455/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144455/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144455/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144455/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144455/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144455/milestones{/number}",
+ "mirror_url": null,
+ "name": "144455",
+ "node_id": "R_kgDOLDgbUg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144455/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144455/pulls{/number}",
+ "pushed_at": "2019-06-03T19:45:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144455/releases{/id}",
+ "size": 1296,
+ "ssh_url": "git@github.com:OpenSourceBrain/144455.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144455/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144455/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144455/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144455/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144455",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144455/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144455/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144455/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144455",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144463": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144463/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144463/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144463/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144463/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144463.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144463/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144463/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144463/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144463/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144463/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144463/contributors",
+ "created_at": "2024-01-11T09:42:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144463/deployments",
+ "description": "CA1 pyramidal neuron dendritic spine with plasticity (O`Donnell et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144463/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144463/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144463/forks",
+ "full_name": "OpenSourceBrain/144463",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144463/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144463/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144463/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144463.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144463",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144463/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144463",
+ "id": 741874533,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144463/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144463/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144463/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144463/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144463/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144463/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144463/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144463/milestones{/number}",
+ "mirror_url": null,
+ "name": "144463",
+ "node_id": "R_kgDOLDgbZQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144463/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144463/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144463/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/144463.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144463/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144463/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144463/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144463/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144463",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144463/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144463/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144463/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144463",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144468": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144468/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144468/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144468/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144468/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144468.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144468/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144468/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144468/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144468/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144468/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144468/contributors",
+ "created_at": "2024-01-11T09:42:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144468/deployments",
+ "description": "Markov Chain-based Stochastic Shielding Hodgkin Huxley Model (Schmandt, Galan 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144468/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144468/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144468/forks",
+ "full_name": "OpenSourceBrain/144468",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144468/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144468/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144468/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144468.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144468",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144468/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144468",
+ "id": 741874542,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144468/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144468/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144468/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144468/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144468/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144468/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144468/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144468/milestones{/number}",
+ "mirror_url": null,
+ "name": "144468",
+ "node_id": "R_kgDOLDgbbg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144468/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144468/pulls{/number}",
+ "pushed_at": "2019-05-31T02:35:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144468/releases{/id}",
+ "size": 365,
+ "ssh_url": "git@github.com:OpenSourceBrain/144468.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144468/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144468/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144468/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144468/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144468",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144468/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144468/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144468/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144468",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144477": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144477/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144477/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144477/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144477/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144477.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144477/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144477/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144477/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144477/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144477/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144477/contributors",
+ "created_at": "2024-01-11T09:42:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144477/deployments",
+ "description": "Functional consequences of cortical circuit abnormalities on gamma in schizophrenia (Spencer 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144477/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144477/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144477/forks",
+ "full_name": "OpenSourceBrain/144477",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144477/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144477/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144477/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144477.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144477",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144477/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144477",
+ "id": 741874555,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144477/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144477/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144477/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144477/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144477/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144477/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144477/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144477/milestones{/number}",
+ "mirror_url": null,
+ "name": "144477",
+ "node_id": "R_kgDOLDgbew",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144477/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144477/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144477/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/144477.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144477/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144477/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144477/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144477/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144477",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144477/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144477/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144477/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144477",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144481": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144481/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144481/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144481/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144481/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144481.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144481/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144481/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144481/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144481/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144481/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144481/contributors",
+ "created_at": "2024-01-11T09:42:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144481/deployments",
+ "description": "Nodes of Ranvier with left-shifted Nav channels (Boucher et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144481/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144481/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144481/forks",
+ "full_name": "OpenSourceBrain/144481",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144481/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144481/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144481/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144481.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144481",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144481/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144481",
+ "id": 741874569,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144481/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144481/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144481/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144481/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144481/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144481/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144481/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144481/milestones{/number}",
+ "mirror_url": null,
+ "name": "144481",
+ "node_id": "R_kgDOLDgbiQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144481/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144481/pulls{/number}",
+ "pushed_at": "2019-05-31T02:15:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144481/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/144481.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144481/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144481/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144481/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144481/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144481",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144481/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144481/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144481/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144481",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144482": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144482/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144482/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144482/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144482/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144482.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144482/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144482/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144482/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144482/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144482/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144482/contributors",
+ "created_at": "2024-01-11T09:42:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144482/deployments",
+ "description": "Pyramidal neuron conductances state and STDP (Delgado et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144482/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144482/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144482/forks",
+ "full_name": "OpenSourceBrain/144482",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144482/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144482/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144482/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144482.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144482",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144482/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144482",
+ "id": 741874583,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144482/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144482/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144482/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144482/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144482/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144482/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144482/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144482/milestones{/number}",
+ "mirror_url": null,
+ "name": "144482",
+ "node_id": "R_kgDOLDgblw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144482/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144482/pulls{/number}",
+ "pushed_at": "2023-11-28T20:43:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144482/releases{/id}",
+ "size": 32,
+ "ssh_url": "git@github.com:OpenSourceBrain/144482.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144482/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144482/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144482/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144482/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144482",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144482/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144482/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144482/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144482",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144489": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144489/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144489/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144489/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144489/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144489.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144489/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144489/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144489/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144489/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144489/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144489/contributors",
+ "created_at": "2024-01-11T09:42:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144489/deployments",
+ "description": "Reflected SDE Hodgkin-Huxley Model (Dangerfield et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144489/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144489/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144489/forks",
+ "full_name": "OpenSourceBrain/144489",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144489/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144489/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144489/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144489.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144489",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144489/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144489",
+ "id": 741874597,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144489/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144489/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144489/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144489/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144489/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144489/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144489/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144489/milestones{/number}",
+ "mirror_url": null,
+ "name": "144489",
+ "node_id": "R_kgDOLDgbpQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144489/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144489/pulls{/number}",
+ "pushed_at": "2019-05-31T04:27:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144489/releases{/id}",
+ "size": 14,
+ "ssh_url": "git@github.com:OpenSourceBrain/144489.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144489/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144489/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144489/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144489/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144489",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144489/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144489/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144489/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144489",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144490": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144490/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144490/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144490/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144490/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144490.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144490/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144490/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144490/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144490/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144490/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144490/contributors",
+ "created_at": "2024-01-11T09:42:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144490/deployments",
+ "description": "CA1 pyramidal neuron: synaptically-induced bAP predicts synapse location (Sterratt et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144490/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144490/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144490/forks",
+ "full_name": "OpenSourceBrain/144490",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144490/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144490/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144490/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144490.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144490",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144490/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144490",
+ "id": 741874610,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144490/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144490/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144490/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144490/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144490/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144490/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144490/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144490/milestones{/number}",
+ "mirror_url": null,
+ "name": "144490",
+ "node_id": "R_kgDOLDgbsg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144490/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144490/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144490/releases{/id}",
+ "size": 804,
+ "ssh_url": "git@github.com:OpenSourceBrain/144490.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144490/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144490/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144490/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144490/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144490",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144490/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144490/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144490/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144490",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144499": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144499/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144499/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144499/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144499/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144499.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144499/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144499/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144499/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144499/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144499/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144499/contributors",
+ "created_at": "2024-01-11T09:42:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144499/deployments",
+ "description": "Stochastic versions of the Hodgkin-Huxley equations (Goldwyn, Shea-Brown 2011) (pylab)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144499/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144499/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144499/forks",
+ "full_name": "OpenSourceBrain/144499",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144499/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144499/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144499/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144499.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144499",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144499/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144499",
+ "id": 741874616,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144499/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144499/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144499/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144499/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144499/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144499/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144499/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144499/milestones{/number}",
+ "mirror_url": null,
+ "name": "144499",
+ "node_id": "R_kgDOLDgbuA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144499/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144499/pulls{/number}",
+ "pushed_at": "2019-05-31T05:06:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144499/releases{/id}",
+ "size": 113,
+ "ssh_url": "git@github.com:OpenSourceBrain/144499.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144499/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144499/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144499/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144499/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144499",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144499/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144499/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144499/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144499",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144502": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144502/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144502/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144502/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144502/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144502.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144502/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144502/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144502/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144502/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144502/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144502/contributors",
+ "created_at": "2024-01-11T09:42:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144502/deployments",
+ "description": "Inferior Olive, subthreshold oscillations (Torben-Nielsen, Segev, Yarom 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144502/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144502/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144502/forks",
+ "full_name": "OpenSourceBrain/144502",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144502/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144502/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144502/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144502.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144502",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144502/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144502",
+ "id": 741874628,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144502/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144502/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144502/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144502/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144502/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144502/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144502/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144502/milestones{/number}",
+ "mirror_url": null,
+ "name": "144502",
+ "node_id": "R_kgDOLDgbxA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144502/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144502/pulls{/number}",
+ "pushed_at": "2019-05-31T04:29:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144502/releases{/id}",
+ "size": 225,
+ "ssh_url": "git@github.com:OpenSourceBrain/144502.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144502/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144502/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144502/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144502/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144502",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144502/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144502/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144502/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144502",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144509": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144509/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144509/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144509/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144509/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144509.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144509/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144509/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144509/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144509/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144509/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144509/contributors",
+ "created_at": "2024-01-11T09:42:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144509/deployments",
+ "description": "Duration-tuned neurons from the inferior colliculus of the big brown bat (Aubie et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144509/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144509/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144509/forks",
+ "full_name": "OpenSourceBrain/144509",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144509/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144509/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144509/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144509.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144509",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144509/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144509",
+ "id": 741874644,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144509/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144509/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144509/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144509/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144509/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144509/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144509/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144509/milestones{/number}",
+ "mirror_url": null,
+ "name": "144509",
+ "node_id": "R_kgDOLDgb1A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144509/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144509/pulls{/number}",
+ "pushed_at": "2019-05-31T02:18:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144509/releases{/id}",
+ "size": 370,
+ "ssh_url": "git@github.com:OpenSourceBrain/144509.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144509/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144509/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144509/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144509/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144509",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144509/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144509/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144509/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144509",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144511": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144511/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144511/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144511/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144511/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144511.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144511/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144511/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144511/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144511/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144511/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144511/contributors",
+ "created_at": "2024-01-11T09:42:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144511/deployments",
+ "description": "Duration-tuned neurons from the inferior colliculus of vertebrates (Aubie et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144511/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144511/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144511/forks",
+ "full_name": "OpenSourceBrain/144511",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144511/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144511/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144511/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144511.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/144511",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144511/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144511",
+ "id": 741874659,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144511/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144511/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144511/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144511/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144511/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144511/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144511/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144511/milestones{/number}",
+ "mirror_url": null,
+ "name": "144511",
+ "node_id": "R_kgDOLDgb4w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144511/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144511/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144511/releases{/id}",
+ "size": 31,
+ "ssh_url": "git@github.com:OpenSourceBrain/144511.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144511/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144511/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144511/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144511/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144511",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144511/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144511/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144511/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:42:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144511",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144518": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144518/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144518/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144518/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144518/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144518.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144518/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144518/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144518/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144518/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144518/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144518/contributors",
+ "created_at": "2024-01-11T09:43:00Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144518/deployments",
+ "description": "Half-center oscillator database of leech heart interneuron model (Doloc-Mihu & Calabrese 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144518/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144518/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144518/forks",
+ "full_name": "OpenSourceBrain/144518",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144518/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144518/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144518/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144518.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/144518",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144518/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144518",
+ "id": 741874680,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144518/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144518/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144518/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144518/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144518/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144518/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144518/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144518/milestones{/number}",
+ "mirror_url": null,
+ "name": "144518",
+ "node_id": "R_kgDOLDgb-A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144518/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144518/pulls{/number}",
+ "pushed_at": "2023-12-23T03:45:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144518/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/144518.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144518/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144518/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144518/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144518/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144518",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144518/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144518/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144518/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144518",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144520": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144520/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144520/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144520/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144520/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144520.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144520/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144520/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144520/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144520/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144520/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144520/contributors",
+ "created_at": "2024-01-11T09:43:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144520/deployments",
+ "description": "Cardiac action potentials and pacemaker activity of sinoatrial node (DiFrancesco & Noble 1985)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144520/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144520/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144520/forks",
+ "full_name": "OpenSourceBrain/144520",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144520/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144520/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144520/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144520.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144520",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144520/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144520",
+ "id": 741874699,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144520/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144520/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144520/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144520/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144520/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144520/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144520/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144520/milestones{/number}",
+ "mirror_url": null,
+ "name": "144520",
+ "node_id": "R_kgDOLDgcCw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144520/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144520/pulls{/number}",
+ "pushed_at": "2023-07-08T15:56:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144520/releases{/id}",
+ "size": 99,
+ "ssh_url": "git@github.com:OpenSourceBrain/144520.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144520/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144520/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144520/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144520/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144520",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144520/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144520/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144520/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144520",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144523": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144523/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144523/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144523/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144523/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144523.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144523/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144523/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144523/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144523/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144523/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144523/contributors",
+ "created_at": "2024-01-11T09:43:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144523/deployments",
+ "description": "STD-dependent and independent encoding of Input irregularity as spike rate (Luthman et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144523/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144523/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144523/forks",
+ "full_name": "OpenSourceBrain/144523",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144523/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144523/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144523/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144523.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144523",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144523/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144523",
+ "id": 741874713,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144523/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144523/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144523/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144523/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144523/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144523/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144523/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144523/milestones{/number}",
+ "mirror_url": null,
+ "name": "144523",
+ "node_id": "R_kgDOLDgcGQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144523/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144523/pulls{/number}",
+ "pushed_at": "2023-07-08T16:19:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144523/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/144523.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144523/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144523/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144523/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144523/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144523",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144523/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144523/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144523/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144523",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144526": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144526/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144526/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144526/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144526/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144526.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144526/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144526/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144526/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144526/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144526/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144526/contributors",
+ "created_at": "2024-01-11T09:43:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144526/deployments",
+ "description": "State and location dependence of action potential metabolic cost (Hallermann et al., 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144526/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144526/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144526/forks",
+ "full_name": "OpenSourceBrain/144526",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144526/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144526/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144526/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144526.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/144526",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144526/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144526",
+ "id": 741874737,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144526/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144526/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144526/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144526/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144526/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144526/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144526/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144526/milestones{/number}",
+ "mirror_url": null,
+ "name": "144526",
+ "node_id": "R_kgDOLDgcMQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144526/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144526/pulls{/number}",
+ "pushed_at": "2018-04-23T18:26:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144526/releases{/id}",
+ "size": 89,
+ "ssh_url": "git@github.com:OpenSourceBrain/144526.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144526/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144526/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144526/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144526/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144526",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144526/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144526/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144526/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144526",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144538": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144538/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144538/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144538/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144538/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144538.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144538/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144538/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144538/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144538/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144538/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144538/contributors",
+ "created_at": "2024-01-11T09:43:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144538/deployments",
+ "description": "Reinforcement learning of targeted movement (Chadderdon et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144538/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144538/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144538/forks",
+ "full_name": "OpenSourceBrain/144538",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144538/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144538/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144538/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144538.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/144538",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144538/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144538",
+ "id": 741874754,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144538/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144538/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144538/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144538/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144538/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144538/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144538/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144538/milestones{/number}",
+ "mirror_url": null,
+ "name": "144538",
+ "node_id": "R_kgDOLDgcQg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144538/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144538/pulls{/number}",
+ "pushed_at": "2023-04-30T19:28:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144538/releases{/id}",
+ "size": 412,
+ "ssh_url": "git@github.com:OpenSourceBrain/144538.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144538/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144538/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144538/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144538/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144538",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144538/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144538/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144538/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144538",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144541": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144541/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144541/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144541/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144541/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144541.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144541/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144541/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144541/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144541/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144541/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144541/contributors",
+ "created_at": "2024-01-11T09:43:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144541/deployments",
+ "description": "CA1 pyramidal neuron: Ih current (Migliore et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144541/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144541/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144541/forks",
+ "full_name": "OpenSourceBrain/144541",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144541/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144541/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144541/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144541.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144541",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144541/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144541",
+ "id": 741874771,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144541/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144541/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144541/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144541/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144541/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144541/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144541/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144541/milestones{/number}",
+ "mirror_url": null,
+ "name": "144541",
+ "node_id": "R_kgDOLDgcUw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144541/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144541/pulls{/number}",
+ "pushed_at": "2019-05-31T02:51:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144541/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/144541.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144541/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144541/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144541/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144541/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144541",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144541/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144541/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144541/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144541",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144549": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144549/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144549/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144549/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144549/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144549.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144549/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144549/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144549/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144549/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144549/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144549/contributors",
+ "created_at": "2024-01-11T09:43:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144549/deployments",
+ "description": "Hopfield and Brody model (Hopfield, Brody 2000) (NEURON+python)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144549/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144549/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144549/forks",
+ "full_name": "OpenSourceBrain/144549",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144549/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144549/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144549/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144549.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144549",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144549/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144549",
+ "id": 741874780,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144549/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144549/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144549/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144549/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144549/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144549/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144549/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144549/milestones{/number}",
+ "mirror_url": null,
+ "name": "144549",
+ "node_id": "R_kgDOLDgcXA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144549/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144549/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144549/releases{/id}",
+ "size": 188,
+ "ssh_url": "git@github.com:OpenSourceBrain/144549.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144549/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144549/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144549/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144549/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144549",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144549/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144549/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144549/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144549",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144553": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144553/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144553/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144553/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144553/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144553.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144553/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144553/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144553/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144553/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144553/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144553/contributors",
+ "created_at": "2024-01-11T09:43:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144553/deployments",
+ "description": "Rhesus Monkey Layer 3 Pyramidal Neurons: V1 vs PFC (Amatrudo, Weaver et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144553/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144553/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144553/forks",
+ "full_name": "OpenSourceBrain/144553",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144553/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144553/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144553/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144553.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144553",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144553/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144553",
+ "id": 741874796,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144553/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144553/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144553/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144553/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144553/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144553/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144553/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144553/milestones{/number}",
+ "mirror_url": null,
+ "name": "144553",
+ "node_id": "R_kgDOLDgcbA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144553/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144553/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144553/releases{/id}",
+ "size": 379,
+ "ssh_url": "git@github.com:OpenSourceBrain/144553.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144553/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144553/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144553/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144553/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144553",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144553/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144553/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144553/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144553",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144560": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144560/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144560/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144560/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144560/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144560.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144560/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144560/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144560/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144560/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144560/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144560/contributors",
+ "created_at": "2024-01-11T09:43:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144560/deployments",
+ "description": "Computing with neural synchrony (Brette 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144560/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144560/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144560/forks",
+ "full_name": "OpenSourceBrain/144560",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144560/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144560/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144560/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144560.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144560",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144560/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144560",
+ "id": 741874813,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144560/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144560/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144560/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144560/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144560/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144560/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144560/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144560/milestones{/number}",
+ "mirror_url": null,
+ "name": "144560",
+ "node_id": "R_kgDOLDgcfQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144560/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144560/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144560/releases{/id}",
+ "size": 125,
+ "ssh_url": "git@github.com:OpenSourceBrain/144560.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144560/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144560/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144560/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144560/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144560",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144560/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144560/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144560/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144560",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144566": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144566/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144566/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144566/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144566/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144566.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144566/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144566/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144566/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144566/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144566/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144566/contributors",
+ "created_at": "2024-01-11T09:43:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144566/deployments",
+ "description": "Voltage-based STDP synapse (Clopath et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144566/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144566/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144566/forks",
+ "full_name": "OpenSourceBrain/144566",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144566/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144566/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144566/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144566.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144566",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144566/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144566",
+ "id": 741874822,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144566/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144566/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144566/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144566/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144566/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144566/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144566/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144566/milestones{/number}",
+ "mirror_url": null,
+ "name": "144566",
+ "node_id": "R_kgDOLDgchg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144566/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144566/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144566/releases{/id}",
+ "size": 81,
+ "ssh_url": "git@github.com:OpenSourceBrain/144566.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144566/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144566/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144566/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144566/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144566",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144566/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144566/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144566/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144566",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144570": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144570/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144570/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144570/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144570/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144570.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144570/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144570/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144570/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144570/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144570/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144570/contributors",
+ "created_at": "2024-01-11T09:43:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144570/deployments",
+ "description": "Large scale model of the olfactory bulb (Yu et al., 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144570/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144570/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144570/forks",
+ "full_name": "OpenSourceBrain/144570",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144570/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144570/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144570/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144570.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144570",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144570/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144570",
+ "id": 741874838,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144570/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144570/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144570/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144570/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144570/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144570/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144570/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144570/milestones{/number}",
+ "mirror_url": null,
+ "name": "144570",
+ "node_id": "R_kgDOLDgclg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144570/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144570/pulls{/number}",
+ "pushed_at": "2019-05-31T04:23:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144570/releases{/id}",
+ "size": 50,
+ "ssh_url": "git@github.com:OpenSourceBrain/144570.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144570/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144570/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144570/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144570/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144570",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144570/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144570/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144570/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144570",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144572": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144572/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144572/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144572/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144572/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144572.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144572/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144572/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144572/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144572/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144572/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144572/contributors",
+ "created_at": "2024-01-11T09:43:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144572/deployments",
+ "description": "Thalamic neuron, zebra finch DLM: Integration of pallidal and cortical inputs (Goldberg et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144572/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144572/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144572/forks",
+ "full_name": "OpenSourceBrain/144572",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144572/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144572/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144572/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144572.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144572",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144572/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144572",
+ "id": 741874851,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144572/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144572/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144572/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144572/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144572/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144572/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144572/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144572/milestones{/number}",
+ "mirror_url": null,
+ "name": "144572",
+ "node_id": "R_kgDOLDgcow",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144572/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144572/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144572/releases{/id}",
+ "size": 2803,
+ "ssh_url": "git@github.com:OpenSourceBrain/144572.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144572/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144572/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144572/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144572/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144572",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144572/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144572/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144572/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144572",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144579": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144579/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144579/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144579/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144579/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144579.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144579/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144579/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144579/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144579/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144579/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144579/contributors",
+ "created_at": "2024-01-11T09:43:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144579/deployments",
+ "description": "Parametric computation and persistent gamma in a cortical model (Chambers et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144579/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144579/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144579/forks",
+ "full_name": "OpenSourceBrain/144579",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144579/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144579/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144579/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144579.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144579",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144579/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144579",
+ "id": 741874868,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144579/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144579/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144579/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144579/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144579/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144579/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144579/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144579/milestones{/number}",
+ "mirror_url": null,
+ "name": "144579",
+ "node_id": "R_kgDOLDgctA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144579/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144579/pulls{/number}",
+ "pushed_at": "2019-05-31T03:27:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144579/releases{/id}",
+ "size": 235,
+ "ssh_url": "git@github.com:OpenSourceBrain/144579.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144579/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144579/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144579/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144579/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144579",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144579/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144579/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144579/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144579",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144586": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144586/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144586/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144586/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144586/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144586.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144586/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144586/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144586/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144586/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144586/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144586/contributors",
+ "created_at": "2024-01-11T09:43:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144586/deployments",
+ "description": "Boolean network-based analysis of the apoptosis network (Mai and Liu 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144586/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144586/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144586/forks",
+ "full_name": "OpenSourceBrain/144586",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144586/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144586/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144586/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144586.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/144586",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144586/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144586",
+ "id": 741874888,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144586/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144586/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144586/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144586/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144586/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144586/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144586/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144586/milestones{/number}",
+ "mirror_url": null,
+ "name": "144586",
+ "node_id": "R_kgDOLDgcyA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144586/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144586/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144586/releases{/id}",
+ "size": 234,
+ "ssh_url": "git@github.com:OpenSourceBrain/144586.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144586/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144586/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144586/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144586/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144586",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144586/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144586/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144586/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144586",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144589": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144589/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144589/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144589/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144589/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144589.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144589/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144589/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144589/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144589/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144589/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144589/contributors",
+ "created_at": "2024-01-11T09:43:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144589/deployments",
+ "description": "Modulation of hippocampal rhythms by electric fields and network topology (Berzhanskaya et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144589/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144589/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144589/forks",
+ "full_name": "OpenSourceBrain/144589",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144589/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144589/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144589/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144589.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144589",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144589/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144589",
+ "id": 741874909,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144589/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144589/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144589/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144589/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144589/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144589/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144589/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144589/milestones{/number}",
+ "mirror_url": null,
+ "name": "144589",
+ "node_id": "R_kgDOLDgc3Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144589/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144589/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144589/releases{/id}",
+ "size": 43,
+ "ssh_url": "git@github.com:OpenSourceBrain/144589.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144589/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144589/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144589/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144589/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144589",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144589/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144589/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144589/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144589",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144590": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144590/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144590/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144590/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144590/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144590.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144590/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144590/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144590/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144590/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144590/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144590/contributors",
+ "created_at": "2024-01-11T09:43:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144590/deployments",
+ "description": "Network model with dynamic ion concentrations (Ullah et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144590/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144590/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144590/forks",
+ "full_name": "OpenSourceBrain/144590",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144590/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144590/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144590/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144590.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144590",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144590/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144590",
+ "id": 741874927,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144590/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144590/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144590/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144590/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144590/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144590/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144590/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144590/milestones{/number}",
+ "mirror_url": null,
+ "name": "144590",
+ "node_id": "R_kgDOLDgc7w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144590/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144590/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144590/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/144590.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144590/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144590/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144590/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144590/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144590",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144590/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144590/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144590/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144590",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144976": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144976/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144976/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144976/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144976/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144976.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144976/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144976/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144976/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144976/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144976/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144976/contributors",
+ "created_at": "2024-01-11T09:43:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144976/deployments",
+ "description": "CA1 pyramidal neurons: effects of Alzheimer (Culmone and Migliore 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144976/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144976/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144976/forks",
+ "full_name": "OpenSourceBrain/144976",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144976/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144976/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144976/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144976.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144976",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144976/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144976",
+ "id": 741874941,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144976/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144976/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144976/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144976/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144976/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144976/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144976/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144976/milestones{/number}",
+ "mirror_url": null,
+ "name": "144976",
+ "node_id": "R_kgDOLDgc_Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144976/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144976/pulls{/number}",
+ "pushed_at": "2019-05-31T03:16:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144976/releases{/id}",
+ "size": 41,
+ "ssh_url": "git@github.com:OpenSourceBrain/144976.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144976/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144976/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144976/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144976/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144976",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144976/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144976/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144976/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144976",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/144993": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/144993/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/144993/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/144993/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/144993/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/144993.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/144993/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/144993/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/144993/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/144993/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/144993/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/144993/contributors",
+ "created_at": "2024-01-11T09:43:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/144993/deployments",
+ "description": "Method for deriving general HH neuron model`s spiking input-output relation (Soudry & Meir 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/144993/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/144993/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/144993/forks",
+ "full_name": "OpenSourceBrain/144993",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/144993/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/144993/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/144993/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/144993.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/144993",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/144993/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/144993",
+ "id": 741874950,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/144993/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/144993/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/144993/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/144993/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/144993/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/144993/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/144993/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/144993/milestones{/number}",
+ "mirror_url": null,
+ "name": "144993",
+ "node_id": "R_kgDOLDgdBg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/144993/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/144993/pulls{/number}",
+ "pushed_at": "2019-05-31T03:32:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/144993/releases{/id}",
+ "size": 217,
+ "ssh_url": "git@github.com:OpenSourceBrain/144993.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/144993/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/144993/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/144993/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/144993/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/144993",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/144993/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/144993/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/144993/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/144993",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/145162": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/145162/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/145162/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/145162/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/145162/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/145162.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/145162/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/145162/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/145162/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/145162/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/145162/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/145162/contributors",
+ "created_at": "2024-01-11T09:43:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/145162/deployments",
+ "description": "Hypocretin and Locus Coeruleus model neurons (Carter et al 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/145162/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/145162/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/145162/forks",
+ "full_name": "OpenSourceBrain/145162",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/145162/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/145162/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/145162/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/145162.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/145162",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/145162/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/145162",
+ "id": 741874959,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/145162/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/145162/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/145162/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/145162/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/145162/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/145162/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/145162/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/145162/milestones{/number}",
+ "mirror_url": null,
+ "name": "145162",
+ "node_id": "R_kgDOLDgdDw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/145162/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/145162/pulls{/number}",
+ "pushed_at": "2019-05-31T02:50:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/145162/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/145162.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/145162/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/145162/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/145162/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/145162/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/145162",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/145162/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/145162/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/145162/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/145162",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/145672": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/145672/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/145672/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/145672/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/145672/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/145672.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/145672/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/145672/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/145672/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/145672/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/145672/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/145672/contributors",
+ "created_at": "2024-01-11T09:43:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/145672/deployments",
+ "description": "Neurophysiological impact of inactivation pathways in A-type K+ channels (Fineberg et al 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/145672/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/145672/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/145672/forks",
+ "full_name": "OpenSourceBrain/145672",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/145672/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/145672/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/145672/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/145672.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/145672",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/145672/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/145672",
+ "id": 741874968,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/145672/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/145672/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/145672/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/145672/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/145672/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/145672/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/145672/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/145672/milestones{/number}",
+ "mirror_url": null,
+ "name": "145672",
+ "node_id": "R_kgDOLDgdGA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/145672/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/145672/pulls{/number}",
+ "pushed_at": "2019-05-31T03:20:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/145672/releases{/id}",
+ "size": 42,
+ "ssh_url": "git@github.com:OpenSourceBrain/145672.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/145672/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/145672/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/145672/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/145672/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/145672",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/145672/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/145672/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/145672/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/145672",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/145800": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/145800/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/145800/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/145800/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/145800/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/145800.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/145800/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/145800/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/145800/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/145800/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/145800/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/145800/contributors",
+ "created_at": "2024-01-11T09:43:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/145800/deployments",
+ "description": "Circadian clock model based on protein sequestration (simple version) (Kim & Forger 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/145800/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/145800/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/145800/forks",
+ "full_name": "OpenSourceBrain/145800",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/145800/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/145800/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/145800/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/145800.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/145800",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/145800/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/145800",
+ "id": 741874976,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/145800/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/145800/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/145800/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/145800/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/145800/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/145800/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/145800/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/145800/milestones{/number}",
+ "mirror_url": null,
+ "name": "145800",
+ "node_id": "R_kgDOLDgdIA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/145800/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/145800/pulls{/number}",
+ "pushed_at": "2019-05-31T04:53:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/145800/releases{/id}",
+ "size": 71,
+ "ssh_url": "git@github.com:OpenSourceBrain/145800.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/145800/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/145800/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/145800/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/145800/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/145800",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/145800/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/145800/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/145800/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/145800",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/145801": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/145801/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/145801/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/145801/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/145801/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/145801.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/145801/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/145801/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/145801/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/145801/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/145801/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/145801/contributors",
+ "created_at": "2024-01-11T09:43:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/145801/deployments",
+ "description": "Circadian clock model in mammals (detailed version) (Kim & Forger 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/145801/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/145801/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/145801/forks",
+ "full_name": "OpenSourceBrain/145801",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/145801/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/145801/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/145801/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/145801.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/145801",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/145801/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/145801",
+ "id": 741874983,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/145801/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/145801/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/145801/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/145801/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/145801/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/145801/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/145801/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/145801/milestones{/number}",
+ "mirror_url": null,
+ "name": "145801",
+ "node_id": "R_kgDOLDgdJw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/145801/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/145801/pulls{/number}",
+ "pushed_at": "2019-05-31T05:00:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/145801/releases{/id}",
+ "size": 100,
+ "ssh_url": "git@github.com:OpenSourceBrain/145801.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/145801/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/145801/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/145801/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/145801/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/145801",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/145801/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/145801/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/145801/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/145801",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/145803": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/145803/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/145803/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/145803/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/145803/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/145803.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/145803/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/145803/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/145803/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/145803/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/145803/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/145803/contributors",
+ "created_at": "2024-01-11T09:43:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/145803/deployments",
+ "description": "Oversampling method to extract excitatory and inhibitory conductances (Bedard et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/145803/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/145803/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/145803/forks",
+ "full_name": "OpenSourceBrain/145803",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/145803/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/145803/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/145803/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/145803.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/145803",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/145803/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/145803",
+ "id": 741874996,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/145803/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/145803/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/145803/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/145803/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/145803/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/145803/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/145803/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/145803/milestones{/number}",
+ "mirror_url": null,
+ "name": "145803",
+ "node_id": "R_kgDOLDgdNA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/145803/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/145803/pulls{/number}",
+ "pushed_at": "2019-05-31T05:02:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/145803/releases{/id}",
+ "size": 414,
+ "ssh_url": "git@github.com:OpenSourceBrain/145803.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/145803/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/145803/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/145803/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/145803/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/145803",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/145803/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/145803/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/145803/git/trees{/sha}",
+ "updated_at": "2024-01-11T09:43:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/145803",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/145836": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/145836/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/145836/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/145836/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/145836/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/145836.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/145836/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/145836/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/145836/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/145836/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/145836/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/145836/contributors",
+ "created_at": "2024-01-11T14:35:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/145836/deployments",
+ "description": "A fast model of voltage-dependent NMDA Receptors (Moradi et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/145836/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/145836/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/145836/forks",
+ "full_name": "OpenSourceBrain/145836",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/145836/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/145836/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/145836/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/145836.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/145836",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/145836/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/145836",
+ "id": 741991099,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/145836/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/145836/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/145836/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/145836/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/145836/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/145836/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/145836/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/145836/milestones{/number}",
+ "mirror_url": null,
+ "name": "145836",
+ "node_id": "R_kgDOLDniuw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/145836/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/145836/pulls{/number}",
+ "pushed_at": "2023-07-08T15:23:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/145836/releases{/id}",
+ "size": 132,
+ "ssh_url": "git@github.com:OpenSourceBrain/145836.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/145836/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/145836/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/145836/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/145836/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/145836",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/145836/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/145836/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/145836/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/145836",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/145882": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/145882/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/145882/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/145882/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/145882/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/145882.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/145882/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/145882/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/145882/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/145882/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/145882/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/145882/contributors",
+ "created_at": "2024-01-11T14:35:27Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/145882/deployments",
+ "description": "A CORF computational model of a simple cell that relies on LGN input (Azzopardi & Petkov 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/145882/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/145882/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/145882/forks",
+ "full_name": "OpenSourceBrain/145882",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/145882/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/145882/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/145882/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/145882.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/145882",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/145882/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/145882",
+ "id": 741991116,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/145882/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/145882/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/145882/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/145882/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/145882/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/145882/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/145882/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/145882/milestones{/number}",
+ "mirror_url": null,
+ "name": "145882",
+ "node_id": "R_kgDOLDnizA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/145882/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/145882/pulls{/number}",
+ "pushed_at": "2023-12-23T03:46:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/145882/releases{/id}",
+ "size": 6601,
+ "ssh_url": "git@github.com:OpenSourceBrain/145882.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/145882/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/145882/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/145882/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/145882/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/145882",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/145882/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/145882/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/145882/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/145882",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/145917": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/145917/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/145917/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/145917/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/145917/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/145917.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/145917/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/145917/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/145917/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/145917/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/145917/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/145917/contributors",
+ "created_at": "2024-01-11T14:35:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/145917/deployments",
+ "description": "NMDA subunit effects on Calcium and STDP (Evans et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/145917/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/145917/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/145917/forks",
+ "full_name": "OpenSourceBrain/145917",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/145917/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/145917/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/145917/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/145917.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/145917",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/145917/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/145917",
+ "id": 741991133,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/145917/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/145917/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/145917/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/145917/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/145917/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/145917/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/145917/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/145917/milestones{/number}",
+ "mirror_url": null,
+ "name": "145917",
+ "node_id": "R_kgDOLDni3Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/145917/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/145917/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/145917/releases{/id}",
+ "size": 45,
+ "ssh_url": "git@github.com:OpenSourceBrain/145917.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/145917/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/145917/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/145917/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/145917/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/145917",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/145917/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/145917/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/145917/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/145917",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146024": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146024/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146024/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146024/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146024/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146024.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146024/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146024/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146024/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146024/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146024/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146024/contributors",
+ "created_at": "2024-01-11T14:35:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146024/deployments",
+ "description": "A generic MAPK cascade model for random parameter sampling analysis (Mai and Liu 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146024/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146024/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146024/forks",
+ "full_name": "OpenSourceBrain/146024",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146024/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146024/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146024/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146024.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146024",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146024/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146024",
+ "id": 741991145,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146024/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146024/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146024/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146024/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146024/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146024/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146024/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146024/milestones{/number}",
+ "mirror_url": null,
+ "name": "146024",
+ "node_id": "R_kgDOLDni6Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146024/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146024/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146024/releases{/id}",
+ "size": 69,
+ "ssh_url": "git@github.com:OpenSourceBrain/146024.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146024/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146024/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146024/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146024/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146024",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146024/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146024/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146024/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146024",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146026": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146026/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146026/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146026/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146026/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146026.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146026/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146026/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146026/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146026/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146026/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146026/contributors",
+ "created_at": "2024-01-11T14:35:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146026/deployments",
+ "description": "A set of reduced models of layer 5 pyramidal neurons (Bahl et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146026/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146026/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146026/forks",
+ "full_name": "OpenSourceBrain/146026",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146026/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146026/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146026/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146026.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146026",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146026/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146026",
+ "id": 741991159,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146026/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146026/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146026/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146026/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146026/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146026/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146026/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146026/milestones{/number}",
+ "mirror_url": null,
+ "name": "146026",
+ "node_id": "R_kgDOLDni9w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146026/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146026/pulls{/number}",
+ "pushed_at": "2019-05-31T03:16:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146026/releases{/id}",
+ "size": 29,
+ "ssh_url": "git@github.com:OpenSourceBrain/146026.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146026/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146026/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146026/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146026/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146026",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146026/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146026/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146026/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146026",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146030": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146030/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146030/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146030/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146030/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146030.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146030/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146030/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146030/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146030/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146030/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146030/contributors",
+ "created_at": "2024-01-11T14:35:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146030/deployments",
+ "description": "Olfactory bulb mitral cell gap junction NN model: burst firing and synchrony (O`Connor et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146030/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146030/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146030/forks",
+ "full_name": "OpenSourceBrain/146030",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146030/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146030/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146030/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146030.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146030",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146030/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146030",
+ "id": 741991172,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146030/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146030/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146030/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146030/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146030/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146030/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146030/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146030/milestones{/number}",
+ "mirror_url": null,
+ "name": "146030",
+ "node_id": "R_kgDOLDnjBA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146030/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146030/pulls{/number}",
+ "pushed_at": "2019-05-31T03:25:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146030/releases{/id}",
+ "size": 527,
+ "ssh_url": "git@github.com:OpenSourceBrain/146030.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146030/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146030/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146030/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146030/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146030",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146030/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146030/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146030/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146030",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146050": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146050/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146050/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146050/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146050/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146050.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146050/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146050/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146050/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146050/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146050/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146050/contributors",
+ "created_at": "2024-01-11T14:35:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146050/deployments",
+ "description": "Opponent-channel model of the cortical representation of auditory space (Briley et al., 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146050/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146050/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146050/forks",
+ "full_name": "OpenSourceBrain/146050",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146050/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146050/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146050/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146050.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146050",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146050/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146050",
+ "id": 741991194,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146050/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146050/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146050/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146050/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146050/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146050/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146050/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146050/milestones{/number}",
+ "mirror_url": null,
+ "name": "146050",
+ "node_id": "R_kgDOLDnjGg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146050/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146050/pulls{/number}",
+ "pushed_at": "2019-05-31T02:45:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146050/releases{/id}",
+ "size": 73,
+ "ssh_url": "git@github.com:OpenSourceBrain/146050.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146050/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146050/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146050/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146050/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146050",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146050/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146050/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146050/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146050",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146376": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146376/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146376/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146376/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146376/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146376.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146376/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146376/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146376/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146376/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146376/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146376/contributors",
+ "created_at": "2024-01-11T14:35:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146376/deployments",
+ "description": "Ca1 pyramidal neuron: reduction model (Marasco et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146376/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146376/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146376/forks",
+ "full_name": "OpenSourceBrain/146376",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146376/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146376/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146376/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146376.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146376",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146376/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146376",
+ "id": 741991206,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146376/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146376/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146376/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146376/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146376/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146376/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146376/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146376/milestones{/number}",
+ "mirror_url": null,
+ "name": "146376",
+ "node_id": "R_kgDOLDnjJg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146376/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146376/pulls{/number}",
+ "pushed_at": "2023-07-08T15:21:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146376/releases{/id}",
+ "size": 671,
+ "ssh_url": "git@github.com:OpenSourceBrain/146376.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146376/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146376/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146376/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146376/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146376",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146376/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146376/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146376/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146376",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146499": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146499/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146499/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146499/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146499/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146499.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146499/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146499/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146499/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146499/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146499/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146499/contributors",
+ "created_at": "2024-01-11T14:35:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146499/deployments",
+ "description": "Mean Field Equations for Two-Dimensional Integrate and Fire Models (Nicola and Campbell, 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146499/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146499/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146499/forks",
+ "full_name": "OpenSourceBrain/146499",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146499/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146499/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146499/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146499.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146499",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146499/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146499",
+ "id": 741991224,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146499/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146499/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146499/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146499/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146499/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146499/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146499/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146499/milestones{/number}",
+ "mirror_url": null,
+ "name": "146499",
+ "node_id": "R_kgDOLDnjOA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146499/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146499/pulls{/number}",
+ "pushed_at": "2019-05-31T04:25:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146499/releases{/id}",
+ "size": 94,
+ "ssh_url": "git@github.com:OpenSourceBrain/146499.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146499/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146499/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146499/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146499/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146499",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146499/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146499/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146499/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146499",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146504": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146504/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146504/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146504/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146504/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146504.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146504/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146504/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146504/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146504/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146504/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146504/contributors",
+ "created_at": "2024-01-11T14:35:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146504/deployments",
+ "description": "Paradoxical GABA-mediated excitation (Lewin et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146504/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146504/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146504/forks",
+ "full_name": "OpenSourceBrain/146504",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146504/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146504/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146504/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146504.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146504",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146504/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146504",
+ "id": 741991244,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146504/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146504/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146504/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146504/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146504/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146504/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146504/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146504/milestones{/number}",
+ "mirror_url": null,
+ "name": "146504",
+ "node_id": "R_kgDOLDnjTA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146504/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146504/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146504/releases{/id}",
+ "size": 185,
+ "ssh_url": "git@github.com:OpenSourceBrain/146504.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146504/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146504/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146504/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146504/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146504",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146504/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146504/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146504/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146504",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146509": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146509/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146509/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146509/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146509/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146509.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146509/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146509/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146509/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146509/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146509/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146509/contributors",
+ "created_at": "2024-01-11T14:35:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146509/deployments",
+ "description": "Functional impact of dendritic branch point morphology (Ferrante et al., 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146509/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146509/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146509/forks",
+ "full_name": "OpenSourceBrain/146509",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146509/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146509/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146509/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146509.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146509",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146509/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146509",
+ "id": 741991260,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146509/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146509/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146509/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146509/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146509/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146509/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146509/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146509/milestones{/number}",
+ "mirror_url": null,
+ "name": "146509",
+ "node_id": "R_kgDOLDnjXA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146509/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146509/pulls{/number}",
+ "pushed_at": "2019-05-31T02:44:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146509/releases{/id}",
+ "size": 34,
+ "ssh_url": "git@github.com:OpenSourceBrain/146509.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146509/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146509/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146509/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146509/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146509",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146509/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146509/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146509/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146509",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146554": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146554/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146554/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146554/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146554/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146554.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146554/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146554/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146554/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146554/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146554/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146554/contributors",
+ "created_at": "2024-01-11T14:35:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146554/deployments",
+ "description": "Reconstrucing sleep dynamics with data assimilation (Sedigh-Sarvestani et al., 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146554/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146554/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146554/forks",
+ "full_name": "OpenSourceBrain/146554",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146554/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146554/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146554/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146554.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146554",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146554/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146554",
+ "id": 741991276,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146554/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146554/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146554/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146554/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146554/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146554/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146554/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146554/milestones{/number}",
+ "mirror_url": null,
+ "name": "146554",
+ "node_id": "R_kgDOLDnjbA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146554/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146554/pulls{/number}",
+ "pushed_at": "2019-05-31T03:24:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146554/releases{/id}",
+ "size": 32,
+ "ssh_url": "git@github.com:OpenSourceBrain/146554.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146554/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146554/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146554/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146554/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146554",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146554/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146554/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146554/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146554",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146565": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146565/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146565/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146565/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146565/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146565.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146565/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146565/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146565/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146565/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146565/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146565/contributors",
+ "created_at": "2024-01-11T14:35:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146565/deployments",
+ "description": "Nonlinear dendritic processing in barrel cortex spiny stellate neurons (Lavzin et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146565/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146565/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146565/forks",
+ "full_name": "OpenSourceBrain/146565",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146565/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146565/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146565/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146565.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146565",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146565/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146565",
+ "id": 741991286,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146565/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146565/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146565/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146565/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146565/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146565/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146565/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146565/milestones{/number}",
+ "mirror_url": null,
+ "name": "146565",
+ "node_id": "R_kgDOLDnjdg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146565/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146565/pulls{/number}",
+ "pushed_at": "2019-05-31T03:29:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146565/releases{/id}",
+ "size": 440,
+ "ssh_url": "git@github.com:OpenSourceBrain/146565.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146565/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146565/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146565/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146565/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146565",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146565/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146565/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146565/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146565",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146583": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146583/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146583/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146583/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146583/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146583.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146583/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146583/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146583/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146583/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146583/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146583/contributors",
+ "created_at": "2024-01-11T14:35:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146583/deployments",
+ "description": "Olfactory bulb network: neurogenetic restructuring and odor decorrelation (Chow et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146583/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146583/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146583/forks",
+ "full_name": "OpenSourceBrain/146583",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146583/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146583/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146583/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146583.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146583",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146583/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146583",
+ "id": 741991301,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146583/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146583/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146583/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146583/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146583/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146583/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146583/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146583/milestones{/number}",
+ "mirror_url": null,
+ "name": "146583",
+ "node_id": "R_kgDOLDnjhQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146583/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146583/pulls{/number}",
+ "pushed_at": "2019-05-31T03:24:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146583/releases{/id}",
+ "size": 438,
+ "ssh_url": "git@github.com:OpenSourceBrain/146583.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146583/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146583/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146583/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146583/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146583",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146583/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146583/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146583/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146583",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146734": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146734/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146734/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146734/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146734/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146734.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146734/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146734/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146734/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146734/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146734/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146734/contributors",
+ "created_at": "2024-01-11T14:35:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146734/deployments",
+ "description": "Modeling the effects of dopamine on network synchronization (Komek et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146734/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146734/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146734/forks",
+ "full_name": "OpenSourceBrain/146734",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146734/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146734/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146734/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146734.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146734",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146734/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146734",
+ "id": 741991313,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146734/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146734/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146734/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146734/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146734/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146734/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146734/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146734/milestones{/number}",
+ "mirror_url": null,
+ "name": "146734",
+ "node_id": "R_kgDOLDnjkQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146734/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146734/pulls{/number}",
+ "pushed_at": "2019-05-31T02:47:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146734/releases{/id}",
+ "size": 70,
+ "ssh_url": "git@github.com:OpenSourceBrain/146734.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146734/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146734/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146734/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146734/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146734",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146734/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146734/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146734/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146734",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146813": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146813/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146813/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146813/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146813/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146813.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146813/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146813/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146813/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146813/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146813/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146813/contributors",
+ "created_at": "2024-01-11T14:35:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146813/deployments",
+ "description": "ACh modulation in olfactory bulb and piriform cortex (de Almeida et al. 2013;Devore S, et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146813/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146813/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146813/forks",
+ "full_name": "OpenSourceBrain/146813",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146813/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146813/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146813/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146813.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146813",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146813/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146813",
+ "id": 741991325,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146813/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146813/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146813/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146813/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146813/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146813/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146813/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146813/milestones{/number}",
+ "mirror_url": null,
+ "name": "146813",
+ "node_id": "R_kgDOLDnjnQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146813/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146813/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146813/releases{/id}",
+ "size": 27,
+ "ssh_url": "git@github.com:OpenSourceBrain/146813.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146813/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146813/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146813/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146813/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146813",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146813/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146813/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146813/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146813",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146949": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146949/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146949/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146949/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146949/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146949.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146949/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146949/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146949/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146949/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146949/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146949/contributors",
+ "created_at": "2024-01-11T14:35:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146949/deployments",
+ "description": "Motor cortex microcircuit simulation based on brain activity mapping (Chadderdon et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146949/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146949/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146949/forks",
+ "full_name": "OpenSourceBrain/146949",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146949/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146949/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146949/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146949.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/146949",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146949/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146949",
+ "id": 741991338,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146949/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146949/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146949/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146949/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146949/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146949/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146949/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146949/milestones{/number}",
+ "mirror_url": null,
+ "name": "146949",
+ "node_id": "R_kgDOLDnjqg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146949/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146949/pulls{/number}",
+ "pushed_at": "2023-04-30T19:30:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146949/releases{/id}",
+ "size": 562,
+ "ssh_url": "git@github.com:OpenSourceBrain/146949.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146949/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146949/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146949/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146949/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146949",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146949/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146949/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146949/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146949",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146950": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146950/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146950/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146950/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146950/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146950.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146950/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146950/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146950/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146950/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146950/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146950/contributors",
+ "created_at": "2024-01-11T14:35:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146950/deployments",
+ "description": "Constructed Tessellated Neuronal Geometries (CTNG) (McDougal et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146950/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146950/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146950/forks",
+ "full_name": "OpenSourceBrain/146950",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146950/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146950/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146950/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146950.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/146950",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146950/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146950",
+ "id": 741991361,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146950/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146950/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146950/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146950/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146950/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146950/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146950/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146950/milestones{/number}",
+ "mirror_url": null,
+ "name": "146950",
+ "node_id": "R_kgDOLDnjwQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146950/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146950/pulls{/number}",
+ "pushed_at": "2018-04-23T18:28:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146950/releases{/id}",
+ "size": 27,
+ "ssh_url": "git@github.com:OpenSourceBrain/146950.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146950/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146950/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146950/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146950/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146950",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146950/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146950/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146950/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:35:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146950",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/146953": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/146953/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/146953/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/146953/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/146953/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/146953.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/146953/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/146953/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/146953/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/146953/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/146953/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/146953/contributors",
+ "created_at": "2024-01-11T14:36:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/146953/deployments",
+ "description": "Motion Clouds: Synthesis of random textures for motion perception (Leon et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/146953/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/146953/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/146953/forks",
+ "full_name": "OpenSourceBrain/146953",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/146953/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/146953/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/146953/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/146953.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/146953",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/146953/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/146953",
+ "id": 741991375,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/146953/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/146953/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/146953/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/146953/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/146953/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/146953/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/146953/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/146953/milestones{/number}",
+ "mirror_url": null,
+ "name": "146953",
+ "node_id": "R_kgDOLDnjzw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/146953/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/146953/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/146953/releases{/id}",
+ "size": 5986,
+ "ssh_url": "git@github.com:OpenSourceBrain/146953.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/146953/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/146953/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/146953/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/146953/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/146953",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/146953/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/146953/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/146953/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/146953",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147103": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147103/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147103/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147103/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147103/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147103.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147103/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147103/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147103/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147103/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147103/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147103/contributors",
+ "created_at": "2024-01-11T14:36:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147103/deployments",
+ "description": "A large-scale model of the functioning brain (spaun) (Eliasmith et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147103/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147103/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147103/forks",
+ "full_name": "OpenSourceBrain/147103",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147103/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147103/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147103/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147103.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147103",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147103/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147103",
+ "id": 741991396,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147103/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147103/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147103/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147103/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147103/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147103/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147103/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147103/milestones{/number}",
+ "mirror_url": null,
+ "name": "147103",
+ "node_id": "R_kgDOLDnj5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147103/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147103/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147103/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/147103.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147103/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147103/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147103/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147103/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147103",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147103/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147103/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147103/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147103",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147117": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147117/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147117/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147117/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147117/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147117.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147117/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147117/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147117/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147117/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147117/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147117/contributors",
+ "created_at": "2024-01-11T14:36:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147117/deployments",
+ "description": "Structure-dynamics relationships in bursting neuronal networks revealed (M\u00e4ki-Marttunen et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147117/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147117/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147117/forks",
+ "full_name": "OpenSourceBrain/147117",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147117/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147117/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147117/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147117.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147117",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147117/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147117",
+ "id": 741991416,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147117/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147117/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147117/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147117/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147117/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147117/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147117/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147117/milestones{/number}",
+ "mirror_url": null,
+ "name": "147117",
+ "node_id": "R_kgDOLDnj-A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147117/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147117/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147117/releases{/id}",
+ "size": 16,
+ "ssh_url": "git@github.com:OpenSourceBrain/147117.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147117/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147117/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147117/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147117/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147117",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147117/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147117/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147117/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147117",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147141": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147141/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147141/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147141/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147141/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147141.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147141/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147141/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147141/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147141/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147141/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147141/contributors",
+ "created_at": "2024-01-11T14:36:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147141/deployments",
+ "description": "Synaptic scaling balances learning in a spiking model of neocortex (Rowan & Neymotin 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147141/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147141/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147141/forks",
+ "full_name": "OpenSourceBrain/147141",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147141/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147141/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147141/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147141.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/147141",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147141/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147141",
+ "id": 741991435,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147141/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147141/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147141/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147141/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147141/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147141/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147141/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147141/milestones{/number}",
+ "mirror_url": null,
+ "name": "147141",
+ "node_id": "R_kgDOLDnkCw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147141/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147141/pulls{/number}",
+ "pushed_at": "2018-04-23T18:28:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147141/releases{/id}",
+ "size": 418,
+ "ssh_url": "git@github.com:OpenSourceBrain/147141.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147141/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147141/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147141/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147141/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147141",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147141/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147141/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147141/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147141",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147172": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147172/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147172/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147172/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147172/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147172.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147172/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147172/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147172/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147172/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147172/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147172/contributors",
+ "created_at": "2024-01-11T14:36:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147172/deployments",
+ "description": "Biophysical model for field potentials of networks of I&F neurons (beim Graben & Serafim 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147172/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147172/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147172/forks",
+ "full_name": "OpenSourceBrain/147172",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147172/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147172/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147172/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147172.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147172",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147172/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147172",
+ "id": 741991451,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147172/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147172/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147172/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147172/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147172/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147172/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147172/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147172/milestones{/number}",
+ "mirror_url": null,
+ "name": "147172",
+ "node_id": "R_kgDOLDnkGw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147172/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147172/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147172/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/147172.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147172/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147172/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147172/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147172/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147172",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147172/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147172/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147172/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147172",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147185": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147185/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147185/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147185/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147185/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147185.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147185/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147185/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147185/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147185/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147185/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147185/contributors",
+ "created_at": "2024-01-11T14:36:10Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147185/deployments",
+ "description": "Neuronvisio: a gui with 3D capabilities for NEURON (Mattioni et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147185/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147185/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147185/forks",
+ "full_name": "OpenSourceBrain/147185",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147185/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147185/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147185/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147185.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/147185",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147185/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147185",
+ "id": 741991462,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147185/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147185/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147185/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147185/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147185/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147185/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147185/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147185/milestones{/number}",
+ "mirror_url": null,
+ "name": "147185",
+ "node_id": "R_kgDOLDnkJg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147185/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147185/pulls{/number}",
+ "pushed_at": "2023-12-23T03:46:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147185/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/147185.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147185/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147185/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147185/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147185/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147185",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147185/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147185/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147185/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147185",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147218": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147218/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147218/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147218/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147218/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147218.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147218/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147218/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147218/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147218/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147218/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147218/contributors",
+ "created_at": "2024-01-11T14:36:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147218/deployments",
+ "description": "Dendritic signals command firing dynamics in a Cerebellar Purkinje Cell model (Genet et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147218/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147218/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147218/forks",
+ "full_name": "OpenSourceBrain/147218",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147218/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147218/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147218/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147218.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147218",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147218/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147218",
+ "id": 741991480,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147218/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147218/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147218/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147218/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147218/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147218/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147218/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147218/milestones{/number}",
+ "mirror_url": null,
+ "name": "147218",
+ "node_id": "R_kgDOLDnkOA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147218/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147218/pulls{/number}",
+ "pushed_at": "2019-05-31T05:07:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147218/releases{/id}",
+ "size": 80,
+ "ssh_url": "git@github.com:OpenSourceBrain/147218.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147218/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147218/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147218/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147218/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147218",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147218/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147218/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147218/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147218",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147366": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147366/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147366/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147366/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147366/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147366.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147366/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147366/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147366/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147366/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147366/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147366/contributors",
+ "created_at": "2024-01-11T14:36:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147366/deployments",
+ "description": "Composite spiking network/neural field model of Parkinsons (Kerr et al 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147366/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147366/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147366/forks",
+ "full_name": "OpenSourceBrain/147366",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147366/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147366/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147366/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147366.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147366",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147366/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147366",
+ "id": 741991497,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147366/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147366/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147366/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147366/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147366/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147366/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147366/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147366/milestones{/number}",
+ "mirror_url": null,
+ "name": "147366",
+ "node_id": "R_kgDOLDnkSQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147366/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147366/pulls{/number}",
+ "pushed_at": "2019-05-31T02:45:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147366/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/147366.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147366/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147366/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147366/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147366/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147366",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147366/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147366/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147366/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147366",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147367": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147367/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147367/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147367/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147367/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147367.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147367/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147367/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147367/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147367/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147367/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147367/contributors",
+ "created_at": "2024-01-11T14:36:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147367/deployments",
+ "description": "IP3R model comparison (Hituri and Linne 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147367/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147367/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147367/forks",
+ "full_name": "OpenSourceBrain/147367",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147367/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147367/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147367/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147367.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147367",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147367/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147367",
+ "id": 741991515,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147367/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147367/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147367/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147367/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147367/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147367/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147367/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147367/milestones{/number}",
+ "mirror_url": null,
+ "name": "147367",
+ "node_id": "R_kgDOLDnkWw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147367/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147367/pulls{/number}",
+ "pushed_at": "2019-05-31T02:40:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147367/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/147367.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147367/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147367/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147367/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147367/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147367",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147367/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147367/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147367/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147367",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147460": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147460/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147460/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147460/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147460/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147460.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147460/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147460/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147460/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147460/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147460/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147460/contributors",
+ "created_at": "2024-01-11T14:36:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147460/deployments",
+ "description": "Direct recruitment of S1 pyramidal cells and interneurons via ICMS (Overstreet et al., 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147460/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147460/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147460/forks",
+ "full_name": "OpenSourceBrain/147460",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147460/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147460/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147460/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147460.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147460",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147460/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147460",
+ "id": 741991532,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147460/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147460/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147460/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147460/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147460/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147460/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147460/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147460/milestones{/number}",
+ "mirror_url": null,
+ "name": "147460",
+ "node_id": "R_kgDOLDnkbA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147460/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147460/pulls{/number}",
+ "pushed_at": "2023-07-08T15:12:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147460/releases{/id}",
+ "size": 189,
+ "ssh_url": "git@github.com:OpenSourceBrain/147460.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147460/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147460/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147460/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147460/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147460",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147460/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147460/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147460/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147460",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147461": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147461/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147461/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147461/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147461/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147461.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147461/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147461/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147461/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147461/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147461/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147461/contributors",
+ "created_at": "2024-01-11T14:36:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147461/deployments",
+ "description": "Storing serial order in intrinsic excitability: a working memory model (Conde-Sousa & Aguiar 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147461/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147461/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147461/forks",
+ "full_name": "OpenSourceBrain/147461",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147461/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147461/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147461/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147461.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147461",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147461/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147461",
+ "id": 741991557,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147461/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147461/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147461/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147461/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147461/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147461/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147461/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147461/milestones{/number}",
+ "mirror_url": null,
+ "name": "147461",
+ "node_id": "R_kgDOLDnkhQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147461/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147461/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147461/releases{/id}",
+ "size": 16,
+ "ssh_url": "git@github.com:OpenSourceBrain/147461.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147461/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147461/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147461/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147461/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147461",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147461/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147461/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147461/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147461",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147487": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147487/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147487/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147487/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147487/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147487.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147487/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147487/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147487/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147487/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147487/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147487/contributors",
+ "created_at": "2024-01-11T14:36:23Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147487/deployments",
+ "description": "A detailed and fast model of extracellular recordings (Camunas-Mesa & Qurioga 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147487/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147487/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147487/forks",
+ "full_name": "OpenSourceBrain/147487",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147487/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147487/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147487/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147487.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/147487",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147487/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147487",
+ "id": 741991580,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147487/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147487/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147487/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147487/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147487/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147487/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147487/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147487/milestones{/number}",
+ "mirror_url": null,
+ "name": "147487",
+ "node_id": "R_kgDOLDnknA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147487/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147487/pulls{/number}",
+ "pushed_at": "2023-12-23T03:46:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147487/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/147487.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147487/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147487/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147487/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147487/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147487",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147487/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147487/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147487/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147487",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147514": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147514/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147514/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147514/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147514/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147514.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147514/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147514/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147514/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147514/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147514/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147514/contributors",
+ "created_at": "2024-01-11T14:36:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147514/deployments",
+ "description": "Altered complexity in layer 2/3 pyramidal neurons (Luuk van der Velden et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147514/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147514/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147514/forks",
+ "full_name": "OpenSourceBrain/147514",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147514/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147514/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147514/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147514.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147514",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147514/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147514",
+ "id": 741991595,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147514/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147514/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147514/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147514/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147514/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147514/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147514/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147514/milestones{/number}",
+ "mirror_url": null,
+ "name": "147514",
+ "node_id": "R_kgDOLDnkqw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147514/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147514/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147514/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/147514.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147514/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147514/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147514/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147514/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147514",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147514/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147514/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147514/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147514",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147538": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147538/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147538/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147538/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147538/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147538.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147538/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147538/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147538/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147538/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147538/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147538/contributors",
+ "created_at": "2024-01-11T14:36:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147538/deployments",
+ "description": "BCM-like synaptic plasticity with conductance-based models (Narayanan Johnston, 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147538/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147538/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147538/forks",
+ "full_name": "OpenSourceBrain/147538",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147538/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147538/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147538/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147538.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147538",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147538/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147538",
+ "id": 741991611,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147538/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147538/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147538/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147538/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147538/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147538/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147538/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147538/milestones{/number}",
+ "mirror_url": null,
+ "name": "147538",
+ "node_id": "R_kgDOLDnkuw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147538/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147538/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147538/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/147538.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147538/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147538/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147538/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147538/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147538",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147538/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147538/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147538/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147538",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147539": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147539/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147539/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147539/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147539/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147539.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147539/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147539/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147539/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147539/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147539/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147539/contributors",
+ "created_at": "2024-01-11T14:36:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147539/deployments",
+ "description": "Resonance properties through Chirp stimulus responses (Narayanan Johnston 2007, 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147539/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147539/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147539/forks",
+ "full_name": "OpenSourceBrain/147539",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147539/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147539/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147539/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147539.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147539",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147539/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147539",
+ "id": 741991621,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147539/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147539/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147539/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147539/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147539/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147539/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147539/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147539/milestones{/number}",
+ "mirror_url": null,
+ "name": "147539",
+ "node_id": "R_kgDOLDnkxQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147539/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147539/pulls{/number}",
+ "pushed_at": "2019-05-31T02:55:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147539/releases{/id}",
+ "size": 6497,
+ "ssh_url": "git@github.com:OpenSourceBrain/147539.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147539/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147539/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147539/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147539/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147539",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147539/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147539/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147539/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147539",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147578": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147578/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147578/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147578/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147578/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147578.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147578/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147578/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147578/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147578/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147578/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147578/contributors",
+ "created_at": "2024-01-11T14:36:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147578/deployments",
+ "description": "Chirp stimulus responses in a morphologically realistic model (Narayanan and Johnston, 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147578/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147578/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147578/forks",
+ "full_name": "OpenSourceBrain/147578",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147578/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147578/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147578/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147578.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147578",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147578/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147578",
+ "id": 741991628,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147578/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147578/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147578/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147578/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147578/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147578/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147578/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147578/milestones{/number}",
+ "mirror_url": null,
+ "name": "147578",
+ "node_id": "R_kgDOLDnkzA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147578/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147578/pulls{/number}",
+ "pushed_at": "2019-05-31T04:51:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147578/releases{/id}",
+ "size": 10334,
+ "ssh_url": "git@github.com:OpenSourceBrain/147578.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147578/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147578/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147578/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147578/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147578",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147578/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147578/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147578/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147578",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147740": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147740/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147740/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147740/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147740/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147740.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147740/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147740/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147740/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147740/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147740/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147740/contributors",
+ "created_at": "2024-01-11T14:36:34Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147740/deployments",
+ "description": "Cytoplasmic electric fields and electroosmosis (Andreev 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147740/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147740/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147740/forks",
+ "full_name": "OpenSourceBrain/147740",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147740/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147740/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147740/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147740.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/147740",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147740/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147740",
+ "id": 741991640,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147740/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147740/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147740/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147740/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147740/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147740/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147740/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147740/milestones{/number}",
+ "mirror_url": null,
+ "name": "147740",
+ "node_id": "R_kgDOLDnk2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147740/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147740/pulls{/number}",
+ "pushed_at": "2023-12-23T03:46:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147740/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/147740.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147740/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147740/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147740/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147740/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147740",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147740/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147740/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147740/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147740",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147748": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147748/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147748/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147748/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147748/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147748.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147748/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147748/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147748/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147748/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147748/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147748/contributors",
+ "created_at": "2024-01-11T14:36:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147748/deployments",
+ "description": "Human sleep/wake cycle (Rempe et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147748/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147748/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147748/forks",
+ "full_name": "OpenSourceBrain/147748",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147748/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147748/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147748/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147748.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147748",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147748/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147748",
+ "id": 741991655,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147748/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147748/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147748/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147748/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147748/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147748/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147748/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147748/milestones{/number}",
+ "mirror_url": null,
+ "name": "147748",
+ "node_id": "R_kgDOLDnk5w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147748/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147748/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147748/releases{/id}",
+ "size": 19,
+ "ssh_url": "git@github.com:OpenSourceBrain/147748.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147748/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147748/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147748/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147748/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147748",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147748/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147748/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147748/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147748",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147756": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147756/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147756/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147756/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147756/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147756.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147756/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147756/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147756/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147756/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147756/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147756/contributors",
+ "created_at": "2024-01-11T14:36:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147756/deployments",
+ "description": "Region-specific atrophy in dendrites (Narayanan, Narayan, Chattarji, 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147756/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147756/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147756/forks",
+ "full_name": "OpenSourceBrain/147756",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147756/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147756/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147756/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147756.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147756",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147756/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147756",
+ "id": 741991666,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147756/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147756/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147756/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147756/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147756/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147756/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147756/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147756/milestones{/number}",
+ "mirror_url": null,
+ "name": "147756",
+ "node_id": "R_kgDOLDnk8g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147756/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147756/pulls{/number}",
+ "pushed_at": "2019-05-31T04:53:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147756/releases{/id}",
+ "size": 286,
+ "ssh_url": "git@github.com:OpenSourceBrain/147756.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147756/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147756/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147756/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147756/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147756",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147756/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147756/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147756/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147756",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147757": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147757/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147757/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147757/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147757/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147757.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147757/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147757/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147757/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147757/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147757/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147757/contributors",
+ "created_at": "2024-01-11T14:36:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147757/deployments",
+ "description": "Amyloid-beta effects on release probability and integration at CA3-CA1 synapses (Romani et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147757/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147757/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147757/forks",
+ "full_name": "OpenSourceBrain/147757",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147757/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147757/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147757/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147757.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147757",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147757/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147757",
+ "id": 741991686,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147757/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147757/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147757/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147757/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147757/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147757/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147757/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147757/milestones{/number}",
+ "mirror_url": null,
+ "name": "147757",
+ "node_id": "R_kgDOLDnlBg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147757/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147757/pulls{/number}",
+ "pushed_at": "2019-05-31T05:01:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147757/releases{/id}",
+ "size": 121,
+ "ssh_url": "git@github.com:OpenSourceBrain/147757.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147757/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147757/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147757/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147757/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147757",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147757/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147757/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147757/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147757",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147867": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147867/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147867/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147867/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147867/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147867.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147867/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147867/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147867/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147867/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147867/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147867/contributors",
+ "created_at": "2024-01-11T14:36:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147867/deployments",
+ "description": "Impact of dendritic atrophy on intrinsic and synaptic excitability (Narayanan & Chattarji, 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147867/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147867/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147867/forks",
+ "full_name": "OpenSourceBrain/147867",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147867/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147867/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147867/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147867.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147867",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147867/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147867",
+ "id": 741991703,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147867/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147867/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147867/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147867/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147867/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147867/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147867/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147867/milestones{/number}",
+ "mirror_url": null,
+ "name": "147867",
+ "node_id": "R_kgDOLDnlFw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147867/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147867/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147867/releases{/id}",
+ "size": 178,
+ "ssh_url": "git@github.com:OpenSourceBrain/147867.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147867/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147867/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147867/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147867/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147867",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147867/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147867/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147867/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147867",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147929": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147929/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147929/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147929/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147929/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147929.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147929/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147929/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147929/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147929/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147929/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147929/contributors",
+ "created_at": "2024-01-11T14:36:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147929/deployments",
+ "description": "Development of orientation-selective simple cell receptive fields (Rishikesh and Venkatesh, 2003)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147929/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147929/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147929/forks",
+ "full_name": "OpenSourceBrain/147929",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147929/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147929/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147929/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147929.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/147929",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147929/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147929",
+ "id": 741991713,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147929/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147929/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147929/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147929/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147929/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147929/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147929/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147929/milestones{/number}",
+ "mirror_url": null,
+ "name": "147929",
+ "node_id": "R_kgDOLDnlIQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147929/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147929/pulls{/number}",
+ "pushed_at": "2019-05-31T03:32:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147929/releases{/id}",
+ "size": 636,
+ "ssh_url": "git@github.com:OpenSourceBrain/147929.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147929/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147929/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147929/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147929/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147929",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147929/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147929/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147929/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147929",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/147938": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/147938/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/147938/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/147938/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/147938/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/147938.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/147938/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/147938/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/147938/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/147938/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/147938/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/147938/contributors",
+ "created_at": "2024-01-11T14:36:45Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/147938/deployments",
+ "description": "Towards a virtual C. elegans (Palyanov et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/147938/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/147938/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/147938/forks",
+ "full_name": "OpenSourceBrain/147938",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/147938/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/147938/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/147938/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/147938.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/147938",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/147938/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/147938",
+ "id": 741991724,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/147938/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/147938/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/147938/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/147938/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/147938/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/147938/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/147938/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/147938/milestones{/number}",
+ "mirror_url": null,
+ "name": "147938",
+ "node_id": "R_kgDOLDnlLA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/147938/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/147938/pulls{/number}",
+ "pushed_at": "2023-12-23T03:46:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/147938/releases{/id}",
+ "size": 1635,
+ "ssh_url": "git@github.com:OpenSourceBrain/147938.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/147938/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/147938/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/147938/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/147938/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/147938",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/147938/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/147938/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/147938/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/147938",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/148035": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/148035/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/148035/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/148035/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/148035/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/148035.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/148035/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/148035/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/148035/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/148035/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/148035/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/148035/contributors",
+ "created_at": "2024-01-11T14:36:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/148035/deployments",
+ "description": "Spiking GridPlaceMap model (Pilly & Grossberg, PLoS One, 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/148035/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/148035/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/148035/forks",
+ "full_name": "OpenSourceBrain/148035",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/148035/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/148035/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/148035/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/148035.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/148035",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/148035/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/148035",
+ "id": 741991743,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/148035/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/148035/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/148035/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/148035/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/148035/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/148035/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/148035/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/148035/milestones{/number}",
+ "mirror_url": null,
+ "name": "148035",
+ "node_id": "R_kgDOLDnlPw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/148035/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/148035/pulls{/number}",
+ "pushed_at": "2019-05-31T03:25:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/148035/releases{/id}",
+ "size": 2727,
+ "ssh_url": "git@github.com:OpenSourceBrain/148035.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/148035/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/148035/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/148035/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/148035/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/148035",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/148035/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/148035/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/148035/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/148035",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/148094": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/148094/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/148094/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/148094/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/148094/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/148094.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/148094/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/148094/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/148094/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/148094/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/148094/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/148094/contributors",
+ "created_at": "2024-01-11T14:36:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/148094/deployments",
+ "description": "CA1 pyramidal neuron: effects of R213Q and R312W Kv7.2 mutations (Miceli et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/148094/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/148094/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/148094/forks",
+ "full_name": "OpenSourceBrain/148094",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/148094/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/148094/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/148094/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/148094.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/148094",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/148094/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/148094",
+ "id": 741991757,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/148094/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/148094/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/148094/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/148094/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/148094/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/148094/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/148094/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/148094/milestones{/number}",
+ "mirror_url": null,
+ "name": "148094",
+ "node_id": "R_kgDOLDnlTQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/148094/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/148094/pulls{/number}",
+ "pushed_at": "2018-04-23T18:29:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/148094/releases{/id}",
+ "size": 37,
+ "ssh_url": "git@github.com:OpenSourceBrain/148094.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/148094/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/148094/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/148094/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/148094/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/148094",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/148094/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/148094/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/148094/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/148094",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/148253": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/148253/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/148253/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/148253/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/148253/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/148253.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/148253/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/148253/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/148253/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/148253/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/148253/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/148253/contributors",
+ "created_at": "2024-01-11T14:36:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/148253/deployments",
+ "description": "Effects of Chloride accumulation and diffusion on GABAergic transmission (Jedlicka et al 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/148253/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/148253/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/148253/forks",
+ "full_name": "OpenSourceBrain/148253",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/148253/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/148253/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/148253/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/148253.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/148253",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/148253/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/148253",
+ "id": 741991770,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/148253/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/148253/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/148253/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/148253/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/148253/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/148253/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/148253/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/148253/milestones{/number}",
+ "mirror_url": null,
+ "name": "148253",
+ "node_id": "R_kgDOLDnlWg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/148253/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/148253/pulls{/number}",
+ "pushed_at": "2023-07-08T16:21:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/148253/releases{/id}",
+ "size": 1735,
+ "ssh_url": "git@github.com:OpenSourceBrain/148253.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/148253/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/148253/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/148253/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/148253/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/148253",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/148253/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/148253/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/148253/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/148253",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/148320": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/148320/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/148320/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/148320/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/148320/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/148320.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/148320/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/148320/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/148320/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/148320/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/148320/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/148320/contributors",
+ "created_at": "2024-01-11T14:36:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/148320/deployments",
+ "description": "Circadian clock model in mammals (PK/PD model) (Kim & Forger 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/148320/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/148320/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/148320/forks",
+ "full_name": "OpenSourceBrain/148320",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/148320/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/148320/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/148320/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/148320.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/148320",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/148320/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/148320",
+ "id": 741991787,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/148320/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/148320/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/148320/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/148320/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/148320/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/148320/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/148320/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/148320/milestones{/number}",
+ "mirror_url": null,
+ "name": "148320",
+ "node_id": "R_kgDOLDnlaw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/148320/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/148320/pulls{/number}",
+ "pushed_at": "2019-05-31T02:50:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/148320/releases{/id}",
+ "size": 25,
+ "ssh_url": "git@github.com:OpenSourceBrain/148320.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/148320/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/148320/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/148320/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/148320/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/148320",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/148320/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/148320/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/148320/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/148320",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/148637": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/148637/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/148637/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/148637/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/148637/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/148637.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/148637/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/148637/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/148637/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/148637/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/148637/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/148637/contributors",
+ "created_at": "2024-01-11T14:36:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/148637/deployments",
+ "description": "Failure of Deep Brain Stimulation in a basal ganglia neuronal network model (Dovzhenok et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/148637/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/148637/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/148637/forks",
+ "full_name": "OpenSourceBrain/148637",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/148637/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/148637/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/148637/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/148637.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/148637",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/148637/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/148637",
+ "id": 741991802,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/148637/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/148637/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/148637/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/148637/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/148637/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/148637/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/148637/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/148637/milestones{/number}",
+ "mirror_url": null,
+ "name": "148637",
+ "node_id": "R_kgDOLDnleg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/148637/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/148637/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/148637/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/148637.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/148637/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/148637/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/148637/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/148637/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/148637",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/148637/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/148637/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/148637/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/148637",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/148644": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/148644/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/148644/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/148644/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/148644/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/148644.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/148644/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/148644/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/148644/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/148644/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/148644/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/148644/contributors",
+ "created_at": "2024-01-11T14:36:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/148644/deployments",
+ "description": "Neuronal morphology goes digital ... (Parekh & Ascoli 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/148644/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/148644/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/148644/forks",
+ "full_name": "OpenSourceBrain/148644",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/148644/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/148644/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/148644/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/148644.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/148644",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/148644/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/148644",
+ "id": 741991815,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/148644/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/148644/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/148644/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/148644/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/148644/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/148644/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/148644/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/148644/milestones{/number}",
+ "mirror_url": null,
+ "name": "148644",
+ "node_id": "R_kgDOLDnlhw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/148644/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/148644/pulls{/number}",
+ "pushed_at": "2019-05-31T02:50:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/148644/releases{/id}",
+ "size": 77,
+ "ssh_url": "git@github.com:OpenSourceBrain/148644.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/148644/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/148644/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/148644/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/148644/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/148644",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/148644/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/148644/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/148644/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/148644",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/148646": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/148646/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/148646/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/148646/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/148646/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/148646.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/148646/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/148646/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/148646/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/148646/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/148646/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/148646/contributors",
+ "created_at": "2024-01-11T14:36:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/148646/deployments",
+ "description": "CA1 pyramidal neuron: action potential backpropagation (Gasparini & Migliore 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/148646/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/148646/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/148646/forks",
+ "full_name": "OpenSourceBrain/148646",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/148646/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/148646/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/148646/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/148646.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/148646/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/148646",
+ "id": 741991830,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/148646/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/148646/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/148646/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/148646/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/148646/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/148646/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/148646/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/148646/milestones{/number}",
+ "mirror_url": null,
+ "name": "148646",
+ "node_id": "R_kgDOLDnllg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/148646/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/148646/pulls{/number}",
+ "pushed_at": "2019-01-11T21:45:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/148646/releases{/id}",
+ "size": 60,
+ "ssh_url": "git@github.com:OpenSourceBrain/148646.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/148646/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/148646/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/148646/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/148646/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/148646",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/148646/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/148646/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/148646/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:36:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/148646",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149000": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149000/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149000/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149000/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149000/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149000.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149000/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149000/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149000/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149000/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149000/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149000/contributors",
+ "created_at": "2024-01-11T14:37:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149000/deployments",
+ "description": "Using Strahler`s analysis to reduce realistic models (Marasco et al, 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149000/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149000/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149000/forks",
+ "full_name": "OpenSourceBrain/149000",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149000/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149000/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149000/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149000.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149000",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149000/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149000",
+ "id": 741991841,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149000/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149000/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149000/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149000/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149000/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149000/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149000/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149000/milestones{/number}",
+ "mirror_url": null,
+ "name": "149000",
+ "node_id": "R_kgDOLDnloQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149000/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149000/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149000/releases{/id}",
+ "size": 379,
+ "ssh_url": "git@github.com:OpenSourceBrain/149000.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149000/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149000/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149000/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149000/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149000",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149000/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149000/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149000/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:37:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149000",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149100": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149100/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149100/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149100/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149100/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149100.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149100/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149100/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149100/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149100/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149100/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149100/contributors",
+ "created_at": "2024-01-11T14:37:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149100/deployments",
+ "description": "Preserving axosomatic spiking features despite diverse dendritic morphology (Hay et al., 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149100/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149100/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149100/forks",
+ "full_name": "OpenSourceBrain/149100",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149100/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149100/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149100/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149100.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149100",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149100/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149100",
+ "id": 741991858,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149100/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149100/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149100/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149100/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149100/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149100/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149100/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149100/milestones{/number}",
+ "mirror_url": null,
+ "name": "149100",
+ "node_id": "R_kgDOLDnlsg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149100/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149100/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149100/releases{/id}",
+ "size": 446,
+ "ssh_url": "git@github.com:OpenSourceBrain/149100.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149100/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149100/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149100/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149100/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149100",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149100/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149100/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149100/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:37:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149100",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149162": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149162/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149162/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149162/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149162/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149162.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149162/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149162/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149162/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149162/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149162/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149162/contributors",
+ "created_at": "2024-01-11T14:39:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149162/deployments",
+ "description": "Rescue of plasticity by a computationally predicted protocol (Liu et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149162/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149162/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149162/forks",
+ "full_name": "OpenSourceBrain/149162",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149162/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149162/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149162/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149162.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149162",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149162/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149162",
+ "id": 741992877,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149162/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149162/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149162/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149162/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149162/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149162/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149162/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149162/milestones{/number}",
+ "mirror_url": null,
+ "name": "149162",
+ "node_id": "R_kgDOLDnprQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149162/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149162/pulls{/number}",
+ "pushed_at": "2022-02-17T06:12:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149162/releases{/id}",
+ "size": 20,
+ "ssh_url": "git@github.com:OpenSourceBrain/149162.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149162/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149162/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149162/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149162/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149162",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149162/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149162/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149162/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149162",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149174": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149174/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149174/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149174/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149174/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149174.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149174/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149174/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149174/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149174/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149174/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149174/contributors",
+ "created_at": "2024-01-11T14:39:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149174/deployments",
+ "description": "State dependent drug binding to sodium channels in the dentate gyrus (Thomas & Petrou 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149174/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149174/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149174/forks",
+ "full_name": "OpenSourceBrain/149174",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149174/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149174/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149174/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149174.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149174",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149174/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149174",
+ "id": 741992897,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149174/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149174/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149174/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149174/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149174/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149174/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149174/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149174/milestones{/number}",
+ "mirror_url": null,
+ "name": "149174",
+ "node_id": "R_kgDOLDnpwQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149174/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149174/pulls{/number}",
+ "pushed_at": "2023-11-28T20:44:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149174/releases{/id}",
+ "size": 27,
+ "ssh_url": "git@github.com:OpenSourceBrain/149174.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149174/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149174/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149174/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149174/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149174",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149174/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149174/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149174/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149174",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149175": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149175/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149175/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149175/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149175/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149175.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149175/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149175/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149175/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149175/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149175/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149175/contributors",
+ "created_at": "2024-01-11T14:39:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149175/deployments",
+ "description": "Roles of essential kinases in induction of late hippocampal LTP (Smolen et al., 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149175/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149175/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149175/forks",
+ "full_name": "OpenSourceBrain/149175",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149175/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149175/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149175/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149175.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149175",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149175/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149175",
+ "id": 741992907,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149175/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149175/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149175/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149175/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149175/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149175/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149175/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149175/milestones{/number}",
+ "mirror_url": null,
+ "name": "149175",
+ "node_id": "R_kgDOLDnpyw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149175/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149175/pulls{/number}",
+ "pushed_at": "2019-05-31T02:44:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149175/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/149175.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149175/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149175/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149175/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149175/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149175",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149175/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149175/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149175/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149175",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149415": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149415/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149415/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149415/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149415/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149415.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149415/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149415/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149415/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149415/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149415/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149415/contributors",
+ "created_at": "2024-01-11T14:39:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149415/deployments",
+ "description": "Olfactory Computations in Mitral-Granule cell circuits (Migliore & McTavish 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149415/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149415/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149415/forks",
+ "full_name": "OpenSourceBrain/149415",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149415/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149415/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149415/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149415.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149415",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149415/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149415",
+ "id": 741992920,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149415/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149415/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149415/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149415/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149415/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149415/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149415/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149415/milestones{/number}",
+ "mirror_url": null,
+ "name": "149415",
+ "node_id": "R_kgDOLDnp2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149415/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149415/pulls{/number}",
+ "pushed_at": "2019-05-31T02:32:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149415/releases{/id}",
+ "size": 55,
+ "ssh_url": "git@github.com:OpenSourceBrain/149415.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149415/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149415/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149415/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149415/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149415",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149415/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149415/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149415/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149415",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149737": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149737/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149737/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149737/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149737/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149737.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149737/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149737/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149737/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149737/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149737/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149737/contributors",
+ "created_at": "2024-01-11T14:39:34Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149737/deployments",
+ "description": "Modeling conductivity profiles in the deep neocortical pyramidal neuron (Wang K et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149737/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149737/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149737/forks",
+ "full_name": "OpenSourceBrain/149737",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149737/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149737/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149737/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149737.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/149737",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149737/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149737",
+ "id": 741992930,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149737/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149737/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149737/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149737/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149737/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149737/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149737/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149737/milestones{/number}",
+ "mirror_url": null,
+ "name": "149737",
+ "node_id": "R_kgDOLDnp4g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149737/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149737/pulls{/number}",
+ "pushed_at": "2023-12-23T03:46:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149737/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/149737.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149737/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149737/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149737/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149737/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149737",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149737/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149737/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149737/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149737",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149739": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149739/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149739/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149739/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149739/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149739.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149739/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149739/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149739/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149739/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149739/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149739/contributors",
+ "created_at": "2024-01-11T14:39:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149739/deployments",
+ "description": "A two-layer biophysical olfactory bulb model of cholinergic neuromodulation (Li and Cleland 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149739/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149739/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149739/forks",
+ "full_name": "OpenSourceBrain/149739",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149739/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149739/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149739/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149739.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/149739",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149739/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149739",
+ "id": 741992949,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149739/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149739/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149739/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149739/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149739/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149739/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149739/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149739/milestones{/number}",
+ "mirror_url": null,
+ "name": "149739",
+ "node_id": "R_kgDOLDnp9Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149739/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149739/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149739/releases{/id}",
+ "size": 68,
+ "ssh_url": "git@github.com:OpenSourceBrain/149739.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149739/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149739/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149739/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149739/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149739",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149739/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149739/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149739/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149739",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149910": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149910/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149910/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149910/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149910/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149910.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149910/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149910/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149910/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149910/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149910/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149910/contributors",
+ "created_at": "2024-01-11T14:39:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149910/deployments",
+ "description": "Competing oscillator 5-cell circuit and Parameterscape plotting (Gutierrez et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149910/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149910/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149910/forks",
+ "full_name": "OpenSourceBrain/149910",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149910/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149910/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149910/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149910.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149910",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149910/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149910",
+ "id": 741992964,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149910/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149910/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149910/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149910/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149910/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149910/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149910/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149910/milestones{/number}",
+ "mirror_url": null,
+ "name": "149910",
+ "node_id": "R_kgDOLDnqBA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149910/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149910/pulls{/number}",
+ "pushed_at": "2019-05-31T03:32:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149910/releases{/id}",
+ "size": 97,
+ "ssh_url": "git@github.com:OpenSourceBrain/149910.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149910/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149910/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149910/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149910/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149910",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149910/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149910/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149910/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149910",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149913": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149913/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149913/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149913/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149913/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149913.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149913/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149913/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149913/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149913/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149913/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149913/contributors",
+ "created_at": "2024-01-11T14:39:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149913/deployments",
+ "description": "Distributed synaptic plasticity and spike timing (Garrido et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149913/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149913/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149913/forks",
+ "full_name": "OpenSourceBrain/149913",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149913/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149913/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149913/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149913.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149913",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149913/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149913",
+ "id": 741992978,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149913/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149913/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149913/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149913/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149913/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149913/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149913/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149913/milestones{/number}",
+ "mirror_url": null,
+ "name": "149913",
+ "node_id": "R_kgDOLDnqEg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149913/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149913/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149913/releases{/id}",
+ "size": 295,
+ "ssh_url": "git@github.com:OpenSourceBrain/149913.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149913/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149913/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149913/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149913/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149913",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149913/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149913/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149913/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149913",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/149914": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/149914/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/149914/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/149914/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/149914/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/149914.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/149914/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/149914/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/149914/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/149914/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/149914/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/149914/contributors",
+ "created_at": "2024-01-11T14:39:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/149914/deployments",
+ "description": "Prob. Inference of Short-Term Synaptic Plasticity in Neocort. Microcircuits (Costa et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/149914/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/149914/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/149914/forks",
+ "full_name": "OpenSourceBrain/149914",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/149914/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/149914/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/149914/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/149914.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/149914",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/149914/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/149914",
+ "id": 741992997,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/149914/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/149914/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/149914/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/149914/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/149914/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/149914/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/149914/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/149914/milestones{/number}",
+ "mirror_url": null,
+ "name": "149914",
+ "node_id": "R_kgDOLDnqJQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/149914/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/149914/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/149914/releases{/id}",
+ "size": 1215,
+ "ssh_url": "git@github.com:OpenSourceBrain/149914.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/149914/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/149914/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/149914/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/149914/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/149914",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/149914/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/149914/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/149914/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/149914",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150024": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150024/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150024/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150024/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150024/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150024.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150024/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150024/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150024/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150024/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150024/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150024/contributors",
+ "created_at": "2024-01-11T14:39:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150024/deployments",
+ "description": "KV1 channel governs cerebellar output to thalamus (Ovsepian et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150024/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150024/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150024/forks",
+ "full_name": "OpenSourceBrain/150024",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150024/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150024/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150024/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150024.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150024",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150024/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150024",
+ "id": 741993012,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150024/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150024/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150024/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150024/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150024/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150024/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150024/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150024/milestones{/number}",
+ "mirror_url": null,
+ "name": "150024",
+ "node_id": "R_kgDOLDnqNA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150024/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150024/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150024/releases{/id}",
+ "size": 45,
+ "ssh_url": "git@github.com:OpenSourceBrain/150024.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150024/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150024/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150024/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150024/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150024",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150024/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150024/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150024/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150024",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150031": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150031/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150031/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150031/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150031/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150031.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150031/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150031/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150031/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150031/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150031/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150031/contributors",
+ "created_at": "2024-01-11T14:39:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150031/deployments",
+ "description": "An attractor network model of grid cells and theta-nested gamma oscillations (Pastoll et al., 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150031/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150031/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150031/forks",
+ "full_name": "OpenSourceBrain/150031",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150031/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150031/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150031/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150031.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150031",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150031/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150031",
+ "id": 741993029,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150031/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150031/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150031/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150031/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150031/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150031/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150031/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150031/milestones{/number}",
+ "mirror_url": null,
+ "name": "150031",
+ "node_id": "R_kgDOLDnqRQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150031/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150031/pulls{/number}",
+ "pushed_at": "2020-03-23T17:10:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150031/releases{/id}",
+ "size": 1164,
+ "ssh_url": "git@github.com:OpenSourceBrain/150031.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150031/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150031/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150031/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150031/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150031",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150031/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150031/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150031/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150031",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150067": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150067/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150067/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150067/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150067/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150067.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150067/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150067/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150067/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150067/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150067/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150067/contributors",
+ "created_at": "2024-01-11T14:39:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150067/deployments",
+ "description": "Distributed cerebellar plasticity implements adaptable gain control (Garrido et al., 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150067/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150067/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150067/forks",
+ "full_name": "OpenSourceBrain/150067",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150067/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150067/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150067/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150067.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150067",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150067/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150067",
+ "id": 741993041,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150067/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150067/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150067/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150067/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150067/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150067/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150067/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150067/milestones{/number}",
+ "mirror_url": null,
+ "name": "150067",
+ "node_id": "R_kgDOLDnqUQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150067/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150067/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150067/releases{/id}",
+ "size": 85,
+ "ssh_url": "git@github.com:OpenSourceBrain/150067.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150067/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150067/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150067/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150067/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150067",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150067/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150067/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150067/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150067",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150206": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150206/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150206/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150206/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150206/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150206.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150206/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150206/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150206/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150206/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150206/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150206/contributors",
+ "created_at": "2024-01-11T14:39:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150206/deployments",
+ "description": "Biologically Constrained Basal Ganglia model (BCBG model) (Lienard, Girard 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150206/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150206/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150206/forks",
+ "full_name": "OpenSourceBrain/150206",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150206/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150206/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150206/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150206.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150206",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150206/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150206",
+ "id": 741993058,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150206/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150206/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150206/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150206/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150206/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150206/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150206/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150206/milestones{/number}",
+ "mirror_url": null,
+ "name": "150206",
+ "node_id": "R_kgDOLDnqYg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150206/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150206/pulls{/number}",
+ "pushed_at": "2019-05-31T04:52:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150206/releases{/id}",
+ "size": 39,
+ "ssh_url": "git@github.com:OpenSourceBrain/150206.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150206/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150206/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150206/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150206/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150206",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150206/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150206/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150206/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150206",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150207": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150207/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150207/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150207/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150207/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150207.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150207/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150207/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150207/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150207/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150207/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150207/contributors",
+ "created_at": "2024-01-11T14:39:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150207/deployments",
+ "description": "A Method for Prediction of Receptor Activation in the Simulation of Synapses (Montes et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150207/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150207/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150207/forks",
+ "full_name": "OpenSourceBrain/150207",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150207/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150207/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150207/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150207.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150207",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150207/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150207",
+ "id": 741993073,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150207/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150207/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150207/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150207/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150207/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150207/languages",
+ "license": {
+ "key": "lgpl-3.0",
+ "name": "GNU Lesser General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTEy",
+ "spdx_id": "LGPL-3.0",
+ "url": "https://api.github.com/licenses/lgpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150207/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150207/milestones{/number}",
+ "mirror_url": null,
+ "name": "150207",
+ "node_id": "R_kgDOLDnqcQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150207/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150207/pulls{/number}",
+ "pushed_at": "2019-05-31T04:30:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150207/releases{/id}",
+ "size": 6928,
+ "ssh_url": "git@github.com:OpenSourceBrain/150207.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150207/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150207/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150207/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150207/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150207",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150207/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150207/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150207/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150207",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150211": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150211/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150211/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150211/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150211/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150211.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150211/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150211/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150211/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150211/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150211/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150211/contributors",
+ "created_at": "2024-01-11T14:39:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150211/deployments",
+ "description": "Emergence of Connectivity Motifs in Networks of Model Neurons (Vasilaki, Giugliano 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150211/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150211/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150211/forks",
+ "full_name": "OpenSourceBrain/150211",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150211/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150211/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150211/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150211.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150211",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150211/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150211",
+ "id": 741993082,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150211/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150211/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150211/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150211/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150211/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150211/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150211/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150211/milestones{/number}",
+ "mirror_url": null,
+ "name": "150211",
+ "node_id": "R_kgDOLDnqeg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150211/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150211/pulls{/number}",
+ "pushed_at": "2019-05-31T04:29:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150211/releases{/id}",
+ "size": 1235,
+ "ssh_url": "git@github.com:OpenSourceBrain/150211.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150211/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150211/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150211/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150211/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150211",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150211/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150211/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150211/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150211",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150217": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150217/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150217/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150217/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150217/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150217.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150217/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150217/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150217/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150217/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150217/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150217/contributors",
+ "created_at": "2024-01-11T14:39:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150217/deployments",
+ "description": "Reliability of Morris-Lecar neurons with added T, h, and AHP currents (Zeldenrust et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150217/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150217/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150217/forks",
+ "full_name": "OpenSourceBrain/150217",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150217/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150217/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150217/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150217.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150217",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150217/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150217",
+ "id": 741993109,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150217/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150217/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150217/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150217/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150217/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150217/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150217/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150217/milestones{/number}",
+ "mirror_url": null,
+ "name": "150217",
+ "node_id": "R_kgDOLDnqlQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150217/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150217/pulls{/number}",
+ "pushed_at": "2022-02-25T04:29:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150217/releases{/id}",
+ "size": 7034,
+ "ssh_url": "git@github.com:OpenSourceBrain/150217.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150217/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150217/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150217/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150217/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150217",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150217/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150217/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150217/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150217",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150225": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150225/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150225/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150225/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150225/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150225.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150225/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150225/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150225/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150225/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150225/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150225/contributors",
+ "created_at": "2024-01-11T14:39:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150225/deployments",
+ "description": "Fast convergence of cerebellar learning (Luque et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150225/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150225/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150225/forks",
+ "full_name": "OpenSourceBrain/150225",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150225/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150225/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150225/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150225.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150225",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150225/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150225",
+ "id": 741993126,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150225/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150225/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150225/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150225/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150225/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150225/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150225/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150225/milestones{/number}",
+ "mirror_url": null,
+ "name": "150225",
+ "node_id": "R_kgDOLDnqpg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150225/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150225/pulls{/number}",
+ "pushed_at": "2019-05-31T02:07:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150225/releases{/id}",
+ "size": 65,
+ "ssh_url": "git@github.com:OpenSourceBrain/150225.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150225/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150225/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150225/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150225/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150225",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150225/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150225/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150225/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:39:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150225",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150239": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150239/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150239/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150239/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150239/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150239.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150239/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150239/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150239/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150239/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150239/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150239/contributors",
+ "created_at": "2024-01-11T14:40:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150239/deployments",
+ "description": "MEC layer II stellate cell: Synaptic mechanisms of grid cells (Schmidt-Hieber & Hausser 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150239/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150239/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150239/forks",
+ "full_name": "OpenSourceBrain/150239",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150239/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150239/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150239/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150239.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150239",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150239/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150239",
+ "id": 741993137,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150239/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150239/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150239/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150239/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150239/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150239/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150239/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150239/milestones{/number}",
+ "mirror_url": null,
+ "name": "150239",
+ "node_id": "R_kgDOLDnqsQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150239/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150239/pulls{/number}",
+ "pushed_at": "2019-05-31T04:29:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150239/releases{/id}",
+ "size": 68,
+ "ssh_url": "git@github.com:OpenSourceBrain/150239.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150239/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150239/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150239/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150239/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150239",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150239/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150239/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150239/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150239",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150240": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150240/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150240/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150240/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150240/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150240.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150240/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150240/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150240/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150240/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150240/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150240/contributors",
+ "created_at": "2024-01-11T14:40:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150240/deployments",
+ "description": "A Model Circuit of Thalamocortical Convergence (Behuret et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150240/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150240/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150240/forks",
+ "full_name": "OpenSourceBrain/150240",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150240/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150240/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150240/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150240.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150240",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150240/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150240",
+ "id": 741993152,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150240/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150240/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150240/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150240/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150240/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150240/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150240/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150240/milestones{/number}",
+ "mirror_url": null,
+ "name": "150240",
+ "node_id": "R_kgDOLDnqwA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150240/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150240/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150240/releases{/id}",
+ "size": 256,
+ "ssh_url": "git@github.com:OpenSourceBrain/150240.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150240/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150240/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150240/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150240/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150240",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150240/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150240/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150240/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150240",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150245": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150245/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150245/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150245/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150245/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150245.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150245/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150245/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150245/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150245/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150245/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150245/contributors",
+ "created_at": "2024-01-11T14:40:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150245/deployments",
+ "description": "Sensorimotor cortex reinforcement learning of 2-joint virtual arm reaching (Neymotin et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150245/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150245/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150245/forks",
+ "full_name": "OpenSourceBrain/150245",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150245/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150245/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150245/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150245.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/150245",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150245/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150245",
+ "id": 741993175,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150245/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150245/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150245/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150245/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150245/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150245/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150245/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150245/milestones{/number}",
+ "mirror_url": null,
+ "name": "150245",
+ "node_id": "R_kgDOLDnq1w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150245/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150245/pulls{/number}",
+ "pushed_at": "2023-04-30T19:57:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150245/releases{/id}",
+ "size": 662,
+ "ssh_url": "git@github.com:OpenSourceBrain/150245.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150245/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150245/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150245/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150245/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150245",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150245/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150245/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150245/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150245",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150284": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150284/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150284/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150284/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150284/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150284.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150284/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150284/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150284/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150284/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150284/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150284/contributors",
+ "created_at": "2024-01-11T14:40:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150284/deployments",
+ "description": "Multiscale simulation of the striatal medium spiny neuron (Mattioni & Le Novere 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150284/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150284/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150284/forks",
+ "full_name": "OpenSourceBrain/150284",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150284/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150284/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150284/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150284.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150284",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150284/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150284",
+ "id": 741993192,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150284/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150284/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150284/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150284/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150284/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150284/languages",
+ "license": {
+ "key": "bsd-3-clause",
+ "name": "BSD 3-Clause \"New\" or \"Revised\" License",
+ "node_id": "MDc6TGljZW5zZTU=",
+ "spdx_id": "BSD-3-Clause",
+ "url": "https://api.github.com/licenses/bsd-3-clause"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150284/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150284/milestones{/number}",
+ "mirror_url": null,
+ "name": "150284",
+ "node_id": "R_kgDOLDnq6A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150284/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150284/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150284/releases{/id}",
+ "size": 229,
+ "ssh_url": "git@github.com:OpenSourceBrain/150284.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150284/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150284/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150284/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150284/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150284",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150284/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150284/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150284/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150284",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150288": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150288/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150288/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150288/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150288/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150288.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150288/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150288/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150288/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150288/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150288/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150288/contributors",
+ "created_at": "2024-01-11T14:40:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150288/deployments",
+ "description": "A 1000 cell network model for Lateral Amygdala (Kim et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150288/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150288/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150288/forks",
+ "full_name": "OpenSourceBrain/150288",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150288/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150288/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150288/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150288.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150288",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150288/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150288",
+ "id": 741993214,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150288/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150288/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150288/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150288/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150288/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150288/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150288/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150288/milestones{/number}",
+ "mirror_url": null,
+ "name": "150288",
+ "node_id": "R_kgDOLDnq_g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150288/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150288/pulls{/number}",
+ "pushed_at": "2023-07-08T15:39:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150288/releases{/id}",
+ "size": 132,
+ "ssh_url": "git@github.com:OpenSourceBrain/150288.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150288/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150288/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150288/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150288/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150288",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150288/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150288/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150288/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150288",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150437": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150437/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150437/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150437/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150437/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150437.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150437/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150437/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150437/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150437/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150437/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150437/contributors",
+ "created_at": "2024-01-11T14:40:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150437/deployments",
+ "description": "Network bursts in cultured NN result from different adaptive mechanisms (Masquelier & Deco 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150437/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150437/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150437/forks",
+ "full_name": "OpenSourceBrain/150437",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150437/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150437/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150437/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150437.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150437",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150437/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150437",
+ "id": 741993230,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150437/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150437/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150437/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150437/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150437/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150437/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150437/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150437/milestones{/number}",
+ "mirror_url": null,
+ "name": "150437",
+ "node_id": "R_kgDOLDnrDg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150437/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150437/pulls{/number}",
+ "pushed_at": "2019-05-31T02:13:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150437/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/150437.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150437/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150437/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150437/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150437/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150437",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150437/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150437/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150437/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150437",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150440": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150440/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150440/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150440/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150440/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150440.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150440/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150440/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150440/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150440/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150440/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150440/contributors",
+ "created_at": "2024-01-11T14:40:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150440/deployments",
+ "description": "Spontaneous weakly correlated excitation and inhibition (Tan et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150440/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150440/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150440/forks",
+ "full_name": "OpenSourceBrain/150440",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150440/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150440/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150440/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150440.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150440",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150440/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150440",
+ "id": 741993257,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150440/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150440/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150440/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150440/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150440/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150440/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150440/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150440/milestones{/number}",
+ "mirror_url": null,
+ "name": "150440",
+ "node_id": "R_kgDOLDnrKQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150440/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150440/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150440/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/150440.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150440/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150440/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150440/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150440/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150440",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150440/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150440/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150440/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150440",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150445": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150445/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150445/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150445/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150445/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150445.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150445/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150445/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150445/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150445/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150445/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150445/contributors",
+ "created_at": "2024-01-11T14:40:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150445/deployments",
+ "description": "Interaural time difference detection by slowly integrating neurons (Vasilkov Tikidji-Hamburyan 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150445/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150445/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150445/forks",
+ "full_name": "OpenSourceBrain/150445",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150445/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150445/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150445/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150445.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150445",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150445/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150445",
+ "id": 741993271,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150445/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150445/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150445/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150445/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150445/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150445/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150445/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150445/milestones{/number}",
+ "mirror_url": null,
+ "name": "150445",
+ "node_id": "R_kgDOLDnrNw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150445/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150445/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150445/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/150445.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150445/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150445/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150445/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150445/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150445",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150445/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150445/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150445/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150445",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150446": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150446/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150446/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150446/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150446/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150446.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150446/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150446/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150446/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150446/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150446/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150446/contributors",
+ "created_at": "2024-01-11T14:40:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150446/deployments",
+ "description": "Synaptic gating at axonal branches, and sharp-wave ripples with replay (Vladimirov et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150446/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150446/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150446/forks",
+ "full_name": "OpenSourceBrain/150446",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150446/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150446/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150446/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150446.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150446",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150446/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150446",
+ "id": 741993284,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150446/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150446/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150446/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150446/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150446/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150446/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150446/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150446/milestones{/number}",
+ "mirror_url": null,
+ "name": "150446",
+ "node_id": "R_kgDOLDnrRA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150446/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150446/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150446/releases{/id}",
+ "size": 546,
+ "ssh_url": "git@github.com:OpenSourceBrain/150446.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150446/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150446/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150446/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150446/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150446",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150446/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150446/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150446/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150446",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150538": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150538/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150538/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150538/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150538/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150538.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150538/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150538/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150538/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150538/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150538/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150538/contributors",
+ "created_at": "2024-01-11T14:40:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150538/deployments",
+ "description": "L5 pyr. cell spiking control by oscillatory inhibition in distal apical dendrites (Li et al 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150538/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150538/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150538/forks",
+ "full_name": "OpenSourceBrain/150538",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150538/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150538/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150538/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150538.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/150538",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150538/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150538",
+ "id": 741993295,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150538/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150538/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150538/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150538/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150538/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150538/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150538/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150538/milestones{/number}",
+ "mirror_url": null,
+ "name": "150538",
+ "node_id": "R_kgDOLDnrTw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150538/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150538/pulls{/number}",
+ "pushed_at": "2018-04-23T18:30:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150538/releases{/id}",
+ "size": 1819,
+ "ssh_url": "git@github.com:OpenSourceBrain/150538.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150538/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150538/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150538/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150538/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150538",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150538/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150538/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150538/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150538",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150551": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150551/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150551/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150551/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150551/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150551.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150551/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150551/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150551/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150551/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150551/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150551/contributors",
+ "created_at": "2024-01-11T14:40:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150551/deployments",
+ "description": "Calcium waves and mGluR-dependent synaptic plasticity in CA1 pyr. neurons (Ashhad & Narayanan 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150551/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150551/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150551/forks",
+ "full_name": "OpenSourceBrain/150551",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150551/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150551/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150551/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150551.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150551",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150551/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150551",
+ "id": 741993304,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150551/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150551/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150551/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150551/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150551/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150551/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150551/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150551/milestones{/number}",
+ "mirror_url": null,
+ "name": "150551",
+ "node_id": "R_kgDOLDnrWA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150551/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150551/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150551/releases{/id}",
+ "size": 135,
+ "ssh_url": "git@github.com:OpenSourceBrain/150551.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150551/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150551/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150551/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150551/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150551",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150551/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150551/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150551/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150551",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150556": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150556/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150556/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150556/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150556/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150556.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150556/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150556/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150556/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150556/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150556/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150556/contributors",
+ "created_at": "2024-01-11T14:40:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150556/deployments",
+ "description": "Single compartment Dorsal Lateral Medium Spiny Neuron w/ NMDA and AMPA (Biddell and Johnson 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150556/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150556/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150556/forks",
+ "full_name": "OpenSourceBrain/150556",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150556/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150556/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150556/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150556.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150556",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150556/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150556",
+ "id": 741993319,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150556/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150556/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150556/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150556/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150556/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150556/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150556/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150556/milestones{/number}",
+ "mirror_url": null,
+ "name": "150556",
+ "node_id": "R_kgDOLDnrZw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150556/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150556/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150556/releases{/id}",
+ "size": 30,
+ "ssh_url": "git@github.com:OpenSourceBrain/150556.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150556/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150556/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150556/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150556/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150556",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150556/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150556/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150556/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150556",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150621": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150621/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150621/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150621/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150621/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150621.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150621/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150621/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150621/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150621/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150621/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150621/contributors",
+ "created_at": "2024-01-11T14:40:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150621/deployments",
+ "description": "Striatal Output Neuron (Mahon, Deniau, Charpier, Delord 2000)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150621/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150621/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150621/forks",
+ "full_name": "OpenSourceBrain/150621",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150621/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150621/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150621/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150621.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150621",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150621/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150621",
+ "id": 741993336,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150621/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150621/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150621/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150621/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150621/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150621/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150621/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150621/milestones{/number}",
+ "mirror_url": null,
+ "name": "150621",
+ "node_id": "R_kgDOLDnreA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150621/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150621/pulls{/number}",
+ "pushed_at": "2019-05-31T02:11:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150621/releases{/id}",
+ "size": 105,
+ "ssh_url": "git@github.com:OpenSourceBrain/150621.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150621/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150621/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150621/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150621/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150621",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150621/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150621/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150621/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150621",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150622": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150622/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150622/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150622/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150622/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150622.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150622/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150622/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150622/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150622/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150622/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150622/contributors",
+ "created_at": "2024-01-11T14:40:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150622/deployments",
+ "description": "Revised opponent-channel model of auditory space cortical representation (Briley & Summerfield 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150622/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150622/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150622/forks",
+ "full_name": "OpenSourceBrain/150622",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150622/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150622/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150622/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150622.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150622",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150622/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150622",
+ "id": 741993348,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150622/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150622/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150622/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150622/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150622/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150622/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150622/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150622/milestones{/number}",
+ "mirror_url": null,
+ "name": "150622",
+ "node_id": "R_kgDOLDnrhA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150622/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150622/pulls{/number}",
+ "pushed_at": "2019-05-31T02:32:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150622/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/150622.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150622/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150622/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150622/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150622/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150622",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150622/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150622/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150622/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150622",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150635": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150635/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150635/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150635/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150635/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150635.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150635/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150635/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150635/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150635/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150635/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150635/contributors",
+ "created_at": "2024-01-11T14:40:30Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150635/deployments",
+ "description": "Stochastic calcium mechanisms cause dendritic calcium spike variability (Anwar et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150635/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150635/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150635/forks",
+ "full_name": "OpenSourceBrain/150635",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150635/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150635/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150635/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150635.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/150635",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150635/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150635",
+ "id": 741993365,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150635/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150635/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150635/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150635/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150635/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150635/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150635/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150635/milestones{/number}",
+ "mirror_url": null,
+ "name": "150635",
+ "node_id": "R_kgDOLDnrlQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150635/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150635/pulls{/number}",
+ "pushed_at": "2023-12-23T03:47:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150635/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/150635.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150635/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150635/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150635/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150635/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150635",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150635/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150635/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150635/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150635",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150678": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150678/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150678/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150678/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150678/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150678.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150678/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150678/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150678/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150678/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150678/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150678/contributors",
+ "created_at": "2024-01-11T14:40:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150678/deployments",
+ "description": "Auditory cortex layer IV network model (Beeman 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150678/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150678/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150678/forks",
+ "full_name": "OpenSourceBrain/150678",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150678/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150678/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150678/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150678.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150678",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150678/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150678",
+ "id": 741993379,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150678/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150678/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150678/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150678/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150678/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150678/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150678/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150678/milestones{/number}",
+ "mirror_url": null,
+ "name": "150678",
+ "node_id": "R_kgDOLDnrow",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150678/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150678/pulls{/number}",
+ "pushed_at": "2019-05-31T03:16:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150678/releases{/id}",
+ "size": 1722,
+ "ssh_url": "git@github.com:OpenSourceBrain/150678.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150678/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150678/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150678/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150678/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150678",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150678/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150678/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150678/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150678",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150691": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150691/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150691/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150691/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150691/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150691.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150691/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150691/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150691/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150691/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150691/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150691/contributors",
+ "created_at": "2024-01-11T14:40:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150691/deployments",
+ "description": "Model of arrhythmias in a cardiac cells network (Casaleggio et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150691/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150691/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150691/forks",
+ "full_name": "OpenSourceBrain/150691",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150691/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150691/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150691/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150691.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150691",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150691/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150691",
+ "id": 741993391,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150691/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150691/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150691/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150691/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150691/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150691/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150691/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150691/milestones{/number}",
+ "mirror_url": null,
+ "name": "150691",
+ "node_id": "R_kgDOLDnrrw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150691/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150691/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150691/releases{/id}",
+ "size": 54,
+ "ssh_url": "git@github.com:OpenSourceBrain/150691.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150691/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150691/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150691/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150691/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150691",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150691/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150691/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150691/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150691",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150697": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150697/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150697/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150697/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150697/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150697.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150697/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150697/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150697/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150697/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150697/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150697/contributors",
+ "created_at": "2024-01-11T14:40:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150697/deployments",
+ "description": "Crayfish hybrid experimental model (Chung et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150697/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150697/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150697/forks",
+ "full_name": "OpenSourceBrain/150697",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150697/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150697/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150697/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150697.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150697",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150697/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150697",
+ "id": 741993402,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150697/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150697/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150697/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150697/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150697/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150697/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150697/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150697/milestones{/number}",
+ "mirror_url": null,
+ "name": "150697",
+ "node_id": "R_kgDOLDnrug",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150697/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150697/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150697/releases{/id}",
+ "size": 5733,
+ "ssh_url": "git@github.com:OpenSourceBrain/150697.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150697/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150697/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150697/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150697/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150697",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150697/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150697/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150697/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150697",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150698": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150698/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150698/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150698/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150698/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150698.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150698/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150698/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150698/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150698/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150698/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150698/contributors",
+ "created_at": "2024-01-11T14:40:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150698/deployments",
+ "description": "Crayfish hybrid simulation model (Bacque-Cazenave et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150698/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150698/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150698/forks",
+ "full_name": "OpenSourceBrain/150698",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150698/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150698/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150698/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150698.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150698",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150698/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150698",
+ "id": 741993417,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150698/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150698/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150698/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150698/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150698/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150698/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150698/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150698/milestones{/number}",
+ "mirror_url": null,
+ "name": "150698",
+ "node_id": "R_kgDOLDnryQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150698/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150698/pulls{/number}",
+ "pushed_at": "2019-05-31T03:46:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150698/releases{/id}",
+ "size": 4313,
+ "ssh_url": "git@github.com:OpenSourceBrain/150698.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150698/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150698/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150698/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150698/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150698",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150698/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150698/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150698/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150698",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150804": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150804/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150804/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150804/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150804/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150804.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150804/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150804/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150804/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150804/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150804/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150804/contributors",
+ "created_at": "2024-01-11T14:40:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150804/deployments",
+ "description": "Computational modelling of channelrhodopsin-2 photocurrent characteristics (Stefanescu et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150804/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150804/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150804/forks",
+ "full_name": "OpenSourceBrain/150804",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150804/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150804/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150804/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150804.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150804",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150804/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150804",
+ "id": 741993428,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150804/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150804/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150804/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150804/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150804/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150804/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150804/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150804/milestones{/number}",
+ "mirror_url": null,
+ "name": "150804",
+ "node_id": "R_kgDOLDnr1A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150804/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150804/pulls{/number}",
+ "pushed_at": "2019-05-31T02:36:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150804/releases{/id}",
+ "size": 69,
+ "ssh_url": "git@github.com:OpenSourceBrain/150804.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150804/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150804/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150804/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150804/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150804",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150804/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150804/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150804/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150804",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150806": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150806/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150806/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150806/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150806/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150806.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150806/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150806/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150806/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150806/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150806/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150806/contributors",
+ "created_at": "2024-01-11T14:40:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150806/deployments",
+ "description": "Dynamic cortical interlaminar interactions (Carracedo et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150806/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150806/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150806/forks",
+ "full_name": "OpenSourceBrain/150806",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150806/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150806/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150806/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150806.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150806",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150806/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150806",
+ "id": 741993445,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150806/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150806/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150806/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150806/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150806/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150806/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150806/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150806/milestones{/number}",
+ "mirror_url": null,
+ "name": "150806",
+ "node_id": "R_kgDOLDnr5Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150806/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150806/pulls{/number}",
+ "pushed_at": "2019-05-31T02:11:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150806/releases{/id}",
+ "size": 114,
+ "ssh_url": "git@github.com:OpenSourceBrain/150806.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150806/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150806/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150806/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150806/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150806",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150806/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150806/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150806/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150806",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150846": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150846/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150846/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150846/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150846/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150846.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150846/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150846/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150846/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150846/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150846/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150846/contributors",
+ "created_at": "2024-01-11T14:40:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150846/deployments",
+ "description": "Grid cells from place cells (Castro & Aguiar, 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150846/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150846/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150846/forks",
+ "full_name": "OpenSourceBrain/150846",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150846/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150846/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150846/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150846.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150846",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150846/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150846",
+ "id": 741993462,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150846/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150846/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150846/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150846/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150846/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150846/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150846/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150846/milestones{/number}",
+ "mirror_url": null,
+ "name": "150846",
+ "node_id": "R_kgDOLDnr9g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150846/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150846/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150846/releases{/id}",
+ "size": 17301,
+ "ssh_url": "git@github.com:OpenSourceBrain/150846.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150846/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150846/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150846/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150846/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150846",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150846/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150846/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150846/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150846",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/150912": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/150912/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/150912/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/150912/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/150912/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/150912.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/150912/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/150912/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/150912/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/150912/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/150912/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/150912/contributors",
+ "created_at": "2024-01-11T14:40:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/150912/deployments",
+ "description": "Calcium influx during striatal upstates (Evans et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/150912/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/150912/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/150912/forks",
+ "full_name": "OpenSourceBrain/150912",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/150912/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/150912/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/150912/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/150912.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/150912",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/150912/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/150912",
+ "id": 741993474,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/150912/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/150912/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/150912/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/150912/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/150912/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/150912/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/150912/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/150912/milestones{/number}",
+ "mirror_url": null,
+ "name": "150912",
+ "node_id": "R_kgDOLDnsAg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/150912/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/150912/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/150912/releases{/id}",
+ "size": 83,
+ "ssh_url": "git@github.com:OpenSourceBrain/150912.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/150912/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/150912/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/150912/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/150912/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/150912",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/150912/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/150912/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/150912/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/150912",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151126": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151126/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151126/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151126/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151126/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151126.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151126/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151126/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151126/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151126/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151126/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151126/contributors",
+ "created_at": "2024-01-11T14:40:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151126/deployments",
+ "description": "Effects of increasing CREB on storage and recall processes in a CA1 network (Bianchi et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151126/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151126/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151126/forks",
+ "full_name": "OpenSourceBrain/151126",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151126/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151126/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151126/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151126.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151126",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151126/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151126",
+ "id": 741993488,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151126/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151126/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151126/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151126/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151126/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151126/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151126/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151126/milestones{/number}",
+ "mirror_url": null,
+ "name": "151126",
+ "node_id": "R_kgDOLDnsEA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151126/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151126/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151126/releases{/id}",
+ "size": 93,
+ "ssh_url": "git@github.com:OpenSourceBrain/151126.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151126/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151126/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151126/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151126/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151126",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151126/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151126/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151126/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151126",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151282": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151282/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151282/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151282/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151282/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151282.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151282/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151282/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151282/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151282/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151282/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151282/contributors",
+ "created_at": "2024-01-11T14:40:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151282/deployments",
+ "description": "Ih tunes oscillations in an In Silico CA3 model (Neymotin et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151282/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151282/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151282/forks",
+ "full_name": "OpenSourceBrain/151282",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151282/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151282/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151282/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151282.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/151282",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151282/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151282",
+ "id": 741993502,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151282/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151282/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151282/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151282/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151282/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151282/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151282/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151282/milestones{/number}",
+ "mirror_url": null,
+ "name": "151282",
+ "node_id": "R_kgDOLDnsHg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151282/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151282/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151282/releases{/id}",
+ "size": 223,
+ "ssh_url": "git@github.com:OpenSourceBrain/151282.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151282/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151282/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151282/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151282/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151282",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151282/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151282/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151282/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151282",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151338": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151338/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151338/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151338/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151338/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151338.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151338/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151338/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151338/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151338/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151338/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151338/contributors",
+ "created_at": "2024-01-11T14:40:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151338/deployments",
+ "description": "Gating of steering signals through phasic modulation of reticulospinal neurons (Kozlov et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151338/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151338/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151338/forks",
+ "full_name": "OpenSourceBrain/151338",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151338/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151338/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151338/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151338.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151338",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151338/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151338",
+ "id": 741993519,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151338/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151338/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151338/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151338/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151338/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151338/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151338/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151338/milestones{/number}",
+ "mirror_url": null,
+ "name": "151338",
+ "node_id": "R_kgDOLDnsLw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151338/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151338/pulls{/number}",
+ "pushed_at": "2019-05-31T02:17:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151338/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/151338.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151338/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151338/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151338/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151338/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151338",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151338/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151338/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151338/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151338",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151404": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151404/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151404/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151404/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151404/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151404.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151404/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151404/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151404/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151404/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151404/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151404/contributors",
+ "created_at": "2024-01-11T14:40:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151404/deployments",
+ "description": "Excitatory synaptic interactions in pyramidal neuron dendrites (Behabadi et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151404/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151404/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151404/forks",
+ "full_name": "OpenSourceBrain/151404",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151404/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151404/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151404/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151404.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151404",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151404/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151404",
+ "id": 741993539,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151404/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151404/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151404/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151404/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151404/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151404/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151404/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151404/milestones{/number}",
+ "mirror_url": null,
+ "name": "151404",
+ "node_id": "R_kgDOLDnsQw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151404/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151404/pulls{/number}",
+ "pushed_at": "2023-11-28T20:45:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151404/releases{/id}",
+ "size": 85,
+ "ssh_url": "git@github.com:OpenSourceBrain/151404.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151404/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151404/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151404/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151404/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151404",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151404/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151404/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151404/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151404",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151443": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151443/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151443/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151443/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151443/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151443.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151443/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151443/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151443/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151443/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151443/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151443/contributors",
+ "created_at": "2024-01-11T14:40:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151443/deployments",
+ "description": "Recurrent discharge in a reduced model of cat spinal motoneuron (Balbi et al, 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151443/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151443/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151443/forks",
+ "full_name": "OpenSourceBrain/151443",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151443/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151443/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151443/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151443.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151443",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151443/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151443",
+ "id": 741993558,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151443/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151443/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151443/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151443/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151443/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151443/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151443/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151443/milestones{/number}",
+ "mirror_url": null,
+ "name": "151443",
+ "node_id": "R_kgDOLDnsVg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151443/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151443/pulls{/number}",
+ "pushed_at": "2019-05-31T04:28:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151443/releases{/id}",
+ "size": 14,
+ "ssh_url": "git@github.com:OpenSourceBrain/151443.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151443/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151443/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151443/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151443/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151443",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151443/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151443/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151443/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151443",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151458": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151458/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151458/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151458/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151458/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151458.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151458/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151458/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151458/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151458/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151458/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151458/contributors",
+ "created_at": "2024-01-11T14:40:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151458/deployments",
+ "description": "Calcium response prediction in the striatal spines depending on input timing (Nakano et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151458/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151458/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151458/forks",
+ "full_name": "OpenSourceBrain/151458",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151458/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151458/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151458/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151458.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/151458",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151458/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151458",
+ "id": 741993570,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151458/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151458/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151458/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151458/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151458/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151458/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151458/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151458/milestones{/number}",
+ "mirror_url": null,
+ "name": "151458",
+ "node_id": "R_kgDOLDnsYg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151458/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151458/pulls{/number}",
+ "pushed_at": "2023-11-28T20:46:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151458/releases{/id}",
+ "size": 100,
+ "ssh_url": "git@github.com:OpenSourceBrain/151458.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151458/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151458/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151458/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151458/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151458",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151458/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151458/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151458/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:40:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151458",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151460": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151460/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151460/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151460/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151460/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151460.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151460/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151460/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151460/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151460/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151460/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151460/contributors",
+ "created_at": "2024-01-11T14:40:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151460/deployments",
+ "description": "DBS of a multi-compartment model of subthalamic nucleus projection neurons (Miocinovic et al. 2006)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151460/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151460/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151460/forks",
+ "full_name": "OpenSourceBrain/151460",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151460/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151460/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151460/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151460.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151460",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151460/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151460",
+ "id": 741993588,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151460/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151460/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151460/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151460/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151460/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151460/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151460/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151460/milestones{/number}",
+ "mirror_url": null,
+ "name": "151460",
+ "node_id": "R_kgDOLDnsdA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151460/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151460/pulls{/number}",
+ "pushed_at": "2023-11-28T20:46:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151460/releases{/id}",
+ "size": 2524,
+ "ssh_url": "git@github.com:OpenSourceBrain/151460.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151460/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151460/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151460/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151460/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151460",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151460/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151460/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151460/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151460",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151482": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151482/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151482/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151482/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151482/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151482.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151482/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151482/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151482/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151482/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151482/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151482/contributors",
+ "created_at": "2024-01-11T14:41:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151482/deployments",
+ "description": "Sympathetic Preganglionic Neurone (Briant et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151482/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151482/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151482/forks",
+ "full_name": "OpenSourceBrain/151482",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151482/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151482/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151482/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151482.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151482",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151482/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151482",
+ "id": 741993604,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151482/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151482/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151482/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151482/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151482/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151482/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151482/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151482/milestones{/number}",
+ "mirror_url": null,
+ "name": "151482",
+ "node_id": "R_kgDOLDnshA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151482/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151482/pulls{/number}",
+ "pushed_at": "2019-05-31T04:31:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151482/releases{/id}",
+ "size": 1109,
+ "ssh_url": "git@github.com:OpenSourceBrain/151482.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151482/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151482/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151482/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151482/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151482",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151482/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151482/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151482/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151482",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151483": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151483/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151483/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151483/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151483/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151483.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151483/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151483/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151483/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151483/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151483/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151483/contributors",
+ "created_at": "2024-01-11T14:41:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151483/deployments",
+ "description": "Simulating ion channel noise in an auditory brainstem neuron model (Schmerl & McDonnell 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151483/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151483/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151483/forks",
+ "full_name": "OpenSourceBrain/151483",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151483/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151483/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151483/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151483.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151483",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151483/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151483",
+ "id": 741993625,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151483/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151483/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151483/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151483/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151483/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151483/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151483/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151483/milestones{/number}",
+ "mirror_url": null,
+ "name": "151483",
+ "node_id": "R_kgDOLDnsmQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151483/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151483/pulls{/number}",
+ "pushed_at": "2019-05-31T04:50:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151483/releases{/id}",
+ "size": 14,
+ "ssh_url": "git@github.com:OpenSourceBrain/151483.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151483/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151483/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151483/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151483/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151483",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151483/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151483/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151483/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151483",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151549": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151549/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151549/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151549/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151549/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151549.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151549/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151549/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151549/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151549/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151549/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151549/contributors",
+ "created_at": "2024-01-11T14:41:06Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151549/deployments",
+ "description": "Voltage and light-sensitive Channelrhodopsin-2 model (ChR2) (Williams et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151549/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151549/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151549/forks",
+ "full_name": "OpenSourceBrain/151549",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151549/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151549/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151549/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151549.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/151549",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151549/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151549",
+ "id": 741993643,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151549/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151549/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151549/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151549/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151549/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151549/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151549/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151549/milestones{/number}",
+ "mirror_url": null,
+ "name": "151549",
+ "node_id": "R_kgDOLDnsqw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151549/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151549/pulls{/number}",
+ "pushed_at": "2023-12-23T03:47:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151549/releases{/id}",
+ "size": 128,
+ "ssh_url": "git@github.com:OpenSourceBrain/151549.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151549/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151549/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151549/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151549/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151549",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151549/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151549/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151549/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151549",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151677": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151677/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151677/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151677/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151677/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151677.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151677/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151677/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151677/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151677/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151677/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151677/contributors",
+ "created_at": "2024-01-11T14:41:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151677/deployments",
+ "description": "Tapered whiskers are required for active tactile sensation (Hires et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151677/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151677/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151677/forks",
+ "full_name": "OpenSourceBrain/151677",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151677/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151677/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151677/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151677.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151677",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151677/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151677",
+ "id": 741993662,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151677/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151677/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151677/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151677/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151677/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151677/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151677/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151677/milestones{/number}",
+ "mirror_url": null,
+ "name": "151677",
+ "node_id": "R_kgDOLDnsvg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151677/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151677/pulls{/number}",
+ "pushed_at": "2019-05-31T02:38:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151677/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/151677.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151677/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151677/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151677/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151677/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151677",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151677/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151677/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151677/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151677",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151681": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151681/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151681/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151681/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151681/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151681.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151681/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151681/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151681/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151681/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151681/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151681/contributors",
+ "created_at": "2024-01-11T14:41:10Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151681/deployments",
+ "description": "3D model of the olfactory bulb (Migliore et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151681/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151681/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151681/forks",
+ "full_name": "OpenSourceBrain/151681",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151681/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151681/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151681/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151681.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151681",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151681/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151681",
+ "id": 741993679,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151681/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151681/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151681/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151681/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151681/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151681/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151681/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151681/milestones{/number}",
+ "mirror_url": null,
+ "name": "151681",
+ "node_id": "R_kgDOLDnszw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151681/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151681/pulls{/number}",
+ "pushed_at": "2019-05-31T04:51:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151681/releases{/id}",
+ "size": 50,
+ "ssh_url": "git@github.com:OpenSourceBrain/151681.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151681/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151681/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151681/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151681/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151681",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151681/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151681/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151681/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151681",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151685": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151685/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151685/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151685/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151685/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151685.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151685/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151685/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151685/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151685/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151685/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151685/contributors",
+ "created_at": "2024-01-11T14:41:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151685/deployments",
+ "description": "Current Dipole in Laminar Neocortex (Lee et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151685/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151685/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151685/forks",
+ "full_name": "OpenSourceBrain/151685",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151685/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151685/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151685/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151685.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151685",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151685/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151685",
+ "id": 741993689,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151685/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151685/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151685/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151685/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151685/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151685/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151685/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151685/milestones{/number}",
+ "mirror_url": null,
+ "name": "151685",
+ "node_id": "R_kgDOLDns2Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151685/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151685/pulls{/number}",
+ "pushed_at": "2019-05-31T04:53:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151685/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/151685.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151685/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151685/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151685/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151685/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151685",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151685/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151685/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151685/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151685",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151686": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151686/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151686/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151686/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151686/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151686.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151686/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151686/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151686/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151686/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151686/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151686/contributors",
+ "created_at": "2024-01-11T14:41:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151686/deployments",
+ "description": "Stochastic model of the olfactory cilium transduction and adaptation (Antunes et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151686/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151686/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151686/forks",
+ "full_name": "OpenSourceBrain/151686",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151686/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151686/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151686/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151686.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/151686",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151686/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151686",
+ "id": 741993708,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151686/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151686/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151686/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151686/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151686/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151686/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151686/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151686/milestones{/number}",
+ "mirror_url": null,
+ "name": "151686",
+ "node_id": "R_kgDOLDns7A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151686/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151686/pulls{/number}",
+ "pushed_at": "2018-04-23T18:32:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151686/releases{/id}",
+ "size": 98,
+ "ssh_url": "git@github.com:OpenSourceBrain/151686.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151686/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151686/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151686/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151686/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151686",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151686/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151686/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151686/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151686",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151692": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151692/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151692/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151692/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151692/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151692.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151692/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151692/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151692/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151692/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151692/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151692/contributors",
+ "created_at": "2024-01-11T14:41:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151692/deployments",
+ "description": "Statistics of symmetry measure for networks of neurons (Esposito et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151692/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151692/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151692/forks",
+ "full_name": "OpenSourceBrain/151692",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151692/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151692/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151692/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151692.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151692",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151692/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151692",
+ "id": 741993727,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151692/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151692/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151692/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151692/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151692/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151692/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151692/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151692/milestones{/number}",
+ "mirror_url": null,
+ "name": "151692",
+ "node_id": "R_kgDOLDns_w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151692/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151692/pulls{/number}",
+ "pushed_at": "2019-05-31T05:03:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151692/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/151692.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151692/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151692/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151692/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151692/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151692",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151692/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151692/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151692/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151692",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151731": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151731/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151731/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151731/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151731/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151731.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151731/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151731/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151731/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151731/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151731/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151731/contributors",
+ "created_at": "2024-01-11T14:41:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151731/deployments",
+ "description": "CA1 pyramidal neurons: effect of external electric field from power lines (Cavarretta et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151731/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151731/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151731/forks",
+ "full_name": "OpenSourceBrain/151731",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151731/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151731/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151731/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151731.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151731",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151731/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151731",
+ "id": 741993735,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151731/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151731/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151731/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151731/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151731/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151731/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151731/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151731/milestones{/number}",
+ "mirror_url": null,
+ "name": "151731",
+ "node_id": "R_kgDOLDntBw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151731/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151731/pulls{/number}",
+ "pushed_at": "2019-05-31T05:05:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151731/releases{/id}",
+ "size": 64,
+ "ssh_url": "git@github.com:OpenSourceBrain/151731.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151731/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151731/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151731/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151731/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151731",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151731/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151731/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151731/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151731",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151817": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151817/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151817/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151817/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151817/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151817.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151817/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151817/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151817/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151817/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151817/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151817/contributors",
+ "created_at": "2024-01-11T14:41:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151817/deployments",
+ "description": "Model of repetitive firing in Grueneberg ganglion olfactory neurons (Liu et al., 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151817/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151817/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151817/forks",
+ "full_name": "OpenSourceBrain/151817",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151817/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151817/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151817/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151817.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151817",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151817/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151817",
+ "id": 741993745,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151817/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151817/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151817/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151817/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151817/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151817/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151817/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151817/milestones{/number}",
+ "mirror_url": null,
+ "name": "151817",
+ "node_id": "R_kgDOLDntEQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151817/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151817/pulls{/number}",
+ "pushed_at": "2019-05-31T03:42:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151817/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/151817.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151817/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151817/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151817/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151817/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151817",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151817/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151817/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151817/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151817",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151825": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151825/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151825/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151825/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151825/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151825.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151825/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151825/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151825/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151825/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151825/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151825/contributors",
+ "created_at": "2024-01-11T14:41:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151825/deployments",
+ "description": "Ionic mechanisms of dendritic spikes (Almog and Korngreen 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151825/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151825/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151825/forks",
+ "full_name": "OpenSourceBrain/151825",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151825/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151825/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151825/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151825.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151825",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151825/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151825",
+ "id": 741993764,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151825/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151825/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151825/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151825/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151825/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151825/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151825/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151825/milestones{/number}",
+ "mirror_url": null,
+ "name": "151825",
+ "node_id": "R_kgDOLDntJA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151825/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151825/pulls{/number}",
+ "pushed_at": "2023-11-28T20:46:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151825/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/151825.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151825/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151825/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151825/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151825/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151825",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151825/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151825/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151825/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151825",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151945": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151945/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151945/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151945/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151945/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151945.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151945/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151945/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151945/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151945/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151945/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151945/contributors",
+ "created_at": "2024-01-11T14:41:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151945/deployments",
+ "description": "Electrodiffusive astrocytic and extracellular ion concentration dynamics model (Halnes et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151945/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151945/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151945/forks",
+ "full_name": "OpenSourceBrain/151945",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151945/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151945/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151945/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151945.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151945",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151945/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151945",
+ "id": 741993776,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151945/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151945/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151945/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151945/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151945/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151945/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151945/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151945/milestones{/number}",
+ "mirror_url": null,
+ "name": "151945",
+ "node_id": "R_kgDOLDntMA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151945/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151945/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151945/releases{/id}",
+ "size": 160,
+ "ssh_url": "git@github.com:OpenSourceBrain/151945.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151945/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151945/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151945/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151945/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151945",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151945/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151945/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151945/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151945",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151949": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151949/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151949/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151949/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151949/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151949.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151949/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151949/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151949/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151949/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151949/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151949/contributors",
+ "created_at": "2024-01-11T14:41:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151949/deployments",
+ "description": "DRt neuron model (Sousa et al., 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151949/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151949/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151949/forks",
+ "full_name": "OpenSourceBrain/151949",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151949/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151949/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151949/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151949.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151949",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151949/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151949",
+ "id": 741993785,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151949/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151949/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151949/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151949/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151949/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151949/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151949/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151949/milestones{/number}",
+ "mirror_url": null,
+ "name": "151949",
+ "node_id": "R_kgDOLDntOQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151949/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151949/pulls{/number}",
+ "pushed_at": "2019-05-31T03:45:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151949/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/151949.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151949/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151949/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151949/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151949/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151949",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151949/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151949/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151949/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151949",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/151951": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/151951/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/151951/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/151951/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/151951/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/151951.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/151951/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/151951/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/151951/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/151951/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/151951/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/151951/contributors",
+ "created_at": "2024-01-11T14:41:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/151951/deployments",
+ "description": "Mechanisms for stable, robust, and adaptive development of orientation maps (Stevens et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/151951/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/151951/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/151951/forks",
+ "full_name": "OpenSourceBrain/151951",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/151951/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/151951/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/151951/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/151951.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/151951",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/151951/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/151951",
+ "id": 741993797,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/151951/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/151951/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/151951/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/151951/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/151951/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/151951/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/151951/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/151951/milestones{/number}",
+ "mirror_url": null,
+ "name": "151951",
+ "node_id": "R_kgDOLDntRQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/151951/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/151951/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/151951/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/151951.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/151951/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/151951/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/151951/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/151951/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/151951",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/151951/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/151951/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/151951/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/151951",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152028": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152028/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152028/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152028/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152028/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152028.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152028/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152028/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152028/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152028/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152028/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152028/contributors",
+ "created_at": "2024-01-11T14:41:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152028/deployments",
+ "description": "Drosophila 3rd instar larval aCC motoneuron (Gunay et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152028/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152028/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152028/forks",
+ "full_name": "OpenSourceBrain/152028",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152028/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152028/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152028/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152028.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152028",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152028/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152028",
+ "id": 741993808,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152028/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152028/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152028/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152028/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152028/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152028/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152028/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152028/milestones{/number}",
+ "mirror_url": null,
+ "name": "152028",
+ "node_id": "R_kgDOLDntUA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152028/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152028/pulls{/number}",
+ "pushed_at": "2019-05-31T04:32:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152028/releases{/id}",
+ "size": 6639,
+ "ssh_url": "git@github.com:OpenSourceBrain/152028.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152028/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152028/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152028/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152028/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152028",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152028/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152028/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152028/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152028",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152111": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152111/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152111/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152111/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152111/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152111.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152111/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152111/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152111/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152111/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152111/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152111/contributors",
+ "created_at": "2024-01-11T14:41:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152111/deployments",
+ "description": "Olfactory bulb juxtaglomerular models (Carey et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152111/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152111/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152111/forks",
+ "full_name": "OpenSourceBrain/152111",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152111/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152111/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152111/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152111.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152111",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152111/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152111",
+ "id": 741993818,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152111/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152111/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152111/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152111/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152111/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152111/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152111/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152111/milestones{/number}",
+ "mirror_url": null,
+ "name": "152111",
+ "node_id": "R_kgDOLDntWg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152111/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152111/pulls{/number}",
+ "pushed_at": "2019-05-31T03:44:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152111/releases{/id}",
+ "size": 14642,
+ "ssh_url": "git@github.com:OpenSourceBrain/152111.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152111/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152111/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152111/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152111/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152111",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152111/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152111/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152111/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152111",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152112": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152112/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152112/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152112/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152112/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152112.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152112/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152112/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152112/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152112/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152112/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152112/contributors",
+ "created_at": "2024-01-11T14:41:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152112/deployments",
+ "description": "A model of local field potentials generated by medial superior olive neurons (Goldwyn et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152112/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152112/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152112/forks",
+ "full_name": "OpenSourceBrain/152112",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152112/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152112/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152112/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152112.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152112",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152112/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152112",
+ "id": 741993832,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152112/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152112/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152112/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152112/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152112/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152112/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152112/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152112/milestones{/number}",
+ "mirror_url": null,
+ "name": "152112",
+ "node_id": "R_kgDOLDntaA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152112/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152112/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152112/releases{/id}",
+ "size": 8,
+ "ssh_url": "git@github.com:OpenSourceBrain/152112.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152112/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152112/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152112/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152112/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152112",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152112/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152112/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152112/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152112",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152113": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152113/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152113/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152113/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152113/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152113.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152113/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152113/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152113/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152113/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152113/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152113/contributors",
+ "created_at": "2024-01-11T14:41:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152113/deployments",
+ "description": "Basal ganglia-corticothalamic (BGCT) network (Chen et al., 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152113/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152113/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152113/forks",
+ "full_name": "OpenSourceBrain/152113",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152113/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152113/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152113/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152113.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152113",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152113/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152113",
+ "id": 741993855,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152113/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152113/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152113/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152113/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152113/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152113/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152113/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152113/milestones{/number}",
+ "mirror_url": null,
+ "name": "152113",
+ "node_id": "R_kgDOLDntfw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152113/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152113/pulls{/number}",
+ "pushed_at": "2019-05-31T03:42:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152113/releases{/id}",
+ "size": 3361,
+ "ssh_url": "git@github.com:OpenSourceBrain/152113.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152113/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152113/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152113/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152113/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152113",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152113/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152113/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152113/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152113",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152197": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152197/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152197/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152197/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152197/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152197.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152197/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152197/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152197/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152197/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152197/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152197/contributors",
+ "created_at": "2024-01-11T14:41:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152197/deployments",
+ "description": "Simulated cortical color opponent receptive fields self-organize via STDP (Eguchi et al., 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152197/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152197/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152197/forks",
+ "full_name": "OpenSourceBrain/152197",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152197/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152197/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152197/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152197.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152197",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152197/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152197",
+ "id": 741993866,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152197/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152197/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152197/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152197/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152197/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152197/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152197/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152197/milestones{/number}",
+ "mirror_url": null,
+ "name": "152197",
+ "node_id": "R_kgDOLDntig",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152197/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152197/pulls{/number}",
+ "pushed_at": "2019-05-31T02:37:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152197/releases{/id}",
+ "size": 14741,
+ "ssh_url": "git@github.com:OpenSourceBrain/152197.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152197/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152197/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152197/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152197/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152197",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152197/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152197/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152197/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152197",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152200": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152200/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152200/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152200/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152200/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152200.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152200/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152200/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152200/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152200/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152200/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152200/contributors",
+ "created_at": "2024-01-11T14:41:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152200/deployments",
+ "description": "SN-MN neurons of Aplysia (Zhou et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152200/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152200/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152200/forks",
+ "full_name": "OpenSourceBrain/152200",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152200/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152200/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152200/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152200.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152200",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152200/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152200",
+ "id": 741993883,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152200/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152200/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152200/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152200/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152200/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152200/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152200/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152200/milestones{/number}",
+ "mirror_url": null,
+ "name": "152200",
+ "node_id": "R_kgDOLDntmw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152200/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152200/pulls{/number}",
+ "pushed_at": "2019-05-31T04:27:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152200/releases{/id}",
+ "size": 19,
+ "ssh_url": "git@github.com:OpenSourceBrain/152200.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152200/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152200/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152200/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152200/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152200",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152200/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152200/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152200/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152200",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152292": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152292/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152292/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152292/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152292/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152292.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152292/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152292/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152292/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152292/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152292/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152292/contributors",
+ "created_at": "2024-01-11T14:41:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152292/deployments",
+ "description": "PreBotzinger Complex inspiratory neuron with NaP and CAN currents (Park and Rubin 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152292/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152292/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152292/forks",
+ "full_name": "OpenSourceBrain/152292",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152292/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152292/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152292/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152292.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152292",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152292/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152292",
+ "id": 741993905,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152292/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152292/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152292/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152292/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152292/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152292/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152292/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152292/milestones{/number}",
+ "mirror_url": null,
+ "name": "152292",
+ "node_id": "R_kgDOLDntsQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152292/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152292/pulls{/number}",
+ "pushed_at": "2022-02-18T15:16:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152292/releases{/id}",
+ "size": 71,
+ "ssh_url": "git@github.com:OpenSourceBrain/152292.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152292/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152292/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152292/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152292/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152292",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152292/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152292/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152292/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152292",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152539": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152539/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152539/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152539/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152539/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152539.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152539/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152539/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152539/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152539/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152539/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152539/contributors",
+ "created_at": "2024-01-11T14:41:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152539/deployments",
+ "description": "I&F recurrent networks with current- or conductance-based synapses (Cavallari et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152539/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152539/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152539/forks",
+ "full_name": "OpenSourceBrain/152539",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152539/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152539/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152539/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152539.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152539",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152539/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152539",
+ "id": 741993922,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152539/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152539/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152539/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152539/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152539/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152539/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152539/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152539/milestones{/number}",
+ "mirror_url": null,
+ "name": "152539",
+ "node_id": "R_kgDOLDntwg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152539/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152539/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152539/releases{/id}",
+ "size": 117,
+ "ssh_url": "git@github.com:OpenSourceBrain/152539.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152539/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152539/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152539/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152539/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152539",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152539/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152539/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152539/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152539",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152625": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152625/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152625/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152625/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152625/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152625.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152625/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152625/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152625/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152625/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152625/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152625/contributors",
+ "created_at": "2024-01-11T14:41:47Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152625/deployments",
+ "description": "Software for teaching the Hodgkin-Huxley model (Hernandez & Zurek 2013) (SENB written in NEURON hoc)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152625/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152625/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152625/forks",
+ "full_name": "OpenSourceBrain/152625",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152625/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152625/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152625/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152625.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/152625",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152625/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152625",
+ "id": 741993932,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152625/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152625/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152625/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152625/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152625/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152625/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152625/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152625/milestones{/number}",
+ "mirror_url": null,
+ "name": "152625",
+ "node_id": "R_kgDOLDntzA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152625/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152625/pulls{/number}",
+ "pushed_at": "2023-12-23T03:47:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152625/releases{/id}",
+ "size": 207,
+ "ssh_url": "git@github.com:OpenSourceBrain/152625.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152625/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152625/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152625/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152625/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152625",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152625/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152625/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152625/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152625",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152636": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152636/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152636/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152636/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152636/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152636.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152636/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152636/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152636/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152636/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152636/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152636/contributors",
+ "created_at": "2024-01-11T14:41:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152636/deployments",
+ "description": "Temperature-Dependent Pyloric Pacemaker Kernel (Caplan JS et al., 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152636/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152636/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152636/forks",
+ "full_name": "OpenSourceBrain/152636",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152636/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152636/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152636/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152636.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152636",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152636/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152636",
+ "id": 741993957,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152636/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152636/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152636/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152636/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152636/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152636/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152636/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152636/milestones{/number}",
+ "mirror_url": null,
+ "name": "152636",
+ "node_id": "R_kgDOLDnt5Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152636/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152636/pulls{/number}",
+ "pushed_at": "2019-05-31T02:38:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152636/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/152636.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152636/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152636/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152636/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152636/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152636",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152636/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152636/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152636/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152636",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152788": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152788/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152788/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152788/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152788/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152788.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152788/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152788/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152788/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152788/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152788/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152788/contributors",
+ "created_at": "2024-01-11T14:41:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152788/deployments",
+ "description": "Resource competition in growing neurites (Hjorth et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152788/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152788/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152788/forks",
+ "full_name": "OpenSourceBrain/152788",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152788/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152788/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152788/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152788.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152788",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152788/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152788",
+ "id": 741993971,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152788/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152788/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152788/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152788/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152788/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152788/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152788/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152788/milestones{/number}",
+ "mirror_url": null,
+ "name": "152788",
+ "node_id": "R_kgDOLDnt8w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152788/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152788/pulls{/number}",
+ "pushed_at": "2023-11-28T20:46:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152788/releases{/id}",
+ "size": 648,
+ "ssh_url": "git@github.com:OpenSourceBrain/152788.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152788/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152788/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152788/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152788/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152788",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152788/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152788/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152788/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152788",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152897": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152897/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152897/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152897/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152897/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152897.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152897/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152897/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152897/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152897/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152897/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152897/contributors",
+ "created_at": "2024-01-11T14:41:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152897/deployments",
+ "description": "Squid axon (Hodgkin, Huxley 1952) used in (Chen et al 2010) (R language)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152897/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152897/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152897/forks",
+ "full_name": "OpenSourceBrain/152897",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152897/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152897/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152897/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152897.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152897",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152897/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152897",
+ "id": 741993985,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152897/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152897/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152897/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152897/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152897/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152897/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152897/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152897/milestones{/number}",
+ "mirror_url": null,
+ "name": "152897",
+ "node_id": "R_kgDOLDnuAQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152897/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152897/pulls{/number}",
+ "pushed_at": "2019-05-31T03:32:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152897/releases{/id}",
+ "size": 143,
+ "ssh_url": "git@github.com:OpenSourceBrain/152897.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152897/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152897/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152897/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152897/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152897",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152897/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152897/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152897/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152897",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152913": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152913/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152913/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152913/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152913/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152913.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152913/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152913/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152913/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152913/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152913/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152913/contributors",
+ "created_at": "2024-01-11T14:41:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152913/deployments",
+ "description": "Modeling extracellular electrical stimulation (Tahayori et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152913/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152913/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152913/forks",
+ "full_name": "OpenSourceBrain/152913",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152913/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152913/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152913/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152913.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152913",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152913/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152913",
+ "id": 741993998,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152913/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152913/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152913/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152913/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152913/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152913/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152913/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152913/milestones{/number}",
+ "mirror_url": null,
+ "name": "152913",
+ "node_id": "R_kgDOLDnuDg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152913/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152913/pulls{/number}",
+ "pushed_at": "2019-05-31T03:18:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152913/releases{/id}",
+ "size": 191,
+ "ssh_url": "git@github.com:OpenSourceBrain/152913.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152913/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152913/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152913/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152913/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152913",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152913/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152913/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152913/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152913",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/152966": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/152966/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/152966/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/152966/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/152966/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/152966.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/152966/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/152966/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/152966/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/152966/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/152966/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/152966/contributors",
+ "created_at": "2024-01-11T14:41:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/152966/deployments",
+ "description": "Ventricular cell model (Luo Rudy dynamic model) (Luo Rudy 1994) used in (Wang et al 2006) (XPP)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/152966/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/152966/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/152966/forks",
+ "full_name": "OpenSourceBrain/152966",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/152966/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/152966/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/152966/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/152966.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/152966",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/152966/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/152966",
+ "id": 741994011,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/152966/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/152966/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/152966/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/152966/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/152966/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/152966/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/152966/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/152966/milestones{/number}",
+ "mirror_url": null,
+ "name": "152966",
+ "node_id": "R_kgDOLDnuGw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/152966/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/152966/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/152966/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/152966.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/152966/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/152966/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/152966/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/152966/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/152966",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/152966/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/152966/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/152966/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:41:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/152966",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153030": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153030/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153030/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153030/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153030/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153030.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153030/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153030/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153030/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153030/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153030/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153030/contributors",
+ "created_at": "2024-01-11T14:41:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153030/deployments",
+ "description": "Squid axon: Bifurcation analysis of mode-locking (Lee & Kim 2006) (Gangal & Dar 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153030/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153030/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153030/forks",
+ "full_name": "OpenSourceBrain/153030",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153030/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153030/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153030/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153030.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153030",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153030/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153030",
+ "id": 741994023,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153030/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153030/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153030/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153030/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153030/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153030/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153030/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153030/milestones{/number}",
+ "mirror_url": null,
+ "name": "153030",
+ "node_id": "R_kgDOLDnuJw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153030/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153030/pulls{/number}",
+ "pushed_at": "2019-05-31T04:23:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153030/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/153030.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153030/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153030/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153030/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153030/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153030",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153030/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153030/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153030/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153030",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153092": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153092/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153092/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153092/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153092/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153092.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153092/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153092/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153092/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153092/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153092/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153092/contributors",
+ "created_at": "2024-01-11T14:42:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153092/deployments",
+ "description": "LGNcircuit: Minimal LGN network model of temporal processing of visual input (Norheim et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153092/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153092/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153092/forks",
+ "full_name": "OpenSourceBrain/153092",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153092/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153092/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153092/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153092.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153092",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153092/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153092",
+ "id": 741994038,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153092/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153092/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153092/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153092/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153092/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153092/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153092/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153092/milestones{/number}",
+ "mirror_url": null,
+ "name": "153092",
+ "node_id": "R_kgDOLDnuNg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153092/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153092/pulls{/number}",
+ "pushed_at": "2019-05-31T04:53:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153092/releases{/id}",
+ "size": 880,
+ "ssh_url": "git@github.com:OpenSourceBrain/153092.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153092/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153092/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153092/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153092/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153092",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153092/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153092/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153092/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153092",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153196": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153196/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153196/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153196/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153196/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153196.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153196/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153196/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153196/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153196/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153196/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153196/contributors",
+ "created_at": "2024-01-11T14:42:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153196/deployments",
+ "description": "Optical stimulation of a channelrhodopsin-2 positive pyramidal neuron model (Foutz et al 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153196/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153196/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153196/forks",
+ "full_name": "OpenSourceBrain/153196",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153196/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153196/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153196/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153196.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/153196",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153196/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153196",
+ "id": 741994049,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153196/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153196/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153196/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153196/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153196/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153196/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153196/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153196/milestones{/number}",
+ "mirror_url": null,
+ "name": "153196",
+ "node_id": "R_kgDOLDnuQQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153196/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153196/pulls{/number}",
+ "pushed_at": "2023-11-28T20:46:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153196/releases{/id}",
+ "size": 275,
+ "ssh_url": "git@github.com:OpenSourceBrain/153196.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153196/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153196/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153196/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153196/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153196",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153196/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153196/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153196/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153196",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153280": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153280/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153280/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153280/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153280/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153280.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153280/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153280/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153280/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153280/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153280/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153280/contributors",
+ "created_at": "2024-01-11T14:42:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153280/deployments",
+ "description": "Parvalbumin-positive basket cells differentiate among hippocampal pyramidal cells (Lee et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153280/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153280/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153280/forks",
+ "full_name": "OpenSourceBrain/153280",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153280/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153280/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153280/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153280.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153280",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153280/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153280",
+ "id": 741994079,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153280/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153280/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153280/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153280/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153280/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153280/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153280/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153280/milestones{/number}",
+ "mirror_url": null,
+ "name": "153280",
+ "node_id": "R_kgDOLDnuXw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153280/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153280/pulls{/number}",
+ "pushed_at": "2023-11-28T20:46:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153280/releases{/id}",
+ "size": 393,
+ "ssh_url": "git@github.com:OpenSourceBrain/153280.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153280/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153280/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153280/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153280/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153280",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153280/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153280/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153280/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153280",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153351": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153351/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153351/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153351/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153351/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153351.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153351/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153351/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153351/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153351/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153351/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153351/contributors",
+ "created_at": "2024-01-11T14:42:08Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153351/deployments",
+ "description": "Python-based toolkits for STEPS (Chen and De Schutter 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153351/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153351/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153351/forks",
+ "full_name": "OpenSourceBrain/153351",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153351/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153351/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153351/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153351.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/153351",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153351/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153351",
+ "id": 741994095,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153351/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153351/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153351/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153351/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153351/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153351/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153351/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153351/milestones{/number}",
+ "mirror_url": null,
+ "name": "153351",
+ "node_id": "R_kgDOLDnubw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153351/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153351/pulls{/number}",
+ "pushed_at": "2023-12-23T03:47:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153351/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/153351.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153351/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153351/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153351/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153351/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153351",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153351/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153351/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153351/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153351",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153355": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153355/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153355/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153355/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153355/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153355.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153355/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153355/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153355/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153355/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153355/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153355/contributors",
+ "created_at": "2024-01-11T14:42:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153355/deployments",
+ "description": "Leech Heart (HE) Motor Neuron conductances contributions to NN activity (Lamb & Calabrese 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153355/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153355/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153355/forks",
+ "full_name": "OpenSourceBrain/153355",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153355/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153355/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153355/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153355.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153355",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153355/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153355",
+ "id": 741994118,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153355/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153355/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153355/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153355/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153355/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153355/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153355/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153355/milestones{/number}",
+ "mirror_url": null,
+ "name": "153355",
+ "node_id": "R_kgDOLDnuhg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153355/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153355/pulls{/number}",
+ "pushed_at": "2023-11-28T20:48:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153355/releases{/id}",
+ "size": 5701,
+ "ssh_url": "git@github.com:OpenSourceBrain/153355.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153355/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153355/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153355/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153355/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153355",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153355/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153355/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153355/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153355",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153452": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153452/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153452/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153452/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153452/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153452.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153452/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153452/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153452/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153452/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153452/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153452/contributors",
+ "created_at": "2024-01-11T14:42:13Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153452/deployments",
+ "description": "A model for how correlation depends on the neuronal excitability type (Hong et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153452/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153452/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153452/forks",
+ "full_name": "OpenSourceBrain/153452",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153452/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153452/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153452/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153452.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/153452",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153452/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153452",
+ "id": 741994140,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153452/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153452/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153452/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153452/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153452/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153452/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153452/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153452/milestones{/number}",
+ "mirror_url": null,
+ "name": "153452",
+ "node_id": "R_kgDOLDnunA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153452/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153452/pulls{/number}",
+ "pushed_at": "2023-12-23T03:47:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153452/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/153452.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153452/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153452/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153452/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153452/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153452",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153452/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153452/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153452/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153452",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153573": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153573/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153573/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153573/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153573/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153573.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153573/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153573/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153573/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153573/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153573/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153573/contributors",
+ "created_at": "2024-01-11T14:42:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153573/deployments",
+ "description": "Striatal dopamine ramping: an explanation by reinforcement learning with decay (Morita & Kato, 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153573/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153573/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153573/forks",
+ "full_name": "OpenSourceBrain/153573",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153573/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153573/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153573/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153573.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153573",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153573/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153573",
+ "id": 741994170,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153573/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153573/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153573/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153573/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153573/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153573/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153573/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153573/milestones{/number}",
+ "mirror_url": null,
+ "name": "153573",
+ "node_id": "R_kgDOLDnuug",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153573/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153573/pulls{/number}",
+ "pushed_at": "2019-05-31T03:14:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153573/releases{/id}",
+ "size": 132,
+ "ssh_url": "git@github.com:OpenSourceBrain/153573.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153573/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153573/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153573/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153573/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153573",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153573/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153573/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153573/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153573",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153574": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153574/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153574/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153574/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153574/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153574.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153574/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153574/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153574/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153574/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153574/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153574/contributors",
+ "created_at": "2024-01-11T14:42:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153574/deployments",
+ "description": "Olfactory bulb microcircuits model with dual-layer inhibition (Gilra & Bhalla 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153574/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153574/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153574/forks",
+ "full_name": "OpenSourceBrain/153574",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153574/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153574/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153574/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153574.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153574",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153574/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153574",
+ "id": 741994191,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153574/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153574/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153574/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153574/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153574/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153574/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153574/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153574/milestones{/number}",
+ "mirror_url": null,
+ "name": "153574",
+ "node_id": "R_kgDOLDnuzw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153574/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153574/pulls{/number}",
+ "pushed_at": "2023-11-28T20:48:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153574/releases{/id}",
+ "size": 7920,
+ "ssh_url": "git@github.com:OpenSourceBrain/153574.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153574/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153574/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153574/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153574/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153574",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153574/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153574/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153574/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153574",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153633": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153633/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153633/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153633/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153633/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153633.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153633/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153633/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153633/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153633/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153633/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153633/contributors",
+ "created_at": "2024-01-11T14:42:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153633/deployments",
+ "description": "Fast global oscillations in networks of I&F neurons with low firing rates (Brunel and Hakim 1999)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153633/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153633/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153633/forks",
+ "full_name": "OpenSourceBrain/153633",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153633/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153633/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153633/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153633.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153633",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153633/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153633",
+ "id": 741994210,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153633/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153633/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153633/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153633/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153633/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153633/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153633/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153633/milestones{/number}",
+ "mirror_url": null,
+ "name": "153633",
+ "node_id": "R_kgDOLDnu4g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153633/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153633/pulls{/number}",
+ "pushed_at": "2019-05-31T03:31:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153633/releases{/id}",
+ "size": 63,
+ "ssh_url": "git@github.com:OpenSourceBrain/153633.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153633/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153633/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153633/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153633/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153633",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153633/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153633/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153633/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153633",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153635": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153635/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153635/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153635/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153635/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153635.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153635/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153635/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153635/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153635/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153635/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153635/contributors",
+ "created_at": "2024-01-11T14:42:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153635/deployments",
+ "description": "Adaptive exponential integrate-and-fire model (Brette & Gerstner 2005)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153635/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153635/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153635/forks",
+ "full_name": "OpenSourceBrain/153635",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153635/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153635/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153635/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153635.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153635",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153635/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153635",
+ "id": 741994225,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153635/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153635/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153635/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153635/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153635/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153635/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153635/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153635/milestones{/number}",
+ "mirror_url": null,
+ "name": "153635",
+ "node_id": "R_kgDOLDnu8Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153635/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153635/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153635/releases{/id}",
+ "size": 24,
+ "ssh_url": "git@github.com:OpenSourceBrain/153635.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153635/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153635/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153635/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153635/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153635",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153635/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153635/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153635/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153635",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153660": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153660/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153660/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153660/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153660/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153660.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153660/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153660/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153660/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153660/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153660/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153660/contributors",
+ "created_at": "2024-01-11T14:42:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153660/deployments",
+ "description": "A threshold equation for action potential initiation (Platkiewicz & Brette 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153660/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153660/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153660/forks",
+ "full_name": "OpenSourceBrain/153660",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153660/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153660/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153660/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153660.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153660",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153660/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153660",
+ "id": 741994235,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153660/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153660/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153660/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153660/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153660/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153660/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153660/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153660/milestones{/number}",
+ "mirror_url": null,
+ "name": "153660",
+ "node_id": "R_kgDOLDnu-w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153660/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153660/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153660/releases{/id}",
+ "size": 63,
+ "ssh_url": "git@github.com:OpenSourceBrain/153660.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153660/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153660/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153660/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153660/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153660",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153660/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153660/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153660/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153660",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153697": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153697/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153697/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153697/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153697/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153697.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153697/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153697/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153697/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153697/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153697/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153697/contributors",
+ "created_at": "2024-01-11T14:42:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153697/deployments",
+ "description": "Phase locking in leaky integrate-and-fire model (Brette 2004)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153697/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153697/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153697/forks",
+ "full_name": "OpenSourceBrain/153697",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153697/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153697/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153697/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153697.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153697",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153697/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153697",
+ "id": 741994247,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153697/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153697/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153697/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153697/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153697/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153697/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153697/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153697/milestones{/number}",
+ "mirror_url": null,
+ "name": "153697",
+ "node_id": "R_kgDOLDnvBw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153697/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153697/pulls{/number}",
+ "pushed_at": "2019-05-31T05:06:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153697/releases{/id}",
+ "size": 48,
+ "ssh_url": "git@github.com:OpenSourceBrain/153697.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153697/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153697/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153697/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153697/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153697",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153697/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153697/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153697/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153697",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153740": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153740/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153740/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153740/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153740/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153740.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153740/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153740/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153740/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153740/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153740/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153740/contributors",
+ "created_at": "2024-01-11T14:42:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153740/deployments",
+ "description": "Strategy for kinase transport by microtubules to nerve terminals (Koon et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153740/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153740/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153740/forks",
+ "full_name": "OpenSourceBrain/153740",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153740/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153740/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153740/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153740.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153740",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153740/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153740",
+ "id": 741994268,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153740/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153740/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153740/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153740/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153740/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153740/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153740/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153740/milestones{/number}",
+ "mirror_url": null,
+ "name": "153740",
+ "node_id": "R_kgDOLDnvHA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153740/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153740/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153740/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/153740.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153740/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153740/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153740/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153740/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153740",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153740/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153740/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153740/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153740",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153985": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153985/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153985/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153985/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153985/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153985.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153985/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153985/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153985/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153985/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153985/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153985/contributors",
+ "created_at": "2024-01-11T14:42:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153985/deployments",
+ "description": "Sensitivity of noisy neurons to coincident inputs (Rossant et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153985/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153985/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153985/forks",
+ "full_name": "OpenSourceBrain/153985",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153985/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153985/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153985/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153985.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153985",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153985/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153985",
+ "id": 741994290,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153985/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153985/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153985/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153985/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153985/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153985/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153985/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153985/milestones{/number}",
+ "mirror_url": null,
+ "name": "153985",
+ "node_id": "R_kgDOLDnvMg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153985/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153985/pulls{/number}",
+ "pushed_at": "2019-05-31T03:14:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153985/releases{/id}",
+ "size": 39,
+ "ssh_url": "git@github.com:OpenSourceBrain/153985.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153985/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153985/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153985/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153985/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153985",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153985/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153985/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153985/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153985",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153988": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153988/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153988/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153988/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153988/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153988.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153988/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153988/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153988/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153988/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153988/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153988/contributors",
+ "created_at": "2024-01-11T14:42:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153988/deployments",
+ "description": "Stable propagation of synchronous spiking in cortical neural networks (Diesmann et al 1999)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153988/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153988/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153988/forks",
+ "full_name": "OpenSourceBrain/153988",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153988/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153988/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153988/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153988.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153988",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153988/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153988",
+ "id": 741994309,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153988/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153988/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153988/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153988/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153988/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153988/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153988/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153988/milestones{/number}",
+ "mirror_url": null,
+ "name": "153988",
+ "node_id": "R_kgDOLDnvRQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153988/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153988/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153988/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/153988.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153988/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153988/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153988/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153988/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153988",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153988/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153988/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153988/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153988",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/153998": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/153998/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/153998/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/153998/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/153998/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/153998.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/153998/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/153998/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/153998/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/153998/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/153998/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/153998/contributors",
+ "created_at": "2024-01-11T14:42:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/153998/deployments",
+ "description": "Impact of fast Na channel inact. on AP threshold & synaptic integration (Platkiewicz & Brette 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/153998/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/153998/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/153998/forks",
+ "full_name": "OpenSourceBrain/153998",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/153998/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/153998/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/153998/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/153998.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/153998",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/153998/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/153998",
+ "id": 741994331,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/153998/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/153998/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/153998/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/153998/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/153998/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/153998/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/153998/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/153998/milestones{/number}",
+ "mirror_url": null,
+ "name": "153998",
+ "node_id": "R_kgDOLDnvWw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/153998/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/153998/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/153998/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/153998.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/153998/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/153998/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/153998/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/153998/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/153998",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/153998/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/153998/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/153998/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/153998",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154096": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154096/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154096/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154096/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154096/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154096.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154096/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154096/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154096/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154096/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154096/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154096/contributors",
+ "created_at": "2024-01-11T14:42:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154096/deployments",
+ "description": "Electrostimulation to reduce synaptic scaling driven progression of Alzheimers (Rowan et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154096/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154096/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154096/forks",
+ "full_name": "OpenSourceBrain/154096",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154096/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154096/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154096/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154096.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/154096",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154096/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154096",
+ "id": 741994348,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154096/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154096/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154096/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154096/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154096/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154096/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154096/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154096/milestones{/number}",
+ "mirror_url": null,
+ "name": "154096",
+ "node_id": "R_kgDOLDnvbA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154096/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154096/pulls{/number}",
+ "pushed_at": "2018-04-23T18:33:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154096/releases{/id}",
+ "size": 606,
+ "ssh_url": "git@github.com:OpenSourceBrain/154096.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154096/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154096/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154096/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154096/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154096",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154096/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154096/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154096/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154096",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154192": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154192/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154192/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154192/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154192/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154192.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154192/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154192/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154192/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154192/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154192/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154192/contributors",
+ "created_at": "2024-01-11T14:42:39Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154192/deployments",
+ "description": "Nonlinear neuronal computation based on physiologically plausible inputs (McFarland et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154192/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154192/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154192/forks",
+ "full_name": "OpenSourceBrain/154192",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154192/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154192/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154192/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154192.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/154192",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154192/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154192",
+ "id": 741994363,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154192/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154192/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154192/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154192/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154192/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154192/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154192/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154192/milestones{/number}",
+ "mirror_url": null,
+ "name": "154192",
+ "node_id": "R_kgDOLDnvew",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154192/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154192/pulls{/number}",
+ "pushed_at": "2023-12-23T03:47:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154192/releases{/id}",
+ "size": 767,
+ "ssh_url": "git@github.com:OpenSourceBrain/154192.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154192/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154192/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154192/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154192/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154192",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154192/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154192/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154192/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154192",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154198": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154198/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154198/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154198/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154198/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154198.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154198/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154198/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154198/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154198/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154198/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154198/contributors",
+ "created_at": "2024-01-11T14:42:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154198/deployments",
+ "description": "Theory of arachnid prey localization (Sturzl et al. 2000)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154198/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154198/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154198/forks",
+ "full_name": "OpenSourceBrain/154198",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154198/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154198/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154198/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154198.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154198",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154198/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154198",
+ "id": 741994383,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154198/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154198/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154198/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154198/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154198/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154198/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154198/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154198/milestones{/number}",
+ "mirror_url": null,
+ "name": "154198",
+ "node_id": "R_kgDOLDnvjw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154198/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154198/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154198/releases{/id}",
+ "size": 69,
+ "ssh_url": "git@github.com:OpenSourceBrain/154198.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154198/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154198/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154198/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154198/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154198",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154198/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154198/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154198/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154198",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154288": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154288/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154288/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154288/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154288/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154288.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154288/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154288/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154288/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154288/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154288/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154288/contributors",
+ "created_at": "2024-01-11T14:42:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154288/deployments",
+ "description": "Time-warp-invariant neuronal processing (Gutig & Sompolinsky 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154288/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154288/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154288/forks",
+ "full_name": "OpenSourceBrain/154288",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154288/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154288/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154288/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154288.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154288",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154288/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154288",
+ "id": 741994396,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154288/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154288/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154288/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154288/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154288/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154288/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154288/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154288/milestones{/number}",
+ "mirror_url": null,
+ "name": "154288",
+ "node_id": "R_kgDOLDnvnA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154288/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154288/pulls{/number}",
+ "pushed_at": "2019-05-31T04:31:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154288/releases{/id}",
+ "size": 208,
+ "ssh_url": "git@github.com:OpenSourceBrain/154288.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154288/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154288/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154288/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154288/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154288",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154288/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154288/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154288/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154288",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154293": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154293/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154293/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154293/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154293/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154293.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154293/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154293/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154293/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154293/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154293/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154293/contributors",
+ "created_at": "2024-01-11T14:42:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154293/deployments",
+ "description": "Reliability of spike timing is a general property of spiking model neurons (Brette & Guigon 2003)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154293/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154293/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154293/forks",
+ "full_name": "OpenSourceBrain/154293",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154293/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154293/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154293/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154293.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154293",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154293/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154293",
+ "id": 741994410,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154293/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154293/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154293/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154293/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154293/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154293/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154293/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154293/milestones{/number}",
+ "mirror_url": null,
+ "name": "154293",
+ "node_id": "R_kgDOLDnvqg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154293/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154293/pulls{/number}",
+ "pushed_at": "2019-05-31T02:47:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154293/releases{/id}",
+ "size": 108,
+ "ssh_url": "git@github.com:OpenSourceBrain/154293.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154293/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154293/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154293/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154293/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154293",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154293/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154293/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154293/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154293",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154348": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154348/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154348/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154348/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154348/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154348.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154348/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154348/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154348/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154348/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154348/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154348/contributors",
+ "created_at": "2024-01-11T14:42:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154348/deployments",
+ "description": "Late emergence of the whisker direction selectivity map in rat barrel cortex (Kremer et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154348/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154348/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154348/forks",
+ "full_name": "OpenSourceBrain/154348",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154348/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154348/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154348/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154348.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154348",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154348/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154348",
+ "id": 741994430,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154348/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154348/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154348/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154348/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154348/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154348/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154348/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154348/milestones{/number}",
+ "mirror_url": null,
+ "name": "154348",
+ "node_id": "R_kgDOLDnvvg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154348/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154348/pulls{/number}",
+ "pushed_at": "2019-05-31T03:34:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154348/releases{/id}",
+ "size": 384,
+ "ssh_url": "git@github.com:OpenSourceBrain/154348.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154348/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154348/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154348/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154348/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154348",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154348/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154348/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154348/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154348",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154732": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154732/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154732/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154732/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154732/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154732.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154732/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154732/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154732/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154732/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154732/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154732/contributors",
+ "created_at": "2024-01-11T14:42:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154732/deployments",
+ "description": "Spine head calcium in a CA1 pyramidal cell model (Graham et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154732/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154732/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154732/forks",
+ "full_name": "OpenSourceBrain/154732",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154732/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154732/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154732/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154732.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/154732",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154732/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154732",
+ "id": 741994445,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154732/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154732/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154732/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154732/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154732/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154732/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154732/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154732/milestones{/number}",
+ "mirror_url": null,
+ "name": "154732",
+ "node_id": "R_kgDOLDnvzQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154732/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154732/pulls{/number}",
+ "pushed_at": "2023-11-28T20:48:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154732/releases{/id}",
+ "size": 96,
+ "ssh_url": "git@github.com:OpenSourceBrain/154732.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154732/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154732/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154732/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154732/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154732",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154732/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154732/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154732/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154732",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154739": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154739/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154739/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154739/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154739/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154739.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154739/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154739/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154739/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154739/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154739/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154739/contributors",
+ "created_at": "2024-01-11T14:42:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154739/deployments",
+ "description": "Norns - Neural Network Studio (Visser & Van Gils 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154739/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154739/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154739/forks",
+ "full_name": "OpenSourceBrain/154739",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154739/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154739/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154739/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154739.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154739",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154739/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154739",
+ "id": 741994463,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154739/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154739/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154739/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154739/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154739/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154739/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154739/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154739/milestones{/number}",
+ "mirror_url": null,
+ "name": "154739",
+ "node_id": "R_kgDOLDnv3w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154739/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154739/pulls{/number}",
+ "pushed_at": "2019-05-31T04:29:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154739/releases{/id}",
+ "size": 740,
+ "ssh_url": "git@github.com:OpenSourceBrain/154739.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154739/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154739/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154739/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154739/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154739",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154739/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154739/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154739/git/trees{/sha}",
+ "updated_at": "2024-01-11T14:42:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154739",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154769": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154769/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154769/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154769/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154769/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154769.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154769/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154769/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154769/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154769/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154769/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154769/contributors",
+ "created_at": "2024-01-11T15:33:05Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154769/deployments",
+ "description": "Mixed mode oscillations as a mechanism for pseudo-plateau bursting (Vo et al. 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154769/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154769/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154769/forks",
+ "full_name": "OpenSourceBrain/154769",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154769/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154769/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154769/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154769.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/154769",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154769/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154769",
+ "id": 742015784,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154769/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154769/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154769/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154769/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154769/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154769/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154769/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154769/milestones{/number}",
+ "mirror_url": null,
+ "name": "154769",
+ "node_id": "R_kgDOLDpDKA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154769/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154769/pulls{/number}",
+ "pushed_at": "2023-12-23T03:48:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154769/releases{/id}",
+ "size": 19,
+ "ssh_url": "git@github.com:OpenSourceBrain/154769.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154769/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154769/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154769/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154769/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154769",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154769/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154769/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154769/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154769",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154770": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154770/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154770/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154770/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154770/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154770.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154770/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154770/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154770/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154770/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154770/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154770/contributors",
+ "created_at": "2024-01-11T15:33:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154770/deployments",
+ "description": "Input strength and time-varying oscillation peak frequency (Cohen MX 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154770/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154770/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154770/forks",
+ "full_name": "OpenSourceBrain/154770",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154770/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154770/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154770/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154770.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154770",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154770/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154770",
+ "id": 742015800,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154770/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154770/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154770/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154770/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154770/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154770/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154770/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154770/milestones{/number}",
+ "mirror_url": null,
+ "name": "154770",
+ "node_id": "R_kgDOLDpDOA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154770/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154770/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154770/releases{/id}",
+ "size": 62,
+ "ssh_url": "git@github.com:OpenSourceBrain/154770.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154770/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154770/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154770/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154770/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154770",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154770/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154770/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154770/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154770",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154871": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154871/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154871/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154871/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154871/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154871.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154871/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154871/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154871/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154871/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154871/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154871/contributors",
+ "created_at": "2024-01-11T15:33:09Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154871/deployments",
+ "description": "The relationship between two fast/slow analysis techniques for bursting oscill. (Teka et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154871/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154871/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154871/forks",
+ "full_name": "OpenSourceBrain/154871",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154871/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154871/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154871/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154871.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/154871",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154871/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154871",
+ "id": 742015812,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154871/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154871/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154871/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154871/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154871/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154871/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154871/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154871/milestones{/number}",
+ "mirror_url": null,
+ "name": "154871",
+ "node_id": "R_kgDOLDpDRA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154871/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154871/pulls{/number}",
+ "pushed_at": "2023-12-23T03:48:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154871/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/154871.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154871/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154871/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154871/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154871/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154871",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154871/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154871/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154871/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154871",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154872": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154872/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154872/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154872/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154872/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154872.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154872/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154872/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154872/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154872/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154872/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154872/contributors",
+ "created_at": "2024-01-11T15:33:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154872/deployments",
+ "description": "ModelView: online structural analysis of computational models (McDougal et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154872/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154872/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154872/forks",
+ "full_name": "OpenSourceBrain/154872",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154872/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154872/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154872/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154872.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154872",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154872/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154872",
+ "id": 742015822,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154872/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154872/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154872/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154872/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154872/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154872/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154872/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154872/milestones{/number}",
+ "mirror_url": null,
+ "name": "154872",
+ "node_id": "R_kgDOLDpDTg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154872/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154872/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154872/releases{/id}",
+ "size": 1981,
+ "ssh_url": "git@github.com:OpenSourceBrain/154872.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154872/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154872/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154872/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154872/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154872",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154872/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154872/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154872/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154872",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154927": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154927/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154927/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154927/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154927/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154927.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154927/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154927/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154927/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154927/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154927/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154927/contributors",
+ "created_at": "2024-01-11T15:33:13Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154927/deployments",
+ "description": "Analyzing neural time series data theory and practice (Cohen 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154927/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154927/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154927/forks",
+ "full_name": "OpenSourceBrain/154927",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154927/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154927/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154927/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154927.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/154927",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154927/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154927",
+ "id": 742015835,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154927/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154927/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154927/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154927/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154927/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154927/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154927/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154927/milestones{/number}",
+ "mirror_url": null,
+ "name": "154927",
+ "node_id": "R_kgDOLDpDWw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154927/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154927/pulls{/number}",
+ "pushed_at": "2023-12-23T03:48:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154927/releases{/id}",
+ "size": 24,
+ "ssh_url": "git@github.com:OpenSourceBrain/154927.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154927/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154927/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154927/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154927/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154927",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154927/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154927/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154927/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154927",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154955": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154955/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154955/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154955/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154955/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154955.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154955/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154955/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154955/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154955/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154955/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154955/contributors",
+ "created_at": "2024-01-11T15:33:15Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154955/deployments",
+ "description": "Understanding how fast activating K+ channels promote bursting in pituitary cells (Vo et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154955/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154955/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154955/forks",
+ "full_name": "OpenSourceBrain/154955",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154955/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154955/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154955/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154955.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/154955",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154955/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154955",
+ "id": 742015849,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154955/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154955/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154955/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154955/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154955/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154955/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154955/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154955/milestones{/number}",
+ "mirror_url": null,
+ "name": "154955",
+ "node_id": "R_kgDOLDpDaQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154955/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154955/pulls{/number}",
+ "pushed_at": "2023-12-23T03:48:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154955/releases{/id}",
+ "size": 17,
+ "ssh_url": "git@github.com:OpenSourceBrain/154955.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154955/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154955/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154955/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154955/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154955",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154955/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154955/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154955/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154955",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154967": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154967/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154967/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154967/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154967/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154967.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154967/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154967/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154967/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154967/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154967/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154967/contributors",
+ "created_at": "2024-01-11T15:33:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154967/deployments",
+ "description": "Gq coupled signaling pathways involved in striatal synaptic plasticity (Kim et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154967/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154967/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154967/forks",
+ "full_name": "OpenSourceBrain/154967",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154967/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154967/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154967/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154967.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154967",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154967/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154967",
+ "id": 742015861,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154967/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154967/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154967/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154967/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154967/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154967/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154967/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154967/milestones{/number}",
+ "mirror_url": null,
+ "name": "154967",
+ "node_id": "R_kgDOLDpDdQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154967/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154967/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154967/releases{/id}",
+ "size": 3629,
+ "ssh_url": "git@github.com:OpenSourceBrain/154967.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154967/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154967/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154967/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154967/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154967",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154967/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154967/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154967/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154967",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/154968": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/154968/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/154968/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/154968/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/154968/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/154968.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/154968/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/154968/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/154968/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/154968/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/154968/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/154968/contributors",
+ "created_at": "2024-01-11T15:33:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/154968/deployments",
+ "description": "Dopamine activation of signaling pathways in a medium spiny projection neuron (Oliveira et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/154968/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/154968/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/154968/forks",
+ "full_name": "OpenSourceBrain/154968",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/154968/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/154968/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/154968/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/154968.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/154968",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/154968/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/154968",
+ "id": 742015877,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/154968/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/154968/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/154968/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/154968/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/154968/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/154968/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/154968/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/154968/milestones{/number}",
+ "mirror_url": null,
+ "name": "154968",
+ "node_id": "R_kgDOLDpDhQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/154968/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/154968/pulls{/number}",
+ "pushed_at": "2019-05-31T03:27:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/154968/releases{/id}",
+ "size": 1030,
+ "ssh_url": "git@github.com:OpenSourceBrain/154968.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/154968/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/154968/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/154968/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/154968/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/154968",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/154968/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/154968/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/154968/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/154968",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155057": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155057/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155057/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155057/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155057/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155057.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155057/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155057/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155057/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155057/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155057/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155057/contributors",
+ "created_at": "2024-01-11T15:33:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155057/deployments",
+ "description": "L5 PFC microcircuit used to study persistent activity (Papoutsi et al. 2014, 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155057/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155057/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155057/forks",
+ "full_name": "OpenSourceBrain/155057",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155057/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155057/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155057/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155057.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155057",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155057/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155057",
+ "id": 742015891,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155057/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155057/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155057/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155057/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155057/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155057/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155057/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155057/milestones{/number}",
+ "mirror_url": null,
+ "name": "155057",
+ "node_id": "R_kgDOLDpDkw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155057/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155057/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155057/releases{/id}",
+ "size": 12066,
+ "ssh_url": "git@github.com:OpenSourceBrain/155057.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155057/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155057/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155057/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155057/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155057",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155057/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155057/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155057/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155057",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155130": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155130/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155130/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155130/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155130/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155130.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155130/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155130/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155130/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155130/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155130/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155130/contributors",
+ "created_at": "2024-01-11T15:33:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155130/deployments",
+ "description": "Neural mass model based on single cell dynamics to model pathophysiology (Zandt et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155130/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155130/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155130/forks",
+ "full_name": "OpenSourceBrain/155130",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155130/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155130/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155130/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155130.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155130",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155130/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155130",
+ "id": 742015908,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155130/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155130/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155130/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155130/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155130/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155130/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155130/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155130/milestones{/number}",
+ "mirror_url": null,
+ "name": "155130",
+ "node_id": "R_kgDOLDpDpA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155130/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155130/pulls{/number}",
+ "pushed_at": "2023-11-28T20:49:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155130/releases{/id}",
+ "size": 1291,
+ "ssh_url": "git@github.com:OpenSourceBrain/155130.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155130/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155130/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155130/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155130/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155130",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155130/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155130/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155130/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155130",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155131": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155131/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155131/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155131/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155131/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155131.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155131/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155131/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155131/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155131/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155131/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155131/contributors",
+ "created_at": "2024-01-11T15:33:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155131/deployments",
+ "description": "Learning intrinsic excitability in Medium Spiny Neurons (Scheler 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155131/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155131/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155131/forks",
+ "full_name": "OpenSourceBrain/155131",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155131/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155131/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155131/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155131.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155131",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155131/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155131",
+ "id": 742015925,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155131/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155131/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155131/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155131/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155131/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155131/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155131/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155131/milestones{/number}",
+ "mirror_url": null,
+ "name": "155131",
+ "node_id": "R_kgDOLDpDtQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155131/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155131/pulls{/number}",
+ "pushed_at": "2023-11-28T20:49:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155131/releases{/id}",
+ "size": 87,
+ "ssh_url": "git@github.com:OpenSourceBrain/155131.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155131/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155131/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155131/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155131/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155131",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155131/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155131/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155131/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155131",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155157": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155157/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155157/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155157/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155157/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155157.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155157/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155157/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155157/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155157/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155157/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155157/contributors",
+ "created_at": "2024-01-11T15:33:28Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155157/deployments",
+ "description": "Self-organized olfactory pattern recognition (Kaplan & Lansner 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155157/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155157/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155157/forks",
+ "full_name": "OpenSourceBrain/155157",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155157/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155157/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155157/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155157.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/155157",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155157/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155157",
+ "id": 742015944,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155157/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155157/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155157/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155157/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155157/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155157/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155157/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155157/milestones{/number}",
+ "mirror_url": null,
+ "name": "155157",
+ "node_id": "R_kgDOLDpDyA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155157/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155157/pulls{/number}",
+ "pushed_at": "2023-12-23T03:48:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155157/releases{/id}",
+ "size": 333,
+ "ssh_url": "git@github.com:OpenSourceBrain/155157.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155157/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155157/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155157/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155157/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155157",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155157/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155157/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155157/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155157",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155565": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155565/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155565/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155565/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155565/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155565.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155565/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155565/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155565/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155565/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155565/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155565/contributors",
+ "created_at": "2024-01-11T15:33:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155565/deployments",
+ "description": "A cortical sheet mesoscopic model for investigating focal seizure onset dynamics (Wang et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155565/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155565/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155565/forks",
+ "full_name": "OpenSourceBrain/155565",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155565/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155565/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155565/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155565.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155565",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155565/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155565",
+ "id": 742015959,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155565/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155565/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155565/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155565/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155565/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155565/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155565/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155565/milestones{/number}",
+ "mirror_url": null,
+ "name": "155565",
+ "node_id": "R_kgDOLDpD1w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155565/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155565/pulls{/number}",
+ "pushed_at": "2019-05-31T02:35:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155565/releases{/id}",
+ "size": 11317,
+ "ssh_url": "git@github.com:OpenSourceBrain/155565.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155565/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155565/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155565/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155565/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155565",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155565/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155565/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155565/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155565",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155568": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155568/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155568/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155568/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155568/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155568.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155568/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155568/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155568/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155568/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155568/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155568/contributors",
+ "created_at": "2024-01-11T15:33:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155568/deployments",
+ "description": "Dentate gyrus network model (Tejada et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155568/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155568/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155568/forks",
+ "full_name": "OpenSourceBrain/155568",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155568/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155568/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155568/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155568.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/155568",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155568/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155568",
+ "id": 742015973,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155568/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155568/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155568/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155568/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155568/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155568/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155568/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155568/milestones{/number}",
+ "mirror_url": null,
+ "name": "155568",
+ "node_id": "R_kgDOLDpD5Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155568/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155568/pulls{/number}",
+ "pushed_at": "2023-11-28T20:49:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155568/releases{/id}",
+ "size": 1180,
+ "ssh_url": "git@github.com:OpenSourceBrain/155568.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155568/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155568/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155568/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155568/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155568",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155568/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155568/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155568/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155568",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155601": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155601/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155601/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155601/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155601/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155601.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155601/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155601/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155601/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155601/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155601/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155601/contributors",
+ "created_at": "2024-01-11T15:33:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155601/deployments",
+ "description": "Basket cell extrasynaptic inhibition modulates network oscillations (Proddutur et al., 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155601/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155601/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155601/forks",
+ "full_name": "OpenSourceBrain/155601",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155601/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155601/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155601/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155601.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155601",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155601/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155601",
+ "id": 742015982,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155601/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155601/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155601/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155601/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155601/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155601/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155601/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155601/milestones{/number}",
+ "mirror_url": null,
+ "name": "155601",
+ "node_id": "R_kgDOLDpD7g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155601/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155601/pulls{/number}",
+ "pushed_at": "2023-11-28T20:49:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155601/releases{/id}",
+ "size": 91,
+ "ssh_url": "git@github.com:OpenSourceBrain/155601.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155601/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155601/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155601/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155601/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155601",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155601/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155601/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155601/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155601",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155602": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155602/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155602/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155602/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155602/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155602.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155602/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155602/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155602/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155602/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155602/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155602/contributors",
+ "created_at": "2024-01-11T15:33:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155602/deployments",
+ "description": "Status epilepticus alters dentate basket cell tonic inhibition (Yu J et al 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155602/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155602/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155602/forks",
+ "full_name": "OpenSourceBrain/155602",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155602/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155602/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155602/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155602.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155602",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155602/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155602",
+ "id": 742016009,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155602/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155602/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155602/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155602/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155602/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155602/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155602/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155602/milestones{/number}",
+ "mirror_url": null,
+ "name": "155602",
+ "node_id": "R_kgDOLDpECQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155602/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155602/pulls{/number}",
+ "pushed_at": "2023-11-28T20:49:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155602/releases{/id}",
+ "size": 94,
+ "ssh_url": "git@github.com:OpenSourceBrain/155602.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155602/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155602/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155602/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155602/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155602",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155602/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155602/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155602/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155602",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155705": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155705/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155705/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155705/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155705/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155705.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155705/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155705/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155705/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155705/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155705/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155705/contributors",
+ "created_at": "2024-01-11T15:33:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155705/deployments",
+ "description": "A two networks model of connectivity-dependent oscillatory activity (Avella OJ et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155705/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155705/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155705/forks",
+ "full_name": "OpenSourceBrain/155705",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155705/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155705/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155705/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155705.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155705",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155705/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155705",
+ "id": 742016019,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155705/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155705/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155705/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155705/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155705/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155705/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155705/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155705/milestones{/number}",
+ "mirror_url": null,
+ "name": "155705",
+ "node_id": "R_kgDOLDpEEw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155705/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155705/pulls{/number}",
+ "pushed_at": "2023-11-28T20:49:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155705/releases{/id}",
+ "size": 765,
+ "ssh_url": "git@github.com:OpenSourceBrain/155705.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155705/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155705/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155705/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155705/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155705",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155705/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155705/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155705/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155705",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155731": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155731/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155731/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155731/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155731/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155731.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155731/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155731/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155731/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155731/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155731/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155731/contributors",
+ "created_at": "2024-01-11T15:33:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155731/deployments",
+ "description": "Calcium dynamics depend on dendritic diameters (Anwar et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155731/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155731/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155731/forks",
+ "full_name": "OpenSourceBrain/155731",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155731/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155731/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155731/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155731.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155731",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155731/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155731",
+ "id": 742016038,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155731/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155731/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155731/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155731/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155731/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155731/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155731/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155731/milestones{/number}",
+ "mirror_url": null,
+ "name": "155731",
+ "node_id": "R_kgDOLDpEJg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155731/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155731/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155731/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/155731.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155731/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155731/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155731/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155731/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155731",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155731/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155731/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155731/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155731",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155735": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155735/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155735/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155735/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155735/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155735.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155735/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155735/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155735/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155735/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155735/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155735/contributors",
+ "created_at": "2024-01-11T15:33:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155735/deployments",
+ "description": "Phase response curves firing rate dependency of rat purkinje neurons in vitro (Couto et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155735/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155735/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155735/forks",
+ "full_name": "OpenSourceBrain/155735",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155735/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155735/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155735/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155735.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155735",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155735/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155735",
+ "id": 742016048,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155735/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155735/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155735/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155735/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155735/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155735/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155735/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155735/milestones{/number}",
+ "mirror_url": null,
+ "name": "155735",
+ "node_id": "R_kgDOLDpEMA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155735/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155735/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155735/releases{/id}",
+ "size": 559,
+ "ssh_url": "git@github.com:OpenSourceBrain/155735.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155735/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155735/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155735/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155735/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155735",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155735/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155735/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155735/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155735",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155796": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155796/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155796/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155796/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155796/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155796.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155796/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155796/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155796/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155796/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155796/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155796/contributors",
+ "created_at": "2024-01-11T15:33:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155796/deployments",
+ "description": "Intrinsic sensory neurons of the gut (Chambers et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155796/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155796/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155796/forks",
+ "full_name": "OpenSourceBrain/155796",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155796/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155796/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155796/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155796.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155796",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155796/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155796",
+ "id": 742016069,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155796/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155796/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155796/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155796/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155796/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155796/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155796/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155796/milestones{/number}",
+ "mirror_url": null,
+ "name": "155796",
+ "node_id": "R_kgDOLDpERQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155796/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155796/pulls{/number}",
+ "pushed_at": "2019-05-31T05:05:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155796/releases{/id}",
+ "size": 6355,
+ "ssh_url": "git@github.com:OpenSourceBrain/155796.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155796/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155796/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155796/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155796/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155796",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155796/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155796/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155796/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155796",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/155856": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/155856/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/155856/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/155856/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/155856/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/155856.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/155856/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/155856/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/155856/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/155856/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/155856/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/155856/contributors",
+ "created_at": "2024-01-11T15:33:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/155856/deployments",
+ "description": "Fractional leaky integrate-and-fire model (Teka et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/155856/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/155856/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/155856/forks",
+ "full_name": "OpenSourceBrain/155856",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/155856/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/155856/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/155856/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/155856.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/155856",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/155856/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/155856",
+ "id": 742016087,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/155856/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/155856/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/155856/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/155856/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/155856/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/155856/languages",
+ "license": {
+ "key": "other",
+ "name": "Other",
+ "node_id": "MDc6TGljZW5zZTA=",
+ "spdx_id": "NOASSERTION",
+ "url": null
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/155856/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/155856/milestones{/number}",
+ "mirror_url": null,
+ "name": "155856",
+ "node_id": "R_kgDOLDpEVw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/155856/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/155856/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/155856/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/155856.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/155856/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/155856/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/155856/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/155856/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/155856",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/155856/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/155856/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/155856/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/155856",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156027": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156027/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156027/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156027/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156027/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156027.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156027/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156027/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156027/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156027/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156027/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156027/contributors",
+ "created_at": "2024-01-11T15:33:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156027/deployments",
+ "description": "Theoretical reconstrucion of field potentials and dendrodendritic synaptic...(Rall & Shepherd 1968)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156027/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156027/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156027/forks",
+ "full_name": "OpenSourceBrain/156027",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156027/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156027/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156027/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156027.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156027",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156027/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156027",
+ "id": 742016099,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156027/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156027/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156027/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156027/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156027/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156027/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156027/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156027/milestones{/number}",
+ "mirror_url": null,
+ "name": "156027",
+ "node_id": "R_kgDOLDpEYw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156027/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156027/pulls{/number}",
+ "pushed_at": "2020-07-29T23:05:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156027/releases{/id}",
+ "size": 130,
+ "ssh_url": "git@github.com:OpenSourceBrain/156027.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156027/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156027/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156027/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156027/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156027",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156027/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156027/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156027/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156027",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156039": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156039/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156039/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156039/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156039/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156039.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156039/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156039/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156039/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156039/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156039/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156039/contributors",
+ "created_at": "2024-01-11T15:33:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156039/deployments",
+ "description": "The subcellular distribution of T-type Ca2+ channels in LGN interneurons (Allken et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156039/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156039/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156039/forks",
+ "full_name": "OpenSourceBrain/156039",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156039/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156039/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156039/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156039.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/156039",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156039/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156039",
+ "id": 742016117,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156039/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156039/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156039/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156039/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156039/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156039/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156039/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156039/milestones{/number}",
+ "mirror_url": null,
+ "name": "156039",
+ "node_id": "R_kgDOLDpEdQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156039/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156039/pulls{/number}",
+ "pushed_at": "2023-11-28T20:50:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156039/releases{/id}",
+ "size": 94,
+ "ssh_url": "git@github.com:OpenSourceBrain/156039.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156039/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156039/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156039/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156039/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156039",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156039/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156039/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156039/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156039",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156072": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156072/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156072/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156072/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156072/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156072.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156072/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156072/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156072/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156072/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156072/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156072/contributors",
+ "created_at": "2024-01-11T15:33:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156072/deployments",
+ "description": "Large-scale model of neocortical slice in vitro exhibiting persistent gamma (Tomsett et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156072/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156072/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156072/forks",
+ "full_name": "OpenSourceBrain/156072",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156072/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156072/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156072/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156072.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156072",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156072/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156072",
+ "id": 742016134,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156072/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156072/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156072/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156072/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156072/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156072/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156072/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156072/milestones{/number}",
+ "mirror_url": null,
+ "name": "156072",
+ "node_id": "R_kgDOLDpEhg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156072/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156072/pulls{/number}",
+ "pushed_at": "2019-05-31T04:27:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156072/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/156072.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156072/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156072/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156072/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156072/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156072",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156072/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156072/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156072/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156072",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156120": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156120/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156120/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156120/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156120/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156120.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156120/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156120/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156120/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156120/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156120/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156120/contributors",
+ "created_at": "2024-01-11T15:33:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156120/deployments",
+ "description": "Single E-I oscillating network with amplitude modulation (Avella Gonzalez et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156120/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156120/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156120/forks",
+ "full_name": "OpenSourceBrain/156120",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156120/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156120/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156120/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156120.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156120",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156120/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156120",
+ "id": 742016146,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156120/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156120/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156120/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156120/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156120/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156120/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156120/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156120/milestones{/number}",
+ "mirror_url": null,
+ "name": "156120",
+ "node_id": "R_kgDOLDpEkg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156120/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156120/pulls{/number}",
+ "pushed_at": "2023-11-28T20:50:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156120/releases{/id}",
+ "size": 342,
+ "ssh_url": "git@github.com:OpenSourceBrain/156120.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156120/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156120/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156120/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156120/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156120",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156120/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156120/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156120/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156120",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156162": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156162/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156162/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156162/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156162/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156162.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156162/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156162/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156162/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156162/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156162/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156162/contributors",
+ "created_at": "2024-01-11T15:33:59Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156162/deployments",
+ "description": "Software (called Optimizer) for fitting neuronal models (Friedrich et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156162/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156162/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156162/forks",
+ "full_name": "OpenSourceBrain/156162",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156162/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156162/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156162/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156162.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/156162",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156162/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156162",
+ "id": 742016164,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156162/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156162/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156162/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156162/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156162/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156162/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156162/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156162/milestones{/number}",
+ "mirror_url": null,
+ "name": "156162",
+ "node_id": "R_kgDOLDpEpA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156162/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156162/pulls{/number}",
+ "pushed_at": "2023-12-23T03:48:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156162/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/156162.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156162/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156162/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156162/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156162/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156162",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156162/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156162/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156162/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:33:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156162",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156260": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156260/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156260/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156260/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156260/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156260.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156260/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156260/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156260/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156260/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156260/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156260/contributors",
+ "created_at": "2024-01-11T15:34:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156260/deployments",
+ "description": "Synchronicity of fast-spiking interneurons balances medium-spiny neurons (Damodaran et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156260/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156260/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156260/forks",
+ "full_name": "OpenSourceBrain/156260",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156260/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156260/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156260/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156260.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156260",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156260/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156260",
+ "id": 742016177,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156260/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156260/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156260/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156260/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156260/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156260/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156260/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156260/milestones{/number}",
+ "mirror_url": null,
+ "name": "156260",
+ "node_id": "R_kgDOLDpEsQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156260/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156260/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156260/releases{/id}",
+ "size": 197,
+ "ssh_url": "git@github.com:OpenSourceBrain/156260.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156260/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156260/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156260/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156260/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156260",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156260/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156260/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156260/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156260",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156470": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156470/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156470/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156470/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156470/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156470.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156470/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156470/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156470/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156470/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156470/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156470/contributors",
+ "created_at": "2024-01-11T15:34:03Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156470/deployments",
+ "description": "The dynamics underlying pseudo-plateau bursting in a pituitary cell model (Teka et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156470/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156470/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156470/forks",
+ "full_name": "OpenSourceBrain/156470",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156470/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156470/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156470/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156470.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/156470",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156470/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156470",
+ "id": 742016194,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156470/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156470/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156470/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156470/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156470/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156470/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156470/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156470/milestones{/number}",
+ "mirror_url": null,
+ "name": "156470",
+ "node_id": "R_kgDOLDpEwg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156470/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156470/pulls{/number}",
+ "pushed_at": "2023-12-23T03:49:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156470/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/156470.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156470/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156470/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156470/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156470/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156470",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156470/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156470/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156470/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156470",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156733": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156733/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156733/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156733/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156733/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156733.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156733/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156733/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156733/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156733/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156733/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156733/contributors",
+ "created_at": "2024-01-11T15:34:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156733/deployments",
+ "description": "Information transmission in cerebellar granule cell models (Rossert et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156733/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156733/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156733/forks",
+ "full_name": "OpenSourceBrain/156733",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156733/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156733/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156733/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156733.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156733",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156733/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156733",
+ "id": 742016208,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156733/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156733/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156733/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156733/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156733/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156733/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156733/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156733/milestones{/number}",
+ "mirror_url": null,
+ "name": "156733",
+ "node_id": "R_kgDOLDpE0A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156733/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156733/pulls{/number}",
+ "pushed_at": "2023-11-28T20:50:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156733/releases{/id}",
+ "size": 190,
+ "ssh_url": "git@github.com:OpenSourceBrain/156733.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156733/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156733/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156733/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156733/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156733",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156733/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156733/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156733/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156733",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156780": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156780/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156780/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156780/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156780/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156780.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156780/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156780/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156780/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156780/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156780/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156780/contributors",
+ "created_at": "2024-01-11T15:34:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156780/deployments",
+ "description": "Microcircuits of L5 thick tufted pyramidal cells (Hay & Segev 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156780/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156780/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156780/forks",
+ "full_name": "OpenSourceBrain/156780",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156780/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156780/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156780/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156780.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156780",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156780/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156780",
+ "id": 742016231,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156780/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156780/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156780/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156780/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156780/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156780/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156780/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156780/milestones{/number}",
+ "mirror_url": null,
+ "name": "156780",
+ "node_id": "R_kgDOLDpE5w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156780/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156780/pulls{/number}",
+ "pushed_at": "2023-11-28T20:50:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156780/releases{/id}",
+ "size": 95,
+ "ssh_url": "git@github.com:OpenSourceBrain/156780.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156780/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156780/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156780/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156780/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156780",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156780/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156780/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156780/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156780",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156781": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156781/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156781/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156781/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156781/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156781.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156781/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156781/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156781/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156781/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156781/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156781/contributors",
+ "created_at": "2024-01-11T15:34:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156781/deployments",
+ "description": "Bursting and oscillations in RD1 Retina driven by AII Amacrine Neuron (Choi et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156781/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156781/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156781/forks",
+ "full_name": "OpenSourceBrain/156781",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156781/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156781/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156781/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156781.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156781",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156781/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156781",
+ "id": 742016257,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156781/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156781/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156781/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156781/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156781/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156781/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156781/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156781/milestones{/number}",
+ "mirror_url": null,
+ "name": "156781",
+ "node_id": "R_kgDOLDpFAQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156781/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156781/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156781/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/156781.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156781/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156781/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156781/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156781/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156781",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156781/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156781/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156781/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156781",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156828": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156828/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156828/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156828/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156828/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156828.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156828/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156828/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156828/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156828/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156828/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156828/contributors",
+ "created_at": "2024-01-11T15:34:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156828/deployments",
+ "description": "Granule Cells of the Olfactory Bulb (Simoes_De_Souza et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156828/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156828/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156828/forks",
+ "full_name": "OpenSourceBrain/156828",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156828/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156828/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156828/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156828.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156828",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156828/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156828",
+ "id": 742016275,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156828/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156828/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156828/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156828/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156828/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156828/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156828/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156828/milestones{/number}",
+ "mirror_url": null,
+ "name": "156828",
+ "node_id": "R_kgDOLDpFEw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156828/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156828/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156828/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/156828.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156828/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156828/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156828/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156828/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156828",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156828/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156828/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156828/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156828",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/156830": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/156830/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/156830/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/156830/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/156830/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/156830.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/156830/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/156830/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/156830/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/156830/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/156830/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/156830/contributors",
+ "created_at": "2024-01-11T15:34:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/156830/deployments",
+ "description": "Model of AngII signaling and membrane electrophysiology (Makadia, Anderson, Fey et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/156830/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/156830/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/156830/forks",
+ "full_name": "OpenSourceBrain/156830",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/156830/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/156830/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/156830/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/156830.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/156830",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/156830/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/156830",
+ "id": 742016291,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/156830/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/156830/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/156830/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/156830/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/156830/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/156830/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/156830/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/156830/milestones{/number}",
+ "mirror_url": null,
+ "name": "156830",
+ "node_id": "R_kgDOLDpFIw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/156830/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/156830/pulls{/number}",
+ "pushed_at": "2019-05-31T03:32:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/156830/releases{/id}",
+ "size": 61,
+ "ssh_url": "git@github.com:OpenSourceBrain/156830.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/156830/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/156830/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/156830/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/156830/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/156830",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/156830/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/156830/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/156830/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/156830",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/157157": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/157157/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/157157/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/157157/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/157157/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/157157.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/157157/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/157157/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/157157/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/157157/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/157157/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/157157/contributors",
+ "created_at": "2024-01-11T15:34:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/157157/deployments",
+ "description": "CA1 pyramidal neuron: synaptic plasticity during theta cycles (Saudargiene et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/157157/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/157157/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/157157/forks",
+ "full_name": "OpenSourceBrain/157157",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/157157/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/157157/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/157157/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/157157.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/157157",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/157157/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/157157",
+ "id": 742016301,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/157157/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/157157/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/157157/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/157157/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/157157/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/157157/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/157157/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/157157/milestones{/number}",
+ "mirror_url": null,
+ "name": "157157",
+ "node_id": "R_kgDOLDpFLQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/157157/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/157157/pulls{/number}",
+ "pushed_at": "2023-11-28T20:50:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/157157/releases{/id}",
+ "size": 201,
+ "ssh_url": "git@github.com:OpenSourceBrain/157157.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/157157/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/157157/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/157157/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/157157/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/157157",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/157157/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/157157/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/157157/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/157157",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/157339": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/157339/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/157339/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/157339/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/157339/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/157339.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/157339/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/157339/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/157339/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/157339/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/157339/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/157339/contributors",
+ "created_at": "2024-01-11T15:34:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/157339/deployments",
+ "description": "Effect of the initial synaptic state on the probability to induce LTP and LTD (Migliore et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/157339/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/157339/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/157339/forks",
+ "full_name": "OpenSourceBrain/157339",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/157339/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/157339/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/157339/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/157339.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/157339",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/157339/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/157339",
+ "id": 742016311,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/157339/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/157339/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/157339/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/157339/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/157339/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/157339/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/157339/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/157339/milestones{/number}",
+ "mirror_url": null,
+ "name": "157339",
+ "node_id": "R_kgDOLDpFNw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/157339/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/157339/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/157339/releases{/id}",
+ "size": 49,
+ "ssh_url": "git@github.com:OpenSourceBrain/157339.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/157339/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/157339/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/157339/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/157339/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/157339",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/157339/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/157339/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/157339/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/157339",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/167414": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/167414/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/167414/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/167414/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/167414/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/167414.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/167414/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/167414/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/167414/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/167414/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/167414/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/167414/contributors",
+ "created_at": "2024-01-11T15:34:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/167414/deployments",
+ "description": "Adaptive robotic control driven by a versatile spiking cerebellar network (Casellato et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/167414/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/167414/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/167414/forks",
+ "full_name": "OpenSourceBrain/167414",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/167414/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/167414/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/167414/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/167414.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/167414",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/167414/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/167414",
+ "id": 742016323,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/167414/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/167414/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/167414/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/167414/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/167414/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/167414/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/167414/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/167414/milestones{/number}",
+ "mirror_url": null,
+ "name": "167414",
+ "node_id": "R_kgDOLDpFQw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/167414/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/167414/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/167414/releases{/id}",
+ "size": 348,
+ "ssh_url": "git@github.com:OpenSourceBrain/167414.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/167414/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/167414/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/167414/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/167414/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/167414",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/167414/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/167414/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/167414/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/167414",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/167499": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/167499/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/167499/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/167499/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/167499/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/167499.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/167499/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/167499/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/167499/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/167499/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/167499/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/167499/contributors",
+ "created_at": "2024-01-11T15:34:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/167499/deployments",
+ "description": "Distal inhibitory control of sensory-evoked excitation (Egger, Schmitt et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/167499/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/167499/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/167499/forks",
+ "full_name": "OpenSourceBrain/167499",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/167499/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/167499/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/167499/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/167499.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/167499",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/167499/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/167499",
+ "id": 742016337,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/167499/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/167499/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/167499/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/167499/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/167499/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/167499/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/167499/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/167499/milestones{/number}",
+ "mirror_url": null,
+ "name": "167499",
+ "node_id": "R_kgDOLDpFUQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/167499/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/167499/pulls{/number}",
+ "pushed_at": "2019-05-31T02:51:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/167499/releases{/id}",
+ "size": 36218,
+ "ssh_url": "git@github.com:OpenSourceBrain/167499.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/167499/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/167499/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/167499/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/167499/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/167499",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/167499/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/167499/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/167499/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/167499",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/167638": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/167638/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/167638/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/167638/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/167638/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/167638.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/167638/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/167638/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/167638/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/167638/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/167638/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/167638/contributors",
+ "created_at": "2024-01-11T15:34:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/167638/deployments",
+ "description": "Generation of granule cell dendritic morphology (Schneider et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/167638/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/167638/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/167638/forks",
+ "full_name": "OpenSourceBrain/167638",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/167638/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/167638/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/167638/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/167638.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/167638",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/167638/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/167638",
+ "id": 742016356,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/167638/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/167638/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/167638/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/167638/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/167638/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/167638/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/167638/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/167638/milestones{/number}",
+ "mirror_url": null,
+ "name": "167638",
+ "node_id": "R_kgDOLDpFZA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/167638/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/167638/pulls{/number}",
+ "pushed_at": "2019-05-31T03:19:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/167638/releases{/id}",
+ "size": 2361,
+ "ssh_url": "git@github.com:OpenSourceBrain/167638.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/167638/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/167638/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/167638/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/167638/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/167638",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/167638/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/167638/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/167638/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/167638",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/167694": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/167694/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/167694/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/167694/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/167694/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/167694.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/167694/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/167694/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/167694/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/167694/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/167694/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/167694/contributors",
+ "created_at": "2024-01-11T15:34:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/167694/deployments",
+ "description": "Mechanisms underlying subunit independence in pyramidal neuron dendrites (Behabadi and Mel 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/167694/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/167694/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/167694/forks",
+ "full_name": "OpenSourceBrain/167694",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/167694/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/167694/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/167694/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/167694.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/167694",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/167694/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/167694",
+ "id": 742016377,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/167694/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/167694/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/167694/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/167694/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/167694/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/167694/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/167694/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/167694/milestones{/number}",
+ "mirror_url": null,
+ "name": "167694",
+ "node_id": "R_kgDOLDpFeQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/167694/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/167694/pulls{/number}",
+ "pushed_at": "2019-05-31T04:51:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/167694/releases{/id}",
+ "size": 62,
+ "ssh_url": "git@github.com:OpenSourceBrain/167694.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/167694/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/167694/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/167694/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/167694/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/167694",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/167694/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/167694/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/167694/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/167694",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/167714": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/167714/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/167714/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/167714/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/167714/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/167714.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/167714/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/167714/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/167714/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/167714/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/167714/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/167714/contributors",
+ "created_at": "2024-01-11T15:34:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/167714/deployments",
+ "description": "Hodgkin-Huxley with dynamic ion concentrations (Hubel and Dahlem, 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/167714/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/167714/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/167714/forks",
+ "full_name": "OpenSourceBrain/167714",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/167714/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/167714/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/167714/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/167714.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/167714",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/167714/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/167714",
+ "id": 742016393,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/167714/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/167714/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/167714/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/167714/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/167714/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/167714/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/167714/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/167714/milestones{/number}",
+ "mirror_url": null,
+ "name": "167714",
+ "node_id": "R_kgDOLDpFiQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/167714/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/167714/pulls{/number}",
+ "pushed_at": "2022-02-18T15:37:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/167714/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/167714.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/167714/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/167714/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/167714/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/167714/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/167714",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/167714/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/167714/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/167714/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/167714",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/167715": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/167715/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/167715/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/167715/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/167715/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/167715.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/167715/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/167715/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/167715/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/167715/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/167715/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/167715/contributors",
+ "created_at": "2024-01-11T15:34:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/167715/deployments",
+ "description": "Spreading depression model for FHM3 with Nav1.1 mutation (Dahlem et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/167715/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/167715/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/167715/forks",
+ "full_name": "OpenSourceBrain/167715",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/167715/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/167715/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/167715/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/167715.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/167715",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/167715/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/167715",
+ "id": 742016415,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/167715/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/167715/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/167715/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/167715/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/167715/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/167715/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/167715/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/167715/milestones{/number}",
+ "mirror_url": null,
+ "name": "167715",
+ "node_id": "R_kgDOLDpFnw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/167715/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/167715/pulls{/number}",
+ "pushed_at": "2019-05-31T02:16:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/167715/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/167715.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/167715/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/167715/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/167715/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/167715/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/167715",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/167715/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/167715/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/167715/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/167715",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/167772": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/167772/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/167772/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/167772/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/167772/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/167772.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/167772/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/167772/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/167772/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/167772/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/167772/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/167772/contributors",
+ "created_at": "2024-01-11T15:34:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/167772/deployments",
+ "description": "Comparison of DA-based Stochastic Algorithms (Pezo et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/167772/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/167772/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/167772/forks",
+ "full_name": "OpenSourceBrain/167772",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/167772/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/167772/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/167772/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/167772.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/167772",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/167772/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/167772",
+ "id": 742016431,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/167772/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/167772/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/167772/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/167772/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/167772/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/167772/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/167772/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/167772/milestones{/number}",
+ "mirror_url": null,
+ "name": "167772",
+ "node_id": "R_kgDOLDpFrw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/167772/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/167772/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/167772/releases{/id}",
+ "size": 168,
+ "ssh_url": "git@github.com:OpenSourceBrain/167772.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/167772/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/167772/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/167772/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/167772/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/167772",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/167772/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/167772/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/167772/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/167772",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/167875": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/167875/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/167875/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/167875/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/167875/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/167875.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/167875/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/167875/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/167875/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/167875/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/167875/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/167875/contributors",
+ "created_at": "2024-01-11T15:34:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/167875/deployments",
+ "description": "Vestibulo-Ocular Reflex model in Matlab (Clopath at al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/167875/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/167875/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/167875/forks",
+ "full_name": "OpenSourceBrain/167875",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/167875/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/167875/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/167875/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/167875.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/167875",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/167875/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/167875",
+ "id": 742016438,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/167875/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/167875/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/167875/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/167875/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/167875/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/167875/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/167875/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/167875/milestones{/number}",
+ "mirror_url": null,
+ "name": "167875",
+ "node_id": "R_kgDOLDpFtg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/167875/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/167875/pulls{/number}",
+ "pushed_at": "2019-05-31T04:58:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/167875/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/167875.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/167875/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/167875/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/167875/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/167875/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/167875",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/167875/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/167875/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/167875/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/167875",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168143": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168143/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168143/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168143/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168143/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168143.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168143/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168143/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168143/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168143/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168143/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168143/contributors",
+ "created_at": "2024-01-11T15:34:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168143/deployments",
+ "description": "A spiking neural network model of model-free reinforcement learning (Nakano et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168143/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168143/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168143/forks",
+ "full_name": "OpenSourceBrain/168143",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168143/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168143/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168143/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168143.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168143",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168143/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168143",
+ "id": 742016460,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168143/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168143/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168143/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168143/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168143/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168143/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168143/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168143/milestones{/number}",
+ "mirror_url": null,
+ "name": "168143",
+ "node_id": "R_kgDOLDpFzA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168143/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168143/pulls{/number}",
+ "pushed_at": "2019-05-31T02:14:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168143/releases{/id}",
+ "size": 89,
+ "ssh_url": "git@github.com:OpenSourceBrain/168143.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168143/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168143/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168143/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168143/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168143",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168143/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168143/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168143/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168143",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168148": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168148/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168148/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168148/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168148/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168148.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168148/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168148/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168148/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168148/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168148/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168148/contributors",
+ "created_at": "2024-01-11T15:34:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168148/deployments",
+ "description": "Firing neocortical layer V pyramidal neuron (Reetz et al. 2014; Stadler et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168148/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168148/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168148/forks",
+ "full_name": "OpenSourceBrain/168148",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168148/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168148/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168148/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168148.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/168148",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168148/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168148",
+ "id": 742016479,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168148/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168148/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168148/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168148/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168148/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168148/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168148/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168148/milestones{/number}",
+ "mirror_url": null,
+ "name": "168148",
+ "node_id": "R_kgDOLDpF3w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168148/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168148/pulls{/number}",
+ "pushed_at": "2018-04-23T18:34:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168148/releases{/id}",
+ "size": 88,
+ "ssh_url": "git@github.com:OpenSourceBrain/168148.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168148/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168148/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168148/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168148/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168148",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168148/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168148/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168148/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168148",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168310": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168310/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168310/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168310/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168310/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168310.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168310/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168310/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168310/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168310/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168310/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168310/contributors",
+ "created_at": "2024-01-11T15:34:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168310/deployments",
+ "description": "Pyramidal neuron, fast, regular, and irregular spiking interneurons (Konstantoudaki et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168310/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168310/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168310/forks",
+ "full_name": "OpenSourceBrain/168310",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168310/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168310/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168310/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168310.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168310",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168310/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168310",
+ "id": 742016498,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168310/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168310/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168310/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168310/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168310/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168310/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168310/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168310/milestones{/number}",
+ "mirror_url": null,
+ "name": "168310",
+ "node_id": "R_kgDOLDpF8g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168310/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168310/pulls{/number}",
+ "pushed_at": "2023-11-28T20:50:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168310/releases{/id}",
+ "size": 121,
+ "ssh_url": "git@github.com:OpenSourceBrain/168310.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168310/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168310/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168310/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168310/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168310",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168310/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168310/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168310/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168310",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168314": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168314/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168314/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168314/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168314/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168314.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168314/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168314/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168314/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168314/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168314/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168314/contributors",
+ "created_at": "2024-01-11T15:34:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168314/deployments",
+ "description": "Role for short term plasticity and OLM cells in containing spread of excitation (Hummos et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168314/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168314/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168314/forks",
+ "full_name": "OpenSourceBrain/168314",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168314/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168314/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168314/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168314.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168314",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168314/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168314",
+ "id": 742016517,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168314/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168314/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168314/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168314/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168314/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168314/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168314/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168314/milestones{/number}",
+ "mirror_url": null,
+ "name": "168314",
+ "node_id": "R_kgDOLDpGBQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168314/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168314/pulls{/number}",
+ "pushed_at": "2019-05-31T03:35:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168314/releases{/id}",
+ "size": 454,
+ "ssh_url": "git@github.com:OpenSourceBrain/168314.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168314/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168314/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168314/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168314/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168314",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168314/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168314/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168314/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168314",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168407": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168407/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168407/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168407/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168407/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168407.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168407/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168407/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168407/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168407/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168407/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168407/contributors",
+ "created_at": "2024-01-11T15:34:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168407/deployments",
+ "description": "Network models of frequency modulated sweep detection (Skorheim et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168407/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168407/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168407/forks",
+ "full_name": "OpenSourceBrain/168407",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168407/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168407/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168407/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168407.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168407",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168407/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168407",
+ "id": 742016529,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168407/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168407/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168407/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168407/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168407/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168407/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168407/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168407/milestones{/number}",
+ "mirror_url": null,
+ "name": "168407",
+ "node_id": "R_kgDOLDpGEQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168407/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168407/pulls{/number}",
+ "pushed_at": "2023-11-28T20:51:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168407/releases{/id}",
+ "size": 1088,
+ "ssh_url": "git@github.com:OpenSourceBrain/168407.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168407/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168407/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168407/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168407/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168407",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168407/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168407/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168407/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168407",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168414": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168414/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168414/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168414/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168414/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168414.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168414/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168414/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168414/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168414/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168414/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168414/contributors",
+ "created_at": "2024-01-11T15:34:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168414/deployments",
+ "description": "Effects of spinal cord stimulation on WDR dorsal horn network (Zhang et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168414/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168414/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168414/forks",
+ "full_name": "OpenSourceBrain/168414",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168414/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168414/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168414/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168414.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/168414",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168414/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168414",
+ "id": 742016550,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168414/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168414/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168414/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168414/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168414/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168414/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168414/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168414/milestones{/number}",
+ "mirror_url": null,
+ "name": "168414",
+ "node_id": "R_kgDOLDpGJg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168414/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168414/pulls{/number}",
+ "pushed_at": "2023-11-28T20:51:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168414/releases{/id}",
+ "size": 1002,
+ "ssh_url": "git@github.com:OpenSourceBrain/168414.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168414/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168414/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168414/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168414/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168414",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168414/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168414/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168414/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168414",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168418": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168418/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168418/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168418/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168418/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168418.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168418/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168418/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168418/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168418/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168418/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168418/contributors",
+ "created_at": "2024-01-11T15:34:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168418/deployments",
+ "description": "Understanding odor information segregation in the olfactory bulb by MC/TCs (Polese et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168418/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168418/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168418/forks",
+ "full_name": "OpenSourceBrain/168418",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168418/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168418/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168418/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168418.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168418",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168418/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168418",
+ "id": 742016565,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168418/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168418/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168418/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168418/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168418/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168418/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168418/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168418/milestones{/number}",
+ "mirror_url": null,
+ "name": "168418",
+ "node_id": "R_kgDOLDpGNQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168418/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168418/pulls{/number}",
+ "pushed_at": "2019-05-31T02:33:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168418/releases{/id}",
+ "size": 2431,
+ "ssh_url": "git@github.com:OpenSourceBrain/168418.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168418/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168418/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168418/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168418/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168418",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168418/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168418/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168418/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168418",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168590": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168590/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168590/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168590/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168590/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168590.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168590/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168590/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168590/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168590/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168590/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168590/contributors",
+ "created_at": "2024-01-11T15:34:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168590/deployments",
+ "description": "ELL pyramidal neuron (Simmonds and Chacron 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168590/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168590/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168590/forks",
+ "full_name": "OpenSourceBrain/168590",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168590/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168590/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168590/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168590.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168590",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168590/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168590",
+ "id": 742016574,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168590/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168590/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168590/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168590/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168590/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168590/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168590/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168590/milestones{/number}",
+ "mirror_url": null,
+ "name": "168590",
+ "node_id": "R_kgDOLDpGPg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168590/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168590/pulls{/number}",
+ "pushed_at": "2019-05-31T02:10:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168590/releases{/id}",
+ "size": 42,
+ "ssh_url": "git@github.com:OpenSourceBrain/168590.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168590/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168590/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168590/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168590/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168590",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168590/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168590/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168590/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168590",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168591": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168591/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168591/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168591/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168591/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168591.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168591/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168591/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168591/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168591/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168591/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168591/contributors",
+ "created_at": "2024-01-11T15:34:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168591/deployments",
+ "description": "3D olfactory bulb: operators (Migliore et al, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168591/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168591/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168591/forks",
+ "full_name": "OpenSourceBrain/168591",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168591/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168591/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168591/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168591.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168591",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168591/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168591",
+ "id": 742016589,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168591/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168591/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168591/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168591/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168591/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168591/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168591/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168591/milestones{/number}",
+ "mirror_url": null,
+ "name": "168591",
+ "node_id": "R_kgDOLDpGTQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168591/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168591/pulls{/number}",
+ "pushed_at": "2019-05-31T02:18:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168591/releases{/id}",
+ "size": 111,
+ "ssh_url": "git@github.com:OpenSourceBrain/168591.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168591/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168591/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168591/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168591/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168591",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168591/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168591/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168591/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168591",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168599": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168599/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168599/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168599/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168599/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168599.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168599/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168599/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168599/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168599/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168599/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168599/contributors",
+ "created_at": "2024-01-11T15:34:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168599/deployments",
+ "description": "Oscillations emerging from noise-driven NNs (Tchumatchenko & Clopath 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168599/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168599/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168599/forks",
+ "full_name": "OpenSourceBrain/168599",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168599/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168599/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168599/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168599.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168599",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168599/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168599",
+ "id": 742016598,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168599/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168599/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168599/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168599/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168599/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168599/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168599/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168599/milestones{/number}",
+ "mirror_url": null,
+ "name": "168599",
+ "node_id": "R_kgDOLDpGVg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168599/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168599/pulls{/number}",
+ "pushed_at": "2023-11-28T20:51:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168599/releases{/id}",
+ "size": 81,
+ "ssh_url": "git@github.com:OpenSourceBrain/168599.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168599/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168599/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168599/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168599/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168599",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168599/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168599/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168599/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168599",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168856": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168856/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168856/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168856/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168856/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168856.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168856/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168856/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168856/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168856/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168856/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168856/contributors",
+ "created_at": "2024-01-11T15:34:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168856/deployments",
+ "description": "A bistable model of Spike-Wave seizure and background activity (Taylor et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168856/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168856/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168856/forks",
+ "full_name": "OpenSourceBrain/168856",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168856/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168856/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168856/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168856.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168856",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168856/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168856",
+ "id": 742016609,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168856/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168856/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168856/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168856/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168856/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168856/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168856/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168856/milestones{/number}",
+ "mirror_url": null,
+ "name": "168856",
+ "node_id": "R_kgDOLDpGYQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168856/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168856/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168856/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/168856.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168856/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168856/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168856/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168856/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168856",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168856/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168856/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168856/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:34:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168856",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168858": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168858/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168858/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168858/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168858/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168858.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168858/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168858/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168858/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168858/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168858/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168858/contributors",
+ "created_at": "2024-01-11T15:35:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168858/deployments",
+ "description": "Rhesus Monkey Layer 3 Pyramidal Neurons: Young vs aged PFC (Coskren et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168858/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168858/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168858/forks",
+ "full_name": "OpenSourceBrain/168858",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168858/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168858/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168858/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168858.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168858",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168858/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168858",
+ "id": 742016627,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168858/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168858/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168858/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168858/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168858/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168858/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168858/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168858/milestones{/number}",
+ "mirror_url": null,
+ "name": "168858",
+ "node_id": "R_kgDOLDpGcw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168858/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168858/pulls{/number}",
+ "pushed_at": "2023-11-28T20:52:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168858/releases{/id}",
+ "size": 28915,
+ "ssh_url": "git@github.com:OpenSourceBrain/168858.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168858/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168858/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168858/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168858/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168858",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168858/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168858/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168858/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168858",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168861": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168861/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168861/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168861/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168861/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168861.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168861/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168861/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168861/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168861/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168861/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168861/contributors",
+ "created_at": "2024-01-11T15:35:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168861/deployments",
+ "description": "Neurite: electrophysiological-mechanical coupling simulation framework (Garcia-Grajales et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168861/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168861/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168861/forks",
+ "full_name": "OpenSourceBrain/168861",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168861/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168861/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168861/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168861.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168861",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168861/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168861",
+ "id": 742016639,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168861/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168861/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168861/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168861/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168861/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168861/languages",
+ "license": {
+ "key": "other",
+ "name": "Other",
+ "node_id": "MDc6TGljZW5zZTA=",
+ "spdx_id": "NOASSERTION",
+ "url": null
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168861/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168861/milestones{/number}",
+ "mirror_url": null,
+ "name": "168861",
+ "node_id": "R_kgDOLDpGfw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168861/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168861/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168861/releases{/id}",
+ "size": 96,
+ "ssh_url": "git@github.com:OpenSourceBrain/168861.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168861/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168861/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168861/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168861/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168861",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168861/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168861/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168861/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168861",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168866": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168866/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168866/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168866/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168866/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168866.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168866/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168866/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168866/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168866/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168866/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168866/contributors",
+ "created_at": "2024-01-11T15:35:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168866/deployments",
+ "description": "A spatial model of the intermediate superior colliculus (Moren et. al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168866/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168866/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168866/forks",
+ "full_name": "OpenSourceBrain/168866",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168866/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168866/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168866/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168866.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168866",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168866/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168866",
+ "id": 742016663,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168866/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168866/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168866/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168866/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168866/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168866/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168866/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168866/milestones{/number}",
+ "mirror_url": null,
+ "name": "168866",
+ "node_id": "R_kgDOLDpGlw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168866/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168866/pulls{/number}",
+ "pushed_at": "2019-05-31T03:18:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168866/releases{/id}",
+ "size": 7876,
+ "ssh_url": "git@github.com:OpenSourceBrain/168866.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168866/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168866/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168866/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168866/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168866",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168866/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168866/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168866/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168866",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168867": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168867/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168867/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168867/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168867/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168867.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168867/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168867/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168867/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168867/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168867/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168867/contributors",
+ "created_at": "2024-01-11T15:35:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168867/deployments",
+ "description": "Hierarchical network model of perceptual decision making (Wimmer et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168867/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168867/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168867/forks",
+ "full_name": "OpenSourceBrain/168867",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168867/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168867/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168867/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168867.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168867",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168867/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168867",
+ "id": 742016683,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168867/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168867/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168867/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168867/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168867/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168867/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168867/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168867/milestones{/number}",
+ "mirror_url": null,
+ "name": "168867",
+ "node_id": "R_kgDOLDpGqw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168867/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168867/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168867/releases{/id}",
+ "size": 236,
+ "ssh_url": "git@github.com:OpenSourceBrain/168867.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168867/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168867/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168867/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168867/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168867",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168867/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168867/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168867/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168867",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168874": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168874/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168874/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168874/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168874/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168874.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168874/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168874/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168874/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168874/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168874/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168874/contributors",
+ "created_at": "2024-01-11T15:35:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168874/deployments",
+ "description": "Neuronal dendrite calcium wave model (Neymotin et al, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168874/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168874/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168874/forks",
+ "full_name": "OpenSourceBrain/168874",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168874/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168874/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168874/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168874.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/168874",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168874/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168874",
+ "id": 742016694,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168874/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168874/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168874/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168874/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168874/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168874/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168874/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168874/milestones{/number}",
+ "mirror_url": null,
+ "name": "168874",
+ "node_id": "R_kgDOLDpGtg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168874/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168874/pulls{/number}",
+ "pushed_at": "2023-11-28T20:52:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168874/releases{/id}",
+ "size": 174,
+ "ssh_url": "git@github.com:OpenSourceBrain/168874.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168874/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168874/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168874/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168874/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168874",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168874/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168874/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168874/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168874",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168950": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168950/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168950/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168950/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168950/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168950.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168950/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168950/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168950/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168950/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168950/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168950/contributors",
+ "created_at": "2024-01-11T15:35:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168950/deployments",
+ "description": "Basis for temporal filters in the cerebellar granular layer (Roessert et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168950/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168950/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168950/forks",
+ "full_name": "OpenSourceBrain/168950",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168950/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168950/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168950/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168950.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168950",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168950/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168950",
+ "id": 742016713,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168950/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168950/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168950/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168950/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168950/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168950/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168950/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168950/milestones{/number}",
+ "mirror_url": null,
+ "name": "168950",
+ "node_id": "R_kgDOLDpGyQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168950/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168950/pulls{/number}",
+ "pushed_at": "2019-05-31T05:02:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168950/releases{/id}",
+ "size": 1326,
+ "ssh_url": "git@github.com:OpenSourceBrain/168950.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168950/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168950/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168950/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168950/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168950",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168950/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168950/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168950/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168950",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/168957": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/168957/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/168957/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/168957/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/168957/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/168957.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/168957/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/168957/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/168957/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/168957/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/168957/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/168957/contributors",
+ "created_at": "2024-01-11T15:35:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/168957/deployments",
+ "description": "Reichardt Model for Motion Detection in the Fly Visual System (Tuthill et al, 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/168957/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/168957/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/168957/forks",
+ "full_name": "OpenSourceBrain/168957",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/168957/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/168957/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/168957/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/168957.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/168957",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/168957/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/168957",
+ "id": 742016724,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/168957/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/168957/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/168957/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/168957/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/168957/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/168957/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/168957/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/168957/milestones{/number}",
+ "mirror_url": null,
+ "name": "168957",
+ "node_id": "R_kgDOLDpG1A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/168957/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/168957/pulls{/number}",
+ "pushed_at": "2019-05-31T04:23:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/168957/releases{/id}",
+ "size": 23,
+ "ssh_url": "git@github.com:OpenSourceBrain/168957.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/168957/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/168957/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/168957/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/168957/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/168957",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/168957/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/168957/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/168957/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/168957",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169023": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169023/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169023/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169023/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169023/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169023.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169023/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169023/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169023/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169023/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169023/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169023/contributors",
+ "created_at": "2024-01-11T15:35:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169023/deployments",
+ "description": "Single cell model with variable ion concentrations and Na+/K+ ATPase (Krishnan et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169023/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169023/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169023/forks",
+ "full_name": "OpenSourceBrain/169023",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169023/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169023/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169023/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169023.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169023",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169023/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169023",
+ "id": 742016738,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169023/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169023/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169023/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169023/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169023/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169023/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169023/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169023/milestones{/number}",
+ "mirror_url": null,
+ "name": "169023",
+ "node_id": "R_kgDOLDpG4g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169023/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169023/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169023/releases{/id}",
+ "size": 269,
+ "ssh_url": "git@github.com:OpenSourceBrain/169023.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169023/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169023/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169023/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169023/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169023",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169023/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169023/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169023/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169023",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169208": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169208/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169208/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169208/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169208/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169208.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169208/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169208/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169208/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169208/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169208/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169208/contributors",
+ "created_at": "2024-01-11T15:35:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169208/deployments",
+ "description": "Lillie Transition: onset of saltatory conduction in myelinating axons (Young et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169208/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169208/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169208/forks",
+ "full_name": "OpenSourceBrain/169208",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169208/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169208/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169208/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169208.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169208",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169208/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169208",
+ "id": 742016752,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169208/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169208/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169208/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169208/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169208/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169208/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169208/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169208/milestones{/number}",
+ "mirror_url": null,
+ "name": "169208",
+ "node_id": "R_kgDOLDpG8A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169208/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169208/pulls{/number}",
+ "pushed_at": "2023-07-08T15:28:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169208/releases{/id}",
+ "size": 2368,
+ "ssh_url": "git@github.com:OpenSourceBrain/169208.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169208/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169208/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169208/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169208/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169208",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169208/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169208/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169208/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169208",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169240": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169240/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169240/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169240/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169240/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169240.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169240/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169240/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169240/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169240/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169240/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169240/contributors",
+ "created_at": "2024-01-11T15:35:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169240/deployments",
+ "description": "Dentate granule cell: mAHP & sAHP; SK & Kv7/M channels (Mateos-Aparicio et al., 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169240/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169240/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169240/forks",
+ "full_name": "OpenSourceBrain/169240",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169240/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169240/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169240/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169240.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169240",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169240/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169240",
+ "id": 742016764,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169240/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169240/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169240/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169240/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169240/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169240/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169240/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169240/milestones{/number}",
+ "mirror_url": null,
+ "name": "169240",
+ "node_id": "R_kgDOLDpG_A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169240/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169240/pulls{/number}",
+ "pushed_at": "2019-05-31T04:27:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169240/releases{/id}",
+ "size": 88,
+ "ssh_url": "git@github.com:OpenSourceBrain/169240.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169240/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169240/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169240/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169240/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169240",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169240/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169240/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169240/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169240",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169242": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169242/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169242/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169242/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169242/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169242.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169242/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169242/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169242/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169242/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169242/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169242/contributors",
+ "created_at": "2024-01-11T15:35:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169242/deployments",
+ "description": "Adaptation of Short-Term Plasticity parameters (Esposito et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169242/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169242/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169242/forks",
+ "full_name": "OpenSourceBrain/169242",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169242/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169242/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169242/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169242.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169242",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169242/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169242",
+ "id": 742016783,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169242/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169242/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169242/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169242/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169242/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169242/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169242/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169242/milestones{/number}",
+ "mirror_url": null,
+ "name": "169242",
+ "node_id": "R_kgDOLDpHDw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169242/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169242/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169242/releases{/id}",
+ "size": 19,
+ "ssh_url": "git@github.com:OpenSourceBrain/169242.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169242/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169242/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169242/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169242/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169242",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169242/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169242/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169242/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169242",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169278": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169278/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169278/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169278/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169278/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169278.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169278/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169278/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169278/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169278/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169278/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169278/contributors",
+ "created_at": "2024-01-11T15:35:24Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169278/deployments",
+ "description": "Cochlea: inner ear models in Python (Zilany et al 2009, 2014; Holmberg M 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169278/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169278/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169278/forks",
+ "full_name": "OpenSourceBrain/169278",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169278/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169278/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169278/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169278.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/169278",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169278/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169278",
+ "id": 742016805,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169278/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169278/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169278/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169278/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169278/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169278/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169278/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169278/milestones{/number}",
+ "mirror_url": null,
+ "name": "169278",
+ "node_id": "R_kgDOLDpHJQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169278/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169278/pulls{/number}",
+ "pushed_at": "2023-12-23T03:49:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169278/releases{/id}",
+ "size": 497,
+ "ssh_url": "git@github.com:OpenSourceBrain/169278.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169278/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169278/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169278/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169278/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169278",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169278/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169278/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169278/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169278",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169457": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169457/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169457/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169457/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169457/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169457.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169457/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169457/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169457/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169457/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169457/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169457/contributors",
+ "created_at": "2024-01-11T15:35:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169457/deployments",
+ "description": "Schiz.-linked gene effects on intrinsic single-neuron excitability (Maki-Marttunen et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169457/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169457/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169457/forks",
+ "full_name": "OpenSourceBrain/169457",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169457/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169457/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169457/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169457.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169457",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169457/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169457",
+ "id": 742016821,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169457/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169457/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169457/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169457/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169457/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169457/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169457/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169457/milestones{/number}",
+ "mirror_url": null,
+ "name": "169457",
+ "node_id": "R_kgDOLDpHNQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169457/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169457/pulls{/number}",
+ "pushed_at": "2019-05-31T05:02:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169457/releases{/id}",
+ "size": 228,
+ "ssh_url": "git@github.com:OpenSourceBrain/169457.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169457/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169457/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169457/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169457/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169457",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169457/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169457/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169457/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169457",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169775": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169775/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169775/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169775/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169775/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169775.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169775/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169775/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169775/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169775/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169775/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169775/contributors",
+ "created_at": "2024-01-11T15:35:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169775/deployments",
+ "description": "Default mode network model (Matsui et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169775/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169775/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169775/forks",
+ "full_name": "OpenSourceBrain/169775",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169775/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169775/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169775/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169775.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169775",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169775/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169775",
+ "id": 742016832,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169775/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169775/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169775/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169775/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169775/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169775/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169775/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169775/milestones{/number}",
+ "mirror_url": null,
+ "name": "169775",
+ "node_id": "R_kgDOLDpHQA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169775/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169775/pulls{/number}",
+ "pushed_at": "2019-05-31T03:19:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169775/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/169775.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169775/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169775/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169775/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169775/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169775",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169775/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169775/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169775/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169775",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169983": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169983/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169983/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169983/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169983/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169983.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169983/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169983/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169983/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169983/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169983/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169983/contributors",
+ "created_at": "2024-01-11T15:35:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169983/deployments",
+ "description": "Unsupervised learning of an efficient short-term memory network (Vertechi, Brendel & Machens 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169983/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169983/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169983/forks",
+ "full_name": "OpenSourceBrain/169983",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169983/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169983/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169983/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169983.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169983",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169983/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169983",
+ "id": 742016848,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169983/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169983/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169983/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169983/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169983/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169983/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169983/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169983/milestones{/number}",
+ "mirror_url": null,
+ "name": "169983",
+ "node_id": "R_kgDOLDpHUA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169983/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169983/pulls{/number}",
+ "pushed_at": "2019-05-31T02:54:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169983/releases{/id}",
+ "size": 343,
+ "ssh_url": "git@github.com:OpenSourceBrain/169983.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169983/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169983/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169983/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169983/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169983",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169983/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169983/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169983/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169983",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169984": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169984/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169984/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169984/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169984/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169984.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169984/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169984/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169984/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169984/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169984/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169984/contributors",
+ "created_at": "2024-01-11T15:35:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169984/deployments",
+ "description": "Striatal NN model of MSNs and FSIs investigated effects of dopamine depletion (Damodaran et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169984/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169984/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169984/forks",
+ "full_name": "OpenSourceBrain/169984",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169984/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169984/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169984/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169984.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169984",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169984/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169984",
+ "id": 742016865,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169984/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169984/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169984/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169984/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169984/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169984/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169984/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169984/milestones{/number}",
+ "mirror_url": null,
+ "name": "169984",
+ "node_id": "R_kgDOLDpHYQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169984/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169984/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169984/releases{/id}",
+ "size": 1798,
+ "ssh_url": "git@github.com:OpenSourceBrain/169984.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169984/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169984/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169984/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169984/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169984",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169984/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169984/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169984/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169984",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/169985": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/169985/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/169985/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/169985/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/169985/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/169985.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/169985/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/169985/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/169985/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/169985/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/169985/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/169985/contributors",
+ "created_at": "2024-01-11T15:35:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/169985/deployments",
+ "description": "NMDAR & GABAB/KIR Give Bistable Dendrites: Working Memory & Sequence Readout (Sanders et al., 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/169985/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/169985/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/169985/forks",
+ "full_name": "OpenSourceBrain/169985",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/169985/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/169985/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/169985/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/169985.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/169985",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/169985/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/169985",
+ "id": 742016880,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/169985/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/169985/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/169985/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/169985/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/169985/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/169985/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/169985/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/169985/milestones{/number}",
+ "mirror_url": null,
+ "name": "169985",
+ "node_id": "R_kgDOLDpHcA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/169985/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/169985/pulls{/number}",
+ "pushed_at": "2019-05-31T03:18:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/169985/releases{/id}",
+ "size": 27,
+ "ssh_url": "git@github.com:OpenSourceBrain/169985.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/169985/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/169985/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/169985/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/169985/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/169985",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/169985/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/169985/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/169985/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/169985",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/170029": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/170029/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/170029/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/170029/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/170029/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/170029.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/170029/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/170029/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/170029/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/170029/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/170029/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/170029/contributors",
+ "created_at": "2024-01-11T15:35:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/170029/deployments",
+ "description": "Microglial cytokine network (Anderson et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/170029/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/170029/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/170029/forks",
+ "full_name": "OpenSourceBrain/170029",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/170029/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/170029/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/170029/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/170029.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/170029",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/170029/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/170029",
+ "id": 742016893,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/170029/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/170029/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/170029/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/170029/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/170029/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/170029/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/170029/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/170029/milestones{/number}",
+ "mirror_url": null,
+ "name": "170029",
+ "node_id": "R_kgDOLDpHfQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/170029/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/170029/pulls{/number}",
+ "pushed_at": "2018-04-23T18:35:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/170029/releases{/id}",
+ "size": 130,
+ "ssh_url": "git@github.com:OpenSourceBrain/170029.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/170029/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/170029/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/170029/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/170029/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/170029",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/170029/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/170029/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/170029/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/170029",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/170030": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/170030/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/170030/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/170030/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/170030/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/170030.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/170030/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/170030/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/170030/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/170030/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/170030/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/170030/contributors",
+ "created_at": "2024-01-11T15:35:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/170030/deployments",
+ "description": "Early-onset epileptic encephalopathy (Miceli et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/170030/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/170030/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/170030/forks",
+ "full_name": "OpenSourceBrain/170030",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/170030/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/170030/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/170030/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/170030.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/170030",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/170030/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/170030",
+ "id": 742016908,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/170030/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/170030/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/170030/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/170030/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/170030/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/170030/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/170030/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/170030/milestones{/number}",
+ "mirror_url": null,
+ "name": "170030",
+ "node_id": "R_kgDOLDpHjA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/170030/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/170030/pulls{/number}",
+ "pushed_at": "2019-05-31T03:22:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/170030/releases{/id}",
+ "size": 74,
+ "ssh_url": "git@github.com:OpenSourceBrain/170030.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/170030/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/170030/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/170030/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/170030/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/170030",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/170030/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/170030/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/170030/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/170030",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/17663": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/17663/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/17663/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/17663/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/17663/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/17663.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/17663/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/17663/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/17663/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/17663/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/17663/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/17663/contributors",
+ "created_at": "2024-01-08T14:05:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/17663/deployments",
+ "description": "Thalamic reticular neurons: the role of Ca currents (Destexhe et al 1996)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/17663/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/17663/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/17663/forks",
+ "full_name": "OpenSourceBrain/17663",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/17663/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/17663/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/17663/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/17663.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/17663",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/17663/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/17663",
+ "id": 740518271,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/17663/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/17663/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/17663/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/17663/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/17663/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/17663/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/17663/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/17663/milestones{/number}",
+ "mirror_url": null,
+ "name": "17663",
+ "node_id": "R_kgDOLCNpfw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/17663/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/17663/pulls{/number}",
+ "pushed_at": "2018-04-23T18:35:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/17663/releases{/id}",
+ "size": 32,
+ "ssh_url": "git@github.com:OpenSourceBrain/17663.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/17663/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/17663/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/17663/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/17663/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/17663",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/17663/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/17663/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/17663/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/17663",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/17664": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/17664/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/17664/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/17664/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/17664/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/17664.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/17664/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/17664/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/17664/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/17664/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/17664/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/17664/contributors",
+ "created_at": "2024-01-08T14:05:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/17664/deployments",
+ "description": "Cerebellar purkinje cell: K and Ca channels regulate APs (Miyasho et al 2001)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/17664/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/17664/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/17664/forks",
+ "full_name": "OpenSourceBrain/17664",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/17664/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/17664/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/17664/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/17664.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/17664",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/17664/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/17664",
+ "id": 740518285,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/17664/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/17664/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/17664/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/17664/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/17664/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/17664/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/17664/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/17664/milestones{/number}",
+ "mirror_url": null,
+ "name": "17664",
+ "node_id": "R_kgDOLCNpjQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/17664/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/17664/pulls{/number}",
+ "pushed_at": "2018-04-23T18:36:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/17664/releases{/id}",
+ "size": 21,
+ "ssh_url": "git@github.com:OpenSourceBrain/17664.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/17664/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/17664/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/17664/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/17664/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/17664",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/17664/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/17664/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/17664/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/17664",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/180370": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/180370/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/180370/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/180370/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/180370/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/180370.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/180370/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/180370/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/180370/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/180370/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/180370/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/180370/contributors",
+ "created_at": "2024-01-11T15:35:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/180370/deployments",
+ "description": "Axon-somatic back-propagation in a detailed model of cat spinal motoneuron (Balbi et al, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/180370/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/180370/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/180370/forks",
+ "full_name": "OpenSourceBrain/180370",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/180370/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/180370/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/180370/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/180370.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/180370",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/180370/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/180370",
+ "id": 742016926,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/180370/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/180370/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/180370/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/180370/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/180370/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/180370/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/180370/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/180370/milestones{/number}",
+ "mirror_url": null,
+ "name": "180370",
+ "node_id": "R_kgDOLDpHng",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/180370/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/180370/pulls{/number}",
+ "pushed_at": "2019-05-31T02:35:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/180370/releases{/id}",
+ "size": 4705,
+ "ssh_url": "git@github.com:OpenSourceBrain/180370.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/180370/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/180370/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/180370/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/180370/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/180370",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/180370/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/180370/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/180370/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/180370",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/180372": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/180372/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/180372/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/180372/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/180372/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/180372.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/180372/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/180372/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/180372/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/180372/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/180372/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/180372/contributors",
+ "created_at": "2024-01-11T15:35:42Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/180372/deployments",
+ "description": "Large-scale neuromusculoskeletal model of human upright standing (Elias et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/180372/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/180372/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/180372/forks",
+ "full_name": "OpenSourceBrain/180372",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/180372/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/180372/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/180372/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/180372.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/180372",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/180372/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/180372",
+ "id": 742016947,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/180372/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/180372/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/180372/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/180372/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/180372/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/180372/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/180372/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/180372/milestones{/number}",
+ "mirror_url": null,
+ "name": "180372",
+ "node_id": "R_kgDOLDpHsw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/180372/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/180372/pulls{/number}",
+ "pushed_at": "2023-12-23T03:49:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/180372/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/180372.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/180372/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/180372/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/180372/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/180372/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/180372",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/180372/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/180372/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/180372/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/180372",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/180373": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/180373/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/180373/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/180373/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/180373/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/180373.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/180373/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/180373/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/180373/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/180373/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/180373/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/180373/contributors",
+ "created_at": "2024-01-11T15:35:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/180373/deployments",
+ "description": "Layer 5 Pyramidal Neuron (Shai et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/180373/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/180373/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/180373/forks",
+ "full_name": "OpenSourceBrain/180373",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/180373/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/180373/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/180373/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/180373.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/180373",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/180373/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/180373",
+ "id": 742016958,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/180373/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/180373/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/180373/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/180373/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/180373/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/180373/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/180373/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/180373/milestones{/number}",
+ "mirror_url": null,
+ "name": "180373",
+ "node_id": "R_kgDOLDpHvg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/180373/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/180373/pulls{/number}",
+ "pushed_at": "2023-11-28T20:52:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/180373/releases{/id}",
+ "size": 1055,
+ "ssh_url": "git@github.com:OpenSourceBrain/180373.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/180373/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/180373/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/180373/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/180373/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/180373",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/180373/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/180373/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/180373/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/180373",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/180789": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/180789/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/180789/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/180789/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/180789/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/180789.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/180789/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/180789/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/180789/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/180789/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/180789/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/180789/contributors",
+ "created_at": "2024-01-11T15:35:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/180789/deployments",
+ "description": "Alcohol action in a detailed Purkinje neuron model and an efficient simplified model (Forrest 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/180789/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/180789/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/180789/forks",
+ "full_name": "OpenSourceBrain/180789",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/180789/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/180789/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/180789/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/180789.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/180789",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/180789/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/180789",
+ "id": 742016977,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/180789/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/180789/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/180789/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/180789/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/180789/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/180789/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/180789/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/180789/milestones{/number}",
+ "mirror_url": null,
+ "name": "180789",
+ "node_id": "R_kgDOLDpH0Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/180789/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/180789/pulls{/number}",
+ "pushed_at": "2019-05-31T02:10:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/180789/releases{/id}",
+ "size": 58,
+ "ssh_url": "git@github.com:OpenSourceBrain/180789.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/180789/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/180789/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/180789/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/180789/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/180789",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/180789/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/180789/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/180789/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/180789",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/180791": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/180791/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/180791/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/180791/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/180791/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/180791.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/180791/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/180791/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/180791/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/180791/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/180791/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/180791/contributors",
+ "created_at": "2024-01-11T15:35:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/180791/deployments",
+ "description": "Modeling hebbian and homeostatic plasticity (Toyoizumi et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/180791/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/180791/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/180791/forks",
+ "full_name": "OpenSourceBrain/180791",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/180791/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/180791/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/180791/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/180791.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/180791",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/180791/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/180791",
+ "id": 742016996,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/180791/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/180791/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/180791/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/180791/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/180791/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/180791/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/180791/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/180791/milestones{/number}",
+ "mirror_url": null,
+ "name": "180791",
+ "node_id": "R_kgDOLDpH5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/180791/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/180791/pulls{/number}",
+ "pushed_at": "2019-05-31T05:04:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/180791/releases{/id}",
+ "size": 42,
+ "ssh_url": "git@github.com:OpenSourceBrain/180791.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/180791/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/180791/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/180791/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/180791/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/180791",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/180791/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/180791/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/180791/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/180791",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/180823": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/180823/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/180823/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/180823/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/180823/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/180823.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/180823/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/180823/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/180823/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/180823/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/180823/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/180823/contributors",
+ "created_at": "2024-01-11T15:35:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/180823/deployments",
+ "description": "Cerebellar memory consolidation model (Yamazaki et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/180823/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/180823/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/180823/forks",
+ "full_name": "OpenSourceBrain/180823",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/180823/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/180823/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/180823/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/180823.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/180823",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/180823/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/180823",
+ "id": 742017016,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/180823/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/180823/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/180823/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/180823/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/180823/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/180823/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/180823/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/180823/milestones{/number}",
+ "mirror_url": null,
+ "name": "180823",
+ "node_id": "R_kgDOLDpH-A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/180823/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/180823/pulls{/number}",
+ "pushed_at": "2019-06-03T19:52:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/180823/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/180823.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/180823/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/180823/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/180823/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/180823/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/180823",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/180823/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/180823/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/180823/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/180823",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/181010": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/181010/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/181010/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/181010/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/181010/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/181010.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/181010/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/181010/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/181010/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/181010/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/181010/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/181010/contributors",
+ "created_at": "2024-01-11T15:35:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/181010/deployments",
+ "description": "Model of working memory based on negative derivative feedback (Lim and Goldman, 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/181010/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/181010/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/181010/forks",
+ "full_name": "OpenSourceBrain/181010",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/181010/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/181010/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/181010/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/181010.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/181010",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/181010/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/181010",
+ "id": 742017024,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/181010/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/181010/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/181010/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/181010/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/181010/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/181010/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/181010/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/181010/milestones{/number}",
+ "mirror_url": null,
+ "name": "181010",
+ "node_id": "R_kgDOLDpIAA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/181010/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/181010/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/181010/releases{/id}",
+ "size": 27,
+ "ssh_url": "git@github.com:OpenSourceBrain/181010.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/181010/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/181010/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/181010/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/181010/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/181010",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/181010/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/181010/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/181010/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/181010",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/181032": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/181032/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/181032/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/181032/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/181032/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/181032.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/181032/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/181032/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/181032/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/181032/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/181032/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/181032/contributors",
+ "created_at": "2024-01-11T15:35:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/181032/deployments",
+ "description": "Effect of polysynaptic facilitaiton between piriform-hippocampal network stages (Trieu et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/181032/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/181032/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/181032/forks",
+ "full_name": "OpenSourceBrain/181032",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/181032/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/181032/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/181032/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/181032.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/181032",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/181032/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/181032",
+ "id": 742017035,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/181032/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/181032/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/181032/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/181032/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/181032/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/181032/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/181032/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/181032/milestones{/number}",
+ "mirror_url": null,
+ "name": "181032",
+ "node_id": "R_kgDOLDpICw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/181032/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/181032/pulls{/number}",
+ "pushed_at": "2019-05-31T02:54:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/181032/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/181032.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/181032/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/181032/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/181032/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/181032/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/181032",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/181032/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/181032/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/181032/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/181032",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/181035": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/181035/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/181035/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/181035/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/181035/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/181035.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/181035/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/181035/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/181035/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/181035/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/181035/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/181035/contributors",
+ "created_at": "2024-01-11T15:35:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/181035/deployments",
+ "description": "FFV1MT: A V1-MT feedforward architecture for optical flow estimation (Solari et a., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/181035/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/181035/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/181035/forks",
+ "full_name": "OpenSourceBrain/181035",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/181035/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/181035/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/181035/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/181035.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/181035",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/181035/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/181035",
+ "id": 742017060,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/181035/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/181035/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/181035/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/181035/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/181035/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/181035/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/181035/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/181035/milestones{/number}",
+ "mirror_url": null,
+ "name": "181035",
+ "node_id": "R_kgDOLDpIJA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/181035/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/181035/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/181035/releases{/id}",
+ "size": 793,
+ "ssh_url": "git@github.com:OpenSourceBrain/181035.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/181035/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/181035/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/181035/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/181035/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/181035",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/181035/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/181035/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/181035/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/181035",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/181962": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/181962/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/181962/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/181962/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/181962/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/181962.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/181962/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/181962/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/181962/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/181962/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/181962/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/181962/contributors",
+ "created_at": "2024-01-11T15:35:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/181962/deployments",
+ "description": "Model of eupnea and sigh generation in respiratory network (Toporikova et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/181962/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/181962/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/181962/forks",
+ "full_name": "OpenSourceBrain/181962",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/181962/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/181962/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/181962/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/181962.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/181962",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/181962/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/181962",
+ "id": 742017082,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/181962/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/181962/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/181962/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/181962/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/181962/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/181962/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/181962/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/181962/milestones{/number}",
+ "mirror_url": null,
+ "name": "181962",
+ "node_id": "R_kgDOLDpIOg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/181962/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/181962/pulls{/number}",
+ "pushed_at": "2019-05-31T03:24:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/181962/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/181962.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/181962/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/181962/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/181962/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/181962/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/181962",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/181962/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/181962/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/181962/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:35:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/181962",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/181967": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/181967/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/181967/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/181967/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/181967/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/181967.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/181967/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/181967/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/181967/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/181967/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/181967/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/181967/contributors",
+ "created_at": "2024-01-11T15:36:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/181967/deployments",
+ "description": "Long time windows from theta modulated inhib. in entorhinal\u2013hippo. loop (Cutsuridis & Poirazi 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/181967/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/181967/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/181967/forks",
+ "full_name": "OpenSourceBrain/181967",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/181967/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/181967/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/181967/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/181967.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/181967",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/181967/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/181967",
+ "id": 742017097,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/181967/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/181967/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/181967/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/181967/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/181967/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/181967/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/181967/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/181967/milestones{/number}",
+ "mirror_url": null,
+ "name": "181967",
+ "node_id": "R_kgDOLDpISQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/181967/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/181967/pulls{/number}",
+ "pushed_at": "2023-11-28T20:52:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/181967/releases{/id}",
+ "size": 236,
+ "ssh_url": "git@github.com:OpenSourceBrain/181967.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/181967/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/181967/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/181967/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/181967/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/181967",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/181967/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/181967/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/181967/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/181967",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/18197": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/18197/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/18197/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/18197/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/18197/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/18197.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/18197/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/18197/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/18197/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/18197/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/18197/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/18197/contributors",
+ "created_at": "2024-01-08T14:05:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/18197/deployments",
+ "description": "Efficient Method for Computing Synaptic Conductance (Destexhe et al 1994)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/18197/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/18197/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/18197/forks",
+ "full_name": "OpenSourceBrain/18197",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/18197/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/18197/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/18197/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/18197.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/18197",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/18197/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/18197",
+ "id": 740518307,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/18197/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/18197/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/18197/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/18197/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/18197/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/18197/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/18197/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/18197/milestones{/number}",
+ "mirror_url": null,
+ "name": "18197",
+ "node_id": "R_kgDOLCNpow",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/18197/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/18197/pulls{/number}",
+ "pushed_at": "2019-05-31T04:35:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/18197/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/18197.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/18197/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/18197/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/18197/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/18197/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/18197",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/18197/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/18197/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/18197/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/18197",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/18198": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/18198/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/18198/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/18198/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/18198/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/18198.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/18198/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/18198/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/18198/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/18198/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/18198/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/18198/contributors",
+ "created_at": "2024-01-08T14:05:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/18198/deployments",
+ "description": "Application of a common kinetic formalism for synaptic models (Destexhe et al 1994)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/18198/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/18198/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/18198/forks",
+ "full_name": "OpenSourceBrain/18198",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/18198/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/18198/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/18198/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/18198.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/18198",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/18198/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/18198",
+ "id": 740518322,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/18198/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/18198/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/18198/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/18198/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/18198/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/18198/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/18198/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/18198/milestones{/number}",
+ "mirror_url": null,
+ "name": "18198",
+ "node_id": "R_kgDOLCNpsg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/18198/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/18198/pulls{/number}",
+ "pushed_at": "2018-04-23T18:37:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/18198/releases{/id}",
+ "size": 24,
+ "ssh_url": "git@github.com:OpenSourceBrain/18198.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/18198/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/18198/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/18198/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/18198/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/18198",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/18198/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/18198/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/18198/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/18198",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182129": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182129/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182129/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182129/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182129/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182129.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182129/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182129/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182129/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182129/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182129/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182129/contributors",
+ "created_at": "2024-01-11T15:36:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182129/deployments",
+ "description": "Computational modeling of gephyrin-dependent inhibitory transsynaptic signaling (Lupascu et al 2020)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182129/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182129/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182129/forks",
+ "full_name": "OpenSourceBrain/182129",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182129/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182129/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182129/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182129.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182129",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182129/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182129",
+ "id": 742017114,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182129/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182129/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182129/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182129/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182129/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182129/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182129/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182129/milestones{/number}",
+ "mirror_url": null,
+ "name": "182129",
+ "node_id": "R_kgDOLDpIWg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182129/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182129/pulls{/number}",
+ "pushed_at": "2023-11-28T20:53:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182129/releases{/id}",
+ "size": 1726,
+ "ssh_url": "git@github.com:OpenSourceBrain/182129.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182129/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182129/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182129/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182129/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182129",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182129/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182129/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182129/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182129",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182134": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182134/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182134/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182134/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182134/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182134.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182134/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182134/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182134/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182134/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182134/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182134/contributors",
+ "created_at": "2024-01-11T15:36:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182134/deployments",
+ "description": "Normal ripples, abnormal ripples, and fast ripples in a hippocampal model (Fink et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182134/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182134/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182134/forks",
+ "full_name": "OpenSourceBrain/182134",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182134/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182134/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182134/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182134.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/182134",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182134/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182134",
+ "id": 742017127,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182134/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182134/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182134/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182134/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182134/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182134/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182134/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182134/milestones{/number}",
+ "mirror_url": null,
+ "name": "182134",
+ "node_id": "R_kgDOLDpIZw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182134/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182134/pulls{/number}",
+ "pushed_at": "2018-04-23T18:37:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182134/releases{/id}",
+ "size": 85,
+ "ssh_url": "git@github.com:OpenSourceBrain/182134.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182134/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182134/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182134/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182134/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182134",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182134/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182134/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182134/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182134",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182135": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182135/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182135/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182135/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182135/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182135.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182135/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182135/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182135/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182135/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182135/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182135/contributors",
+ "created_at": "2024-01-11T15:36:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182135/deployments",
+ "description": "NETMORPH: creates NNs with realistic neuron morphologies (Koene et al. 2009, van Ooyen et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182135/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182135/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182135/forks",
+ "full_name": "OpenSourceBrain/182135",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182135/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182135/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182135/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182135.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182135",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182135/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182135",
+ "id": 742017140,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182135/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182135/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182135/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182135/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182135/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182135/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182135/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182135/milestones{/number}",
+ "mirror_url": null,
+ "name": "182135",
+ "node_id": "R_kgDOLDpIdA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182135/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182135/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182135/releases{/id}",
+ "size": 10340,
+ "ssh_url": "git@github.com:OpenSourceBrain/182135.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182135/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182135/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182135/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182135/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182135",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182135/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182135/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182135/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182135",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182142": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182142/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182142/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182142/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182142/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182142.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182142/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182142/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182142/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182142/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182142/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182142/contributors",
+ "created_at": "2024-01-11T15:36:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182142/deployments",
+ "description": "Active zone model of Ca2+ secretion coupling (Keller et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182142/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182142/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182142/forks",
+ "full_name": "OpenSourceBrain/182142",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182142/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182142/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182142/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182142.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182142",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182142/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182142",
+ "id": 742017162,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182142/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182142/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182142/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182142/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182142/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182142/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182142/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182142/milestones{/number}",
+ "mirror_url": null,
+ "name": "182142",
+ "node_id": "R_kgDOLDpIig",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182142/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182142/pulls{/number}",
+ "pushed_at": "2019-05-31T04:50:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182142/releases{/id}",
+ "size": 4112,
+ "ssh_url": "git@github.com:OpenSourceBrain/182142.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182142/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182142/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182142/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182142/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182142",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182142/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182142/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182142/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182142",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182373": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182373/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182373/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182373/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182373/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182373.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182373/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182373/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182373/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182373/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182373/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182373/contributors",
+ "created_at": "2024-01-11T15:36:11Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182373/deployments",
+ "description": "Inhibitory cells enable sparse coding in V1 model (King et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182373/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182373/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182373/forks",
+ "full_name": "OpenSourceBrain/182373",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182373/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182373/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182373/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182373.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/182373",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182373/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182373",
+ "id": 742017184,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182373/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182373/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182373/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182373/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182373/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182373/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182373/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182373/milestones{/number}",
+ "mirror_url": null,
+ "name": "182373",
+ "node_id": "R_kgDOLDpIoA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182373/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182373/pulls{/number}",
+ "pushed_at": "2023-12-23T03:49:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182373/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/182373.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182373/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182373/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182373/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182373/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182373",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182373/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182373/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182373/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182373",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182515": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182515/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182515/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182515/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182515/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182515.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182515/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182515/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182515/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182515/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182515/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182515/contributors",
+ "created_at": "2024-01-11T15:36:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182515/deployments",
+ "description": "CA1 pyramidal neuron (Ferguson et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182515/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182515/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182515/forks",
+ "full_name": "OpenSourceBrain/182515",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182515/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182515/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182515/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182515.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182515",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182515/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182515",
+ "id": 742017197,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182515/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182515/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182515/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182515/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182515/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182515/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182515/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182515/milestones{/number}",
+ "mirror_url": null,
+ "name": "182515",
+ "node_id": "R_kgDOLDpIrQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182515/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182515/pulls{/number}",
+ "pushed_at": "2019-05-31T03:18:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182515/releases{/id}",
+ "size": 211,
+ "ssh_url": "git@github.com:OpenSourceBrain/182515.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182515/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182515/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182515/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182515/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182515",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182515/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182515/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182515/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182515",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182685": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182685/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182685/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182685/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182685/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182685.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182685/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182685/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182685/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182685/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182685/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182685/contributors",
+ "created_at": "2024-01-11T15:36:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182685/deployments",
+ "description": "Models of Vector Navigation with Grid Cells (Bush et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182685/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182685/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182685/forks",
+ "full_name": "OpenSourceBrain/182685",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182685/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182685/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182685/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182685.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182685",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182685/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182685",
+ "id": 742017216,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182685/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182685/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182685/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182685/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182685/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182685/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182685/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182685/milestones{/number}",
+ "mirror_url": null,
+ "name": "182685",
+ "node_id": "R_kgDOLDpIwA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182685/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182685/pulls{/number}",
+ "pushed_at": "2019-05-31T03:34:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182685/releases{/id}",
+ "size": 865,
+ "ssh_url": "git@github.com:OpenSourceBrain/182685.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182685/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182685/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182685/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182685/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182685",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182685/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182685/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182685/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182685",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182758": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182758/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182758/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182758/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182758/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182758.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182758/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182758/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182758/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182758/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182758/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182758/contributors",
+ "created_at": "2024-01-11T15:36:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182758/deployments",
+ "description": "Activity patterns in a subthalamopallidal network of the basal ganglia model (Terman et al 2002)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182758/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182758/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182758/forks",
+ "full_name": "OpenSourceBrain/182758",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182758/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182758/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182758/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182758.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/182758",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182758/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182758",
+ "id": 742017228,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182758/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182758/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182758/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182758/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182758/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182758/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182758/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182758/milestones{/number}",
+ "mirror_url": null,
+ "name": "182758",
+ "node_id": "R_kgDOLDpIzA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182758/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182758/pulls{/number}",
+ "pushed_at": "2022-02-25T04:36:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182758/releases{/id}",
+ "size": 598,
+ "ssh_url": "git@github.com:OpenSourceBrain/182758.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182758/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182758/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182758/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182758/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182758",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182758/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182758/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182758/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182758",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182759": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182759/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182759/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182759/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182759/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182759.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182759/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182759/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182759/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182759/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182759/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182759/contributors",
+ "created_at": "2024-01-11T15:36:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182759/deployments",
+ "description": "Orientation selectivity in inhibition-dominated recurrent networks (Sadeh and Rotter, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182759/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182759/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182759/forks",
+ "full_name": "OpenSourceBrain/182759",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182759/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182759/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182759/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182759.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182759",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182759/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182759",
+ "id": 742017249,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182759/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182759/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182759/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182759/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182759/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182759/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182759/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182759/milestones{/number}",
+ "mirror_url": null,
+ "name": "182759",
+ "node_id": "R_kgDOLDpI4Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182759/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182759/pulls{/number}",
+ "pushed_at": "2019-05-31T02:36:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182759/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/182759.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182759/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182759/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182759/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182759/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182759",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182759/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182759/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182759/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182759",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182784": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182784/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182784/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182784/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182784/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182784.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182784/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182784/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182784/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182784/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182784/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182784/contributors",
+ "created_at": "2024-01-11T15:36:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182784/deployments",
+ "description": "Functional balanced networks with synaptic plasticity (Sadeh et al, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182784/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182784/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182784/forks",
+ "full_name": "OpenSourceBrain/182784",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182784/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182784/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182784/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182784.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182784",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182784/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182784",
+ "id": 742017265,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182784/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182784/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182784/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182784/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182784/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182784/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182784/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182784/milestones{/number}",
+ "mirror_url": null,
+ "name": "182784",
+ "node_id": "R_kgDOLDpI8Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182784/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182784/pulls{/number}",
+ "pushed_at": "2019-05-31T04:27:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182784/releases{/id}",
+ "size": 895,
+ "ssh_url": "git@github.com:OpenSourceBrain/182784.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182784/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182784/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182784/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182784/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182784",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182784/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182784/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182784/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182784",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182785": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182785/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182785/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182785/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182785/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182785.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182785/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182785/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182785/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182785/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182785/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182785/contributors",
+ "created_at": "2024-01-11T15:36:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182785/deployments",
+ "description": "3D-printer visualization of NEURON models (McDougal and Shepherd, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182785/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182785/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182785/forks",
+ "full_name": "OpenSourceBrain/182785",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182785/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182785/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182785/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182785.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182785",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182785/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182785",
+ "id": 742017279,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182785/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182785/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182785/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182785/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182785/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182785/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182785/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182785/milestones{/number}",
+ "mirror_url": null,
+ "name": "182785",
+ "node_id": "R_kgDOLDpI_w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182785/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182785/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182785/releases{/id}",
+ "size": 28,
+ "ssh_url": "git@github.com:OpenSourceBrain/182785.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182785/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182785/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182785/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182785/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182785",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182785/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182785/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182785/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182785",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182797": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182797/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182797/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182797/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182797/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182797.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182797/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182797/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182797/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182797/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182797/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182797/contributors",
+ "created_at": "2024-01-11T15:36:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182797/deployments",
+ "description": "Multi-comp. CA1 O-LM interneuron model with varying dendritic Ih distributions (Sekulic et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182797/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182797/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182797/forks",
+ "full_name": "OpenSourceBrain/182797",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182797/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182797/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182797/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182797.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182797",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182797/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182797",
+ "id": 742017293,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182797/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182797/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182797/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182797/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182797/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182797/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182797/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182797/milestones{/number}",
+ "mirror_url": null,
+ "name": "182797",
+ "node_id": "R_kgDOLDpJDQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182797/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182797/pulls{/number}",
+ "pushed_at": "2023-11-28T20:53:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182797/releases{/id}",
+ "size": 590,
+ "ssh_url": "git@github.com:OpenSourceBrain/182797.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182797/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182797/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182797/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182797/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182797",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182797/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182797/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182797/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182797",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182843": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182843/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182843/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182843/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182843/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182843.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182843/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182843/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182843/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182843/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182843/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182843/contributors",
+ "created_at": "2024-01-11T15:36:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182843/deployments",
+ "description": "CA1 PV+ fast-firing hippocampal interneuron (Ferguson et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182843/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182843/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182843/forks",
+ "full_name": "OpenSourceBrain/182843",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182843/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182843/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182843/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182843.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182843",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182843/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182843",
+ "id": 742017309,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182843/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182843/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182843/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182843/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182843/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182843/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182843/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182843/milestones{/number}",
+ "mirror_url": null,
+ "name": "182843",
+ "node_id": "R_kgDOLDpJHQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182843/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182843/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182843/releases{/id}",
+ "size": 38,
+ "ssh_url": "git@github.com:OpenSourceBrain/182843.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182843/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182843/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182843/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182843/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182843",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182843/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182843/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182843/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182843",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182906": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182906/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182906/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182906/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182906/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182906.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182906/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182906/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182906/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182906/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182906/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182906/contributors",
+ "created_at": "2024-01-11T15:36:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182906/deployments",
+ "description": "Neural-field model of generalized seizures (Zhao et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182906/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182906/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182906/forks",
+ "full_name": "OpenSourceBrain/182906",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182906/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182906/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182906/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182906.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182906",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182906/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182906",
+ "id": 742017326,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182906/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182906/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182906/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182906/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182906/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182906/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182906/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182906/milestones{/number}",
+ "mirror_url": null,
+ "name": "182906",
+ "node_id": "R_kgDOLDpJLg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182906/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182906/pulls{/number}",
+ "pushed_at": "2019-05-31T03:46:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182906/releases{/id}",
+ "size": 55,
+ "ssh_url": "git@github.com:OpenSourceBrain/182906.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182906/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182906/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182906/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182906/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182906",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182906/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182906/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182906/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182906",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/182988": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/182988/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/182988/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/182988/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/182988/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/182988.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/182988/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/182988/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/182988/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/182988/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/182988/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/182988/contributors",
+ "created_at": "2024-01-11T15:36:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/182988/deployments",
+ "description": "TRPM8-dependent dynamic response in cold thermoreceptors (Olivares et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/182988/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/182988/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/182988/forks",
+ "full_name": "OpenSourceBrain/182988",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/182988/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/182988/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/182988/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/182988.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/182988",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/182988/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/182988",
+ "id": 742017344,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/182988/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/182988/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/182988/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/182988/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/182988/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/182988/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/182988/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/182988/milestones{/number}",
+ "mirror_url": null,
+ "name": "182988",
+ "node_id": "R_kgDOLDpJQA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/182988/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/182988/pulls{/number}",
+ "pushed_at": "2019-05-31T04:49:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/182988/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/182988.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/182988/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/182988/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/182988/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/182988/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/182988",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/182988/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/182988/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/182988/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/182988",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183014": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183014/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183014/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183014/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183014/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183014.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183014/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183014/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183014/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183014/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183014/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183014/contributors",
+ "created_at": "2024-01-11T15:36:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183014/deployments",
+ "description": "Cortical model with reinforcement learning drives realistic virtual arm (Dura-Bernal et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183014/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183014/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183014/forks",
+ "full_name": "OpenSourceBrain/183014",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183014/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183014/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183014/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183014.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/183014",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183014/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183014",
+ "id": 742017351,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183014/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183014/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183014/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183014/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183014/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183014/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183014/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183014/milestones{/number}",
+ "mirror_url": null,
+ "name": "183014",
+ "node_id": "R_kgDOLDpJRw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183014/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183014/pulls{/number}",
+ "pushed_at": "2023-11-28T20:54:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183014/releases{/id}",
+ "size": 10373,
+ "ssh_url": "git@github.com:OpenSourceBrain/183014.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183014/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183014/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183014/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183014/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183014",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183014/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183014/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183014/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183014",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183015": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183015/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183015/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183015/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183015/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183015.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183015/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183015/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183015/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183015/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183015/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183015/contributors",
+ "created_at": "2024-01-11T15:36:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183015/deployments",
+ "description": "Reaction-diffusion in the NEURON simulator (McDougal et al 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183015/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183015/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183015/forks",
+ "full_name": "OpenSourceBrain/183015",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183015/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183015/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183015/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183015.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183015",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183015/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183015",
+ "id": 742017371,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183015/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183015/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183015/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183015/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183015/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183015/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183015/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183015/milestones{/number}",
+ "mirror_url": null,
+ "name": "183015",
+ "node_id": "R_kgDOLDpJWw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183015/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183015/pulls{/number}",
+ "pushed_at": "2019-05-31T03:39:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183015/releases{/id}",
+ "size": 100,
+ "ssh_url": "git@github.com:OpenSourceBrain/183015.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183015/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183015/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183015/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183015/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183015",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183015/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183015/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183015/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183015",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183017": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183017/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183017/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183017/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183017/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183017.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183017/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183017/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183017/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183017/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183017/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183017/contributors",
+ "created_at": "2024-01-11T15:36:39Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183017/deployments",
+ "description": "Noise promotes independent control of gamma oscillations and grid firing (Solanka et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183017/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183017/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183017/forks",
+ "full_name": "OpenSourceBrain/183017",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183017/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183017/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183017/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183017.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/183017",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183017/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183017",
+ "id": 742017388,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183017/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183017/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183017/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183017/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183017/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183017/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183017/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183017/milestones{/number}",
+ "mirror_url": null,
+ "name": "183017",
+ "node_id": "R_kgDOLDpJbA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183017/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183017/pulls{/number}",
+ "pushed_at": "2023-12-23T03:49:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183017/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/183017.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183017/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183017/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183017/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183017/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183017",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183017/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183017/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183017/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183017",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183077": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183077/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183077/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183077/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183077/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183077.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183077/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183077/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183077/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183077/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183077/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183077/contributors",
+ "created_at": "2024-01-11T15:36:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183077/deployments",
+ "description": "Midbrain torus semicircularis neuron model (Aumentado-Armstrong et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183077/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183077/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183077/forks",
+ "full_name": "OpenSourceBrain/183077",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183077/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183077/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183077/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183077.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183077",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183077/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183077",
+ "id": 742017398,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183077/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183077/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183077/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183077/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183077/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183077/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183077/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183077/milestones{/number}",
+ "mirror_url": null,
+ "name": "183077",
+ "node_id": "R_kgDOLDpJdg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183077/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183077/pulls{/number}",
+ "pushed_at": "2019-05-31T04:29:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183077/releases{/id}",
+ "size": 48,
+ "ssh_url": "git@github.com:OpenSourceBrain/183077.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183077/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183077/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183077/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183077/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183077",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183077/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183077/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183077/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183077",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183251": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183251/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183251/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183251/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183251/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183251.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183251/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183251/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183251/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183251/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183251/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183251/contributors",
+ "created_at": "2024-01-11T15:36:43Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183251/deployments",
+ "description": "Quantitative assessment of computational models for retinotopic map formation (Hjorth et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183251/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183251/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183251/forks",
+ "full_name": "OpenSourceBrain/183251",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183251/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183251/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183251/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183251.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/183251",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183251/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183251",
+ "id": 742017414,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183251/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183251/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183251/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183251/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183251/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183251/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183251/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183251/milestones{/number}",
+ "mirror_url": null,
+ "name": "183251",
+ "node_id": "R_kgDOLDpJhg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183251/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183251/pulls{/number}",
+ "pushed_at": "2023-12-23T03:50:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183251/releases{/id}",
+ "size": 1142,
+ "ssh_url": "git@github.com:OpenSourceBrain/183251.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183251/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183251/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183251/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183251/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183251",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183251/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183251/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183251/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183251",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183300": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183300/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183300/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183300/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183300/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183300.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183300/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183300/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183300/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183300/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183300/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183300/contributors",
+ "created_at": "2024-01-11T15:36:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183300/deployments",
+ "description": "Mitral cell activity gating by respiration and inhibition in an olfactory bulb NN (Short et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183300/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183300/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183300/forks",
+ "full_name": "OpenSourceBrain/183300",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183300/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183300/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183300/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183300.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183300",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183300/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183300",
+ "id": 742017424,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183300/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183300/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183300/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183300/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183300/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183300/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183300/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183300/milestones{/number}",
+ "mirror_url": null,
+ "name": "183300",
+ "node_id": "R_kgDOLDpJkA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183300/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183300/pulls{/number}",
+ "pushed_at": "2023-11-28T20:54:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183300/releases{/id}",
+ "size": 249,
+ "ssh_url": "git@github.com:OpenSourceBrain/183300.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183300/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183300/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183300/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183300/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183300",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183300/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183300/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183300/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183300",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183371": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183371/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183371/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183371/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183371/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183371.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183371/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183371/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183371/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183371/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183371/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183371/contributors",
+ "created_at": "2024-01-11T15:36:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183371/deployments",
+ "description": "Diffusive homeostasis in a spiking network model (Sweeney et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183371/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183371/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183371/forks",
+ "full_name": "OpenSourceBrain/183371",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183371/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183371/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183371/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183371.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183371",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183371/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183371",
+ "id": 742017444,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183371/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183371/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183371/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183371/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183371/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183371/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183371/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183371/milestones{/number}",
+ "mirror_url": null,
+ "name": "183371",
+ "node_id": "R_kgDOLDpJpA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183371/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183371/pulls{/number}",
+ "pushed_at": "2023-11-28T20:54:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183371/releases{/id}",
+ "size": 941,
+ "ssh_url": "git@github.com:OpenSourceBrain/183371.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183371/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183371/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183371/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183371/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183371",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183371/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183371/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183371/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183371",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183424": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183424/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183424/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183424/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183424/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183424.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183424/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183424/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183424/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183424/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183424/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183424/contributors",
+ "created_at": "2024-01-11T15:36:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183424/deployments",
+ "description": "A Layer V CCS type pyramidal cell, inhibitory synapse current conduction (Kubota Y et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183424/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183424/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183424/forks",
+ "full_name": "OpenSourceBrain/183424",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183424/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183424/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183424/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183424.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183424",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183424/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183424",
+ "id": 742017454,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183424/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183424/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183424/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183424/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183424/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183424/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183424/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183424/milestones{/number}",
+ "mirror_url": null,
+ "name": "183424",
+ "node_id": "R_kgDOLDpJrg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183424/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183424/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183424/releases{/id}",
+ "size": 56,
+ "ssh_url": "git@github.com:OpenSourceBrain/183424.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183424/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183424/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183424/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183424/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183424",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183424/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183424/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183424/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183424",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183718": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183718/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183718/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183718/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183718/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183718.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183718/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183718/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183718/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183718/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183718/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183718/contributors",
+ "created_at": "2024-01-11T15:36:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183718/deployments",
+ "description": "PIR gamma oscillations in network of resonators (Tikidji-Hamburyan et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183718/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183718/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183718/forks",
+ "full_name": "OpenSourceBrain/183718",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183718/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183718/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183718/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183718.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183718",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183718/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183718",
+ "id": 742017467,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183718/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183718/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183718/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183718/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183718/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183718/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183718/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183718/milestones{/number}",
+ "mirror_url": null,
+ "name": "183718",
+ "node_id": "R_kgDOLDpJuw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183718/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183718/pulls{/number}",
+ "pushed_at": "2019-05-31T02:19:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183718/releases{/id}",
+ "size": 1151,
+ "ssh_url": "git@github.com:OpenSourceBrain/183718.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183718/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183718/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183718/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183718/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183718",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183718/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183718/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183718/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183718",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183722": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183722/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183722/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183722/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183722/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183722.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183722/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183722/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183722/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183722/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183722/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183722/contributors",
+ "created_at": "2024-01-11T15:36:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183722/deployments",
+ "description": "Phase plane reveals two slow variables in midbrain dopamine neuron bursts (Yu and Canavier, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183722/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183722/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183722/forks",
+ "full_name": "OpenSourceBrain/183722",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183722/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183722/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183722/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183722.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183722",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183722/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183722",
+ "id": 742017480,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183722/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183722/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183722/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183722/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183722/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183722/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183722/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183722/milestones{/number}",
+ "mirror_url": null,
+ "name": "183722",
+ "node_id": "R_kgDOLDpJyA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183722/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183722/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183722/releases{/id}",
+ "size": 14,
+ "ssh_url": "git@github.com:OpenSourceBrain/183722.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183722/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183722/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183722/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183722/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183722",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183722/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183722/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183722/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183722",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183948": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183948/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183948/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183948/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183948/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183948.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183948/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183948/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183948/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183948/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183948/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183948/contributors",
+ "created_at": "2024-01-11T15:36:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183948/deployments",
+ "description": "Ephaptic coupling in passive cable and MSO neuron models (Goldwyn & Rinzel 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183948/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183948/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183948/forks",
+ "full_name": "OpenSourceBrain/183948",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183948/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183948/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183948/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183948.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183948",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183948/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183948",
+ "id": 742017506,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183948/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183948/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183948/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183948/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183948/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183948/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183948/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183948/milestones{/number}",
+ "mirror_url": null,
+ "name": "183948",
+ "node_id": "R_kgDOLDpJ4g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183948/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183948/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183948/releases{/id}",
+ "size": 46,
+ "ssh_url": "git@github.com:OpenSourceBrain/183948.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183948/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183948/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183948/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183948/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183948",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183948/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183948/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183948/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183948",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/183949": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/183949/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/183949/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/183949/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/183949/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/183949.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/183949/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/183949/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/183949/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/183949/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/183949/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/183949/contributors",
+ "created_at": "2024-01-11T15:36:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/183949/deployments",
+ "description": "Discharge hysteresis in motoneurons (Powers & Heckman 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/183949/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/183949/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/183949/forks",
+ "full_name": "OpenSourceBrain/183949",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/183949/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/183949/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/183949/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/183949.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/183949",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/183949/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/183949",
+ "id": 742017524,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/183949/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/183949/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/183949/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/183949/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/183949/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/183949/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/183949/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/183949/milestones{/number}",
+ "mirror_url": null,
+ "name": "183949",
+ "node_id": "R_kgDOLDpJ9A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/183949/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/183949/pulls{/number}",
+ "pushed_at": "2023-11-28T20:54:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/183949/releases{/id}",
+ "size": 244,
+ "ssh_url": "git@github.com:OpenSourceBrain/183949.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/183949/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/183949/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/183949/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/183949/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/183949",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/183949/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/183949/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/183949/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:36:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/183949",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184054": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184054/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184054/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184054/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184054/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184054.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184054/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184054/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184054/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184054/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184054/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184054/contributors",
+ "created_at": "2024-01-11T15:37:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184054/deployments",
+ "description": "CA1 pyramidal neuron: Dendritic Na+ spikes are required for LTP at distal synapses (Kim et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184054/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184054/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184054/forks",
+ "full_name": "OpenSourceBrain/184054",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184054/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184054/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184054/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184054.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184054",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184054/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184054",
+ "id": 742017543,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184054/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184054/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184054/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184054/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184054/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184054/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184054/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184054/milestones{/number}",
+ "mirror_url": null,
+ "name": "184054",
+ "node_id": "R_kgDOLDpKBw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184054/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184054/pulls{/number}",
+ "pushed_at": "2023-11-28T20:54:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184054/releases{/id}",
+ "size": 199,
+ "ssh_url": "git@github.com:OpenSourceBrain/184054.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184054/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184054/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184054/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184054/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184054",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184054/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184054/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184054/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184054",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184139": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184139/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184139/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184139/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184139/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184139.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184139/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184139/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184139/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184139/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184139/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184139/contributors",
+ "created_at": "2024-01-11T15:37:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184139/deployments",
+ "description": "CA3 pyramidal neurons: Kv1.2 mediates modulation of cortical inputs (Hyun et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184139/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184139/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184139/forks",
+ "full_name": "OpenSourceBrain/184139",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184139/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184139/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184139/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184139.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184139",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184139/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184139",
+ "id": 742017563,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184139/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184139/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184139/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184139/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184139/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184139/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184139/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184139/milestones{/number}",
+ "mirror_url": null,
+ "name": "184139",
+ "node_id": "R_kgDOLDpKGw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184139/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184139/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184139/releases{/id}",
+ "size": 69,
+ "ssh_url": "git@github.com:OpenSourceBrain/184139.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184139/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184139/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184139/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184139/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184139",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184139/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184139/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184139/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184139",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184140": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184140/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184140/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184140/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184140/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184140.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184140/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184140/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184140/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184140/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184140/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184140/contributors",
+ "created_at": "2024-01-11T15:37:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184140/deployments",
+ "description": "Mean-field systems and small scale neural networks (Ferguson et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184140/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184140/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184140/forks",
+ "full_name": "OpenSourceBrain/184140",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184140/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184140/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184140/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184140.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184140",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184140/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184140",
+ "id": 742017576,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184140/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184140/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184140/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184140/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184140/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184140/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184140/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184140/milestones{/number}",
+ "mirror_url": null,
+ "name": "184140",
+ "node_id": "R_kgDOLDpKKA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184140/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184140/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184140/releases{/id}",
+ "size": 473,
+ "ssh_url": "git@github.com:OpenSourceBrain/184140.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184140/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184140/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184140/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184140/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184140",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184140/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184140/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184140/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184140",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184141": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184141/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184141/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184141/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184141/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184141.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184141/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184141/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184141/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184141/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184141/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184141/contributors",
+ "created_at": "2024-01-11T15:37:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184141/deployments",
+ "description": "Estimation of conductance in a conductance-based model of quadratic type (Vich & Guillamon 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184141/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184141/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184141/forks",
+ "full_name": "OpenSourceBrain/184141",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184141/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184141/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184141/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184141.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184141",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184141/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184141",
+ "id": 742017591,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184141/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184141/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184141/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184141/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184141/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184141/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184141/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184141/milestones{/number}",
+ "mirror_url": null,
+ "name": "184141",
+ "node_id": "R_kgDOLDpKNw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184141/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184141/pulls{/number}",
+ "pushed_at": "2019-05-31T03:36:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184141/releases{/id}",
+ "size": 378,
+ "ssh_url": "git@github.com:OpenSourceBrain/184141.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184141/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184141/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184141/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184141/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184141",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184141/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184141/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184141/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184141",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184142": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184142/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184142/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184142/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184142/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184142.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184142/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184142/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184142/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184142/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184142/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184142/contributors",
+ "created_at": "2024-01-11T15:37:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184142/deployments",
+ "description": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 4 329321704",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184142/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184142/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184142/forks",
+ "full_name": "OpenSourceBrain/184142",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184142/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184142/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184142/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184142.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184142",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184142/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184142",
+ "id": 742017604,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184142/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184142/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184142/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184142/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184142/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184142/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184142/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184142/milestones{/number}",
+ "mirror_url": null,
+ "name": "184142",
+ "node_id": "R_kgDOLDpKRA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184142/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184142/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184142/releases{/id}",
+ "size": 123,
+ "ssh_url": "git@github.com:OpenSourceBrain/184142.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184142/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184142/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184142/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184142/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184142",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184142/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184142/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184142/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184142",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184145": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184145/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184145/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184145/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184145/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184145.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184145/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184145/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184145/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184145/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184145/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184145/contributors",
+ "created_at": "2024-01-11T15:37:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184145/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 6a 471081668",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184145/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184145/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184145/forks",
+ "full_name": "OpenSourceBrain/184145",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184145/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184145/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184145/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184145.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184145",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184145/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184145",
+ "id": 742017619,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184145/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184145/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184145/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184145/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184145/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184145/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184145/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184145/milestones{/number}",
+ "mirror_url": null,
+ "name": "184145",
+ "node_id": "R_kgDOLDpKUw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184145/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184145/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184145/releases{/id}",
+ "size": 90,
+ "ssh_url": "git@github.com:OpenSourceBrain/184145.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184145/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184145/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184145/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184145/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184145",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184145/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184145/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184145/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184145",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184148": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184148/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184148/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184148/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184148/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184148.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184148/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184148/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184148/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184148/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184148/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184148/contributors",
+ "created_at": "2024-01-11T15:37:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184148/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 4 329322394",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184148/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184148/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184148/forks",
+ "full_name": "OpenSourceBrain/184148",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184148/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184148/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184148/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184148.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184148",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184148/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184148",
+ "id": 742017635,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184148/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184148/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184148/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184148/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184148/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184148/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184148/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184148/milestones{/number}",
+ "mirror_url": null,
+ "name": "184148",
+ "node_id": "R_kgDOLDpKYw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184148/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184148/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184148/releases{/id}",
+ "size": 71,
+ "ssh_url": "git@github.com:OpenSourceBrain/184148.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184148/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184148/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184148/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184148/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184148",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184148/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184148/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184148/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184148",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184152": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184152/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184152/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184152/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184152/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184152.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184152/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184152/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184152/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184152/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184152/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184152/contributors",
+ "created_at": "2024-01-11T15:37:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184152/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 471085845",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184152/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184152/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184152/forks",
+ "full_name": "OpenSourceBrain/184152",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184152/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184152/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184152/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184152.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184152",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184152/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184152",
+ "id": 742017649,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184152/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184152/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184152/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184152/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184152/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184152/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184152/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184152/milestones{/number}",
+ "mirror_url": null,
+ "name": "184152",
+ "node_id": "R_kgDOLDpKcQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184152/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184152/pulls{/number}",
+ "pushed_at": "2019-05-31T03:46:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184152/releases{/id}",
+ "size": 116,
+ "ssh_url": "git@github.com:OpenSourceBrain/184152.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184152/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184152/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184152/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184152/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184152",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184152/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184152/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184152/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184152",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184157": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184157/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184157/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184157/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184157/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184157.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184157/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184157/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184157/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184157/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184157/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184157/contributors",
+ "created_at": "2024-01-11T15:37:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184157/deployments",
+ "description": "Allen Institute: Sst-IRES-Cre VISp layer 2/3 471086533",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184157/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184157/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184157/forks",
+ "full_name": "OpenSourceBrain/184157",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184157/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184157/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184157/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184157.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184157",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184157/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184157",
+ "id": 742017659,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184157/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184157/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184157/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184157/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184157/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184157/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184157/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184157/milestones{/number}",
+ "mirror_url": null,
+ "name": "184157",
+ "node_id": "R_kgDOLDpKew",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184157/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184157/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184157/releases{/id}",
+ "size": 97,
+ "ssh_url": "git@github.com:OpenSourceBrain/184157.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184157/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184157/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184157/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184157/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184157",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184157/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184157/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184157/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184157",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184159": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184159/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184159/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184159/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184159/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184159.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184159/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184159/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184159/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184159/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184159/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184159/contributors",
+ "created_at": "2024-01-11T15:37:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184159/deployments",
+ "description": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 5 471087975",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184159/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184159/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184159/forks",
+ "full_name": "OpenSourceBrain/184159",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184159/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184159/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184159/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184159.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184159",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184159/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184159",
+ "id": 742017674,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184159/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184159/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184159/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184159/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184159/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184159/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184159/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184159/milestones{/number}",
+ "mirror_url": null,
+ "name": "184159",
+ "node_id": "R_kgDOLDpKig",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184159/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184159/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184159/releases{/id}",
+ "size": 120,
+ "ssh_url": "git@github.com:OpenSourceBrain/184159.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184159/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184159/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184159/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184159/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184159",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184159/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184159/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184159/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184159",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184161": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184161/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184161/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184161/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184161/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184161.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184161/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184161/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184161/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184161/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184161/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184161/contributors",
+ "created_at": "2024-01-11T15:37:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184161/deployments",
+ "description": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 2/3 472299294",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184161/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184161/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184161/forks",
+ "full_name": "OpenSourceBrain/184161",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184161/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184161/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184161/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184161.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184161",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184161/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184161",
+ "id": 742017689,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184161/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184161/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184161/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184161/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184161/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184161/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184161/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184161/milestones{/number}",
+ "mirror_url": null,
+ "name": "184161",
+ "node_id": "R_kgDOLDpKmQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184161/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184161/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184161/releases{/id}",
+ "size": 88,
+ "ssh_url": "git@github.com:OpenSourceBrain/184161.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184161/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184161/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184161/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184161/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184161",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184161/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184161/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184161/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184161",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184163": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184163/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184163/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184163/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184163/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184163.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184163/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184163/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184163/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184163/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184163/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184163/contributors",
+ "created_at": "2024-01-11T15:37:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184163/deployments",
+ "description": "Allen Institute: Sst-IRES-Cre VISp layer 5 472299363",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184163/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184163/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184163/forks",
+ "full_name": "OpenSourceBrain/184163",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184163/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184163/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184163/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184163.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184163",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184163/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184163",
+ "id": 742017699,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184163/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184163/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184163/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184163/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184163/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184163/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184163/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184163/milestones{/number}",
+ "mirror_url": null,
+ "name": "184163",
+ "node_id": "R_kgDOLDpKow",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184163/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184163/pulls{/number}",
+ "pushed_at": "2019-05-31T02:53:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184163/releases{/id}",
+ "size": 98,
+ "ssh_url": "git@github.com:OpenSourceBrain/184163.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184163/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184163/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184163/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184163/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184163",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184163/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184163/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184163/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184163",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184166": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184166/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184166/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184166/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184166/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184166.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184166/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184166/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184166/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184166/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184166/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184166/contributors",
+ "created_at": "2024-01-11T15:37:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184166/deployments",
+ "description": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 4 472300877",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184166/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184166/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184166/forks",
+ "full_name": "OpenSourceBrain/184166",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184166/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184166/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184166/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184166.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184166",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184166/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184166",
+ "id": 742017716,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184166/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184166/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184166/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184166/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184166/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184166/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184166/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184166/milestones{/number}",
+ "mirror_url": null,
+ "name": "184166",
+ "node_id": "R_kgDOLDpKtA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184166/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184166/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184166/releases{/id}",
+ "size": 132,
+ "ssh_url": "git@github.com:OpenSourceBrain/184166.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184166/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184166/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184166/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184166/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184166",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184166/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184166/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184166/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184166",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184168": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184168/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184168/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184168/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184168/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184168.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184168/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184168/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184168/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184168/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184168/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184168/contributors",
+ "created_at": "2024-01-11T15:37:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184168/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 6a 472301074",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184168/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184168/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184168/forks",
+ "full_name": "OpenSourceBrain/184168",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184168/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184168/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184168/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184168.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184168",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184168/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184168",
+ "id": 742017738,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184168/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184168/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184168/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184168/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184168/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184168/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184168/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184168/milestones{/number}",
+ "mirror_url": null,
+ "name": "184168",
+ "node_id": "R_kgDOLDpKyg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184168/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184168/pulls{/number}",
+ "pushed_at": "2019-05-31T03:37:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184168/releases{/id}",
+ "size": 81,
+ "ssh_url": "git@github.com:OpenSourceBrain/184168.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184168/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184168/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184168/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184168/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184168",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184168/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184168/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184168/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184168",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184171": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184171/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184171/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184171/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184171/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184171.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184171/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184171/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184171/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184171/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184171/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184171/contributors",
+ "created_at": "2024-01-11T15:37:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184171/deployments",
+ "description": "Allen Institute: Sst-IRES-Cre VISp layer 4 472304539",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184171/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184171/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184171/forks",
+ "full_name": "OpenSourceBrain/184171",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184171/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184171/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184171/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184171.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184171",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184171/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184171",
+ "id": 742017752,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184171/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184171/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184171/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184171/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184171/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184171/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184171/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184171/milestones{/number}",
+ "mirror_url": null,
+ "name": "184171",
+ "node_id": "R_kgDOLDpK2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184171/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184171/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184171/releases{/id}",
+ "size": 54,
+ "ssh_url": "git@github.com:OpenSourceBrain/184171.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184171/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184171/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184171/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184171/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184171",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184171/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184171/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184171/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184171",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184173": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184173/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184173/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184173/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184173/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184173.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184173/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184173/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184173/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184173/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184173/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184173/contributors",
+ "created_at": "2024-01-11T15:37:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184173/deployments",
+ "description": "Allen Institute: Sst-IRES-Cre VISp layer 2/3 472304676",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184173/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184173/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184173/forks",
+ "full_name": "OpenSourceBrain/184173",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184173/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184173/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184173/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184173.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184173",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184173/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184173",
+ "id": 742017773,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184173/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184173/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184173/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184173/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184173/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184173/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184173/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184173/milestones{/number}",
+ "mirror_url": null,
+ "name": "184173",
+ "node_id": "R_kgDOLDpK7Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184173/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184173/pulls{/number}",
+ "pushed_at": "2019-05-31T03:25:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184173/releases{/id}",
+ "size": 110,
+ "ssh_url": "git@github.com:OpenSourceBrain/184173.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184173/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184173/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184173/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184173/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184173",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184173/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184173/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184173/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184173",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184175": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184175/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184175/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184175/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184175/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184175.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184175/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184175/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184175/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184175/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184175/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184175/contributors",
+ "created_at": "2024-01-11T15:37:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184175/deployments",
+ "description": "Cortico-striatal plasticity in medium spiny neurons (Gurney et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184175/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184175/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184175/forks",
+ "full_name": "OpenSourceBrain/184175",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184175/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184175/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184175/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184175.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184175",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184175/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184175",
+ "id": 742017794,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184175/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184175/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184175/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184175/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184175/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184175/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184175/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184175/milestones{/number}",
+ "mirror_url": null,
+ "name": "184175",
+ "node_id": "R_kgDOLDpLAg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184175/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184175/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184175/releases{/id}",
+ "size": 16,
+ "ssh_url": "git@github.com:OpenSourceBrain/184175.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184175/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184175/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184175/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184175/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184175",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184175/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184175/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184175/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184175",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184176": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184176/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184176/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184176/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184176/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184176.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184176/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184176/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184176/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184176/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184176/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184176/contributors",
+ "created_at": "2024-01-11T15:37:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184176/deployments",
+ "description": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 5 472306460",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184176/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184176/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184176/forks",
+ "full_name": "OpenSourceBrain/184176",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184176/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184176/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184176/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184176.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184176",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184176/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184176",
+ "id": 742017813,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184176/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184176/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184176/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184176/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184176/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184176/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184176/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184176/milestones{/number}",
+ "mirror_url": null,
+ "name": "184176",
+ "node_id": "R_kgDOLDpLFQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184176/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184176/pulls{/number}",
+ "pushed_at": "2019-05-31T02:54:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184176/releases{/id}",
+ "size": 172,
+ "ssh_url": "git@github.com:OpenSourceBrain/184176.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184176/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184176/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184176/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184176/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184176",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184176/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184176/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184176/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184176",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184178": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184178/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184178/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184178/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184178/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184178.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184178/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184178/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184178/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184178/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184178/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184178/contributors",
+ "created_at": "2024-01-11T15:37:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184178/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 4 472306544",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184178/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184178/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184178/forks",
+ "full_name": "OpenSourceBrain/184178",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184178/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184178/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184178/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184178.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184178",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184178/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184178",
+ "id": 742017824,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184178/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184178/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184178/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184178/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184178/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184178/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184178/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184178/milestones{/number}",
+ "mirror_url": null,
+ "name": "184178",
+ "node_id": "R_kgDOLDpLIA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184178/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184178/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184178/releases{/id}",
+ "size": 78,
+ "ssh_url": "git@github.com:OpenSourceBrain/184178.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184178/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184178/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184178/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184178/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184178",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184178/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184178/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184178/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184178",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184180": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184180/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184180/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184180/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184180/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184180.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184180/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184180/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184180/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184180/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184180/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184180/contributors",
+ "created_at": "2024-01-11T15:37:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184180/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 2/3 472306616",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184180/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184180/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184180/forks",
+ "full_name": "OpenSourceBrain/184180",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184180/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184180/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184180/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184180.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184180",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184180/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184180",
+ "id": 742017837,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184180/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184180/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184180/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184180/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184180/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184180/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184180/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184180/milestones{/number}",
+ "mirror_url": null,
+ "name": "184180",
+ "node_id": "R_kgDOLDpLLQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184180/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184180/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184180/releases{/id}",
+ "size": 83,
+ "ssh_url": "git@github.com:OpenSourceBrain/184180.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184180/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184180/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184180/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184180/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184180",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184180/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184180/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184180/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184180",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184182": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184182/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184182/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184182/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184182/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184182.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184182/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184182/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184182/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184182/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184182/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184182/contributors",
+ "created_at": "2024-01-11T15:37:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184182/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 472349114",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184182/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184182/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184182/forks",
+ "full_name": "OpenSourceBrain/184182",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184182/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184182/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184182/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184182.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184182",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184182/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184182",
+ "id": 742017862,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184182/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184182/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184182/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184182/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184182/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184182/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184182/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184182/milestones{/number}",
+ "mirror_url": null,
+ "name": "184182",
+ "node_id": "R_kgDOLDpLRg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184182/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184182/pulls{/number}",
+ "pushed_at": "2019-05-31T03:36:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184182/releases{/id}",
+ "size": 81,
+ "ssh_url": "git@github.com:OpenSourceBrain/184182.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184182/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184182/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184182/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184182/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184182",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184182/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184182/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184182/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184182",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184184": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184184/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184184/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184184/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184184/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184184.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184184/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184184/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184184/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184184/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184184/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184184/contributors",
+ "created_at": "2024-01-11T15:37:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184184/deployments",
+ "description": "Allen Institute: Htr3a-Cre VISp layer 2/3 472352327",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184184/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184184/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184184/forks",
+ "full_name": "OpenSourceBrain/184184",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184184/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184184/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184184/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184184.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184184",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184184/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184184",
+ "id": 742017878,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184184/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184184/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184184/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184184/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184184/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184184/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184184/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184184/milestones{/number}",
+ "mirror_url": null,
+ "name": "184184",
+ "node_id": "R_kgDOLDpLVg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184184/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184184/pulls{/number}",
+ "pushed_at": "2019-05-31T03:45:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184184/releases{/id}",
+ "size": 78,
+ "ssh_url": "git@github.com:OpenSourceBrain/184184.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184184/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184184/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184184/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184184/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184184",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184184/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184184/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184184/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184184",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184186": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184186/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184186/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184186/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184186/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184186.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184186/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184186/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184186/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184186/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184186/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184186/contributors",
+ "created_at": "2024-01-11T15:37:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184186/deployments",
+ "description": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 4 472363762",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184186/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184186/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184186/forks",
+ "full_name": "OpenSourceBrain/184186",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184186/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184186/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184186/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184186.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184186",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184186/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184186",
+ "id": 742017896,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184186/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184186/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184186/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184186/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184186/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184186/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184186/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184186/milestones{/number}",
+ "mirror_url": null,
+ "name": "184186",
+ "node_id": "R_kgDOLDpLaA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184186/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184186/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184186/releases{/id}",
+ "size": 137,
+ "ssh_url": "git@github.com:OpenSourceBrain/184186.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184186/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184186/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184186/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184186/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184186",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184186/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184186/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184186/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184186",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184196": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184196/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184196/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184196/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184196/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184196.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184196/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184196/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184196/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184196/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184196/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184196/contributors",
+ "created_at": "2024-01-11T15:37:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184196/deployments",
+ "description": "Allen Institute: Htr3a-Cre VISp layer 2/3 472421285",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184196/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184196/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184196/forks",
+ "full_name": "OpenSourceBrain/184196",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184196/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184196/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184196/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184196.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184196",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184196/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184196",
+ "id": 742017912,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184196/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184196/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184196/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184196/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184196/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184196/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184196/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184196/milestones{/number}",
+ "mirror_url": null,
+ "name": "184196",
+ "node_id": "R_kgDOLDpLeA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184196/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184196/pulls{/number}",
+ "pushed_at": "2019-05-31T03:36:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184196/releases{/id}",
+ "size": 77,
+ "ssh_url": "git@github.com:OpenSourceBrain/184196.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184196/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184196/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184196/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184196/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184196",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184196/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184196/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184196/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184196",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184202": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184202/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184202/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184202/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184202/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184202.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184202/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184202/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184202/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184202/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184202/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184202/contributors",
+ "created_at": "2024-01-11T15:37:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184202/deployments",
+ "description": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 4 472427533",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184202/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184202/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184202/forks",
+ "full_name": "OpenSourceBrain/184202",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184202/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184202/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184202/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184202.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184202",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184202/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184202",
+ "id": 742017927,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184202/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184202/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184202/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184202/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184202/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184202/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184202/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184202/milestones{/number}",
+ "mirror_url": null,
+ "name": "184202",
+ "node_id": "R_kgDOLDpLhw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184202/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184202/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184202/releases{/id}",
+ "size": 99,
+ "ssh_url": "git@github.com:OpenSourceBrain/184202.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184202/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184202/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184202/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184202/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184202",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184202/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184202/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184202/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184202",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184231": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184231/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184231/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184231/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184231/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184231.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184231/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184231/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184231/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184231/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184231/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184231/contributors",
+ "created_at": "2024-01-11T15:37:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184231/deployments",
+ "description": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 2/3 472434498",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184231/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184231/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184231/forks",
+ "full_name": "OpenSourceBrain/184231",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184231/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184231/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184231/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184231.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184231",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184231/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184231",
+ "id": 742017944,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184231/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184231/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184231/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184231/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184231/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184231/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184231/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184231/milestones{/number}",
+ "mirror_url": null,
+ "name": "184231",
+ "node_id": "R_kgDOLDpLmA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184231/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184231/pulls{/number}",
+ "pushed_at": "2019-05-31T03:44:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184231/releases{/id}",
+ "size": 84,
+ "ssh_url": "git@github.com:OpenSourceBrain/184231.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184231/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184231/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184231/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184231/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184231",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184231/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184231/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184231/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184231",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184274": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184274/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184274/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184274/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184274/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184274.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184274/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184274/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184274/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184274/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184274/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184274/contributors",
+ "created_at": "2024-01-11T15:37:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184274/deployments",
+ "description": "Allen Institute: Sst-IRES-Cre VISp layer 6a 472440759",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184274/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184274/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184274/forks",
+ "full_name": "OpenSourceBrain/184274",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184274/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184274/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184274/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184274.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184274",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184274/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184274",
+ "id": 742017958,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184274/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184274/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184274/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184274/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184274/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184274/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184274/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184274/milestones{/number}",
+ "mirror_url": null,
+ "name": "184274",
+ "node_id": "R_kgDOLDpLpg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184274/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184274/pulls{/number}",
+ "pushed_at": "2019-05-31T02:37:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184274/releases{/id}",
+ "size": 91,
+ "ssh_url": "git@github.com:OpenSourceBrain/184274.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184274/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184274/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184274/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184274/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184274",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184274/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184274/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184274/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184274",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184297": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184297/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184297/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184297/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184297/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184297.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184297/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184297/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184297/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184297/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184297/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184297/contributors",
+ "created_at": "2024-01-11T15:37:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184297/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 4 472442377",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184297/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184297/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184297/forks",
+ "full_name": "OpenSourceBrain/184297",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184297/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184297/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184297/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184297.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184297",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184297/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184297",
+ "id": 742017977,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184297/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184297/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184297/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184297/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184297/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184297/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184297/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184297/milestones{/number}",
+ "mirror_url": null,
+ "name": "184297",
+ "node_id": "R_kgDOLDpLuQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184297/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184297/pulls{/number}",
+ "pushed_at": "2019-05-31T04:31:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184297/releases{/id}",
+ "size": 110,
+ "ssh_url": "git@github.com:OpenSourceBrain/184297.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184297/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184297/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184297/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184297/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184297",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184297/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184297/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184297/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:37:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184297",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184299": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184299/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184299/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184299/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184299/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184299.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184299/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184299/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184299/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184299/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184299/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184299/contributors",
+ "created_at": "2024-01-11T15:38:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184299/deployments",
+ "description": "Allen Institute: Gad2-IRES-Cre VISp layer 5 472447460",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184299/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184299/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184299/forks",
+ "full_name": "OpenSourceBrain/184299",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184299/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184299/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184299/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184299.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184299",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184299/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184299",
+ "id": 742017986,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184299/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184299/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184299/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184299/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184299/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184299/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184299/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184299/milestones{/number}",
+ "mirror_url": null,
+ "name": "184299",
+ "node_id": "R_kgDOLDpLwg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184299/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184299/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184299/releases{/id}",
+ "size": 63,
+ "ssh_url": "git@github.com:OpenSourceBrain/184299.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184299/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184299/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184299/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184299/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184299",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184299/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184299/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184299/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184299",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184301": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184301/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184301/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184301/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184301/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184301.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184301/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184301/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184301/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184301/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184301/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184301/contributors",
+ "created_at": "2024-01-11T15:38:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184301/deployments",
+ "description": "Allen Institute: Sst-IRES-Cre VISp layer 5 472450023",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184301/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184301/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184301/forks",
+ "full_name": "OpenSourceBrain/184301",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184301/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184301/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184301/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184301.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184301",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184301/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184301",
+ "id": 742018006,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184301/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184301/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184301/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184301/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184301/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184301/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184301/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184301/milestones{/number}",
+ "mirror_url": null,
+ "name": "184301",
+ "node_id": "R_kgDOLDpL1g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184301/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184301/pulls{/number}",
+ "pushed_at": "2019-05-31T02:32:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184301/releases{/id}",
+ "size": 59,
+ "ssh_url": "git@github.com:OpenSourceBrain/184301.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184301/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184301/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184301/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184301/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184301",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184301/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184301/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184301/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184301",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184303": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184303/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184303/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184303/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184303/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184303.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184303/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184303/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184303/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184303/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184303/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184303/contributors",
+ "created_at": "2024-01-11T15:38:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184303/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 4 472451419",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184303/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184303/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184303/forks",
+ "full_name": "OpenSourceBrain/184303",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184303/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184303/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184303/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184303.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184303",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184303/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184303",
+ "id": 742018023,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184303/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184303/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184303/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184303/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184303/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184303/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184303/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184303/milestones{/number}",
+ "mirror_url": null,
+ "name": "184303",
+ "node_id": "R_kgDOLDpL5w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184303/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184303/pulls{/number}",
+ "pushed_at": "2019-05-31T02:16:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184303/releases{/id}",
+ "size": 82,
+ "ssh_url": "git@github.com:OpenSourceBrain/184303.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184303/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184303/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184303/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184303/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184303",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184303/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184303/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184303/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184303",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184305": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184305/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184305/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184305/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184305/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184305.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184305/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184305/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184305/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184305/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184305/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184305/contributors",
+ "created_at": "2024-01-11T15:38:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184305/deployments",
+ "description": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 5 472455509",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184305/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184305/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184305/forks",
+ "full_name": "OpenSourceBrain/184305",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184305/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184305/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184305/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184305.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184305",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184305/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184305",
+ "id": 742018032,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184305/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184305/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184305/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184305/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184305/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184305/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184305/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184305/milestones{/number}",
+ "mirror_url": null,
+ "name": "184305",
+ "node_id": "R_kgDOLDpL8A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184305/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184305/pulls{/number}",
+ "pushed_at": "2019-05-31T02:45:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184305/releases{/id}",
+ "size": 136,
+ "ssh_url": "git@github.com:OpenSourceBrain/184305.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184305/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184305/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184305/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184305/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184305",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184305/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184305/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184305/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184305",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184308": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184308/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184308/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184308/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184308/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184308.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184308/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184308/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184308/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184308/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184308/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184308/contributors",
+ "created_at": "2024-01-11T15:38:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184308/deployments",
+ "description": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 4 472912107",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184308/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184308/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184308/forks",
+ "full_name": "OpenSourceBrain/184308",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184308/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184308/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184308/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184308.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184308",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184308/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184308",
+ "id": 742018040,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184308/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184308/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184308/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184308/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184308/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184308/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184308/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184308/milestones{/number}",
+ "mirror_url": null,
+ "name": "184308",
+ "node_id": "R_kgDOLDpL-A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184308/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184308/pulls{/number}",
+ "pushed_at": "2019-05-31T04:32:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184308/releases{/id}",
+ "size": 140,
+ "ssh_url": "git@github.com:OpenSourceBrain/184308.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184308/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184308/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184308/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184308/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184308",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184308/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184308/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184308/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184308",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184310": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184310/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184310/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184310/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184310/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184310.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184310/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184310/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184310/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184310/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184310/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184310/contributors",
+ "created_at": "2024-01-11T15:38:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184310/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 472912177",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184310/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184310/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184310/forks",
+ "full_name": "OpenSourceBrain/184310",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184310/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184310/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184310/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184310.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184310",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184310/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184310",
+ "id": 742018057,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184310/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184310/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184310/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184310/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184310/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184310/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184310/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184310/milestones{/number}",
+ "mirror_url": null,
+ "name": "184310",
+ "node_id": "R_kgDOLDpMCQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184310/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184310/pulls{/number}",
+ "pushed_at": "2019-05-31T02:39:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184310/releases{/id}",
+ "size": 77,
+ "ssh_url": "git@github.com:OpenSourceBrain/184310.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184310/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184310/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184310/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184310/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184310",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184310/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184310/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184310/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184310",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184312": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184312/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184312/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184312/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184312/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184312.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184312/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184312/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184312/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184312/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184312/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184312/contributors",
+ "created_at": "2024-01-11T15:38:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184312/deployments",
+ "description": "Allen Institute: Scnn1a-Tg2-Cre VISp layer 4 473465456",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184312/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184312/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184312/forks",
+ "full_name": "OpenSourceBrain/184312",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184312/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184312/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184312/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184312.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184312",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184312/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184312",
+ "id": 742018076,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184312/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184312/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184312/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184312/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184312/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184312/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184312/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184312/milestones{/number}",
+ "mirror_url": null,
+ "name": "184312",
+ "node_id": "R_kgDOLDpMHA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184312/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184312/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184312/releases{/id}",
+ "size": 90,
+ "ssh_url": "git@github.com:OpenSourceBrain/184312.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184312/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184312/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184312/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184312/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184312",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184312/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184312/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184312/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184312",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184314": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184314/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184314/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184314/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184314/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184314.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184314/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184314/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184314/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184314/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184314/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184314/contributors",
+ "created_at": "2024-01-11T15:38:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184314/deployments",
+ "description": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 5 473561660",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184314/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184314/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184314/forks",
+ "full_name": "OpenSourceBrain/184314",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184314/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184314/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184314/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184314.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184314",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184314/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184314",
+ "id": 742018093,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184314/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184314/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184314/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184314/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184314/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184314/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184314/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184314/milestones{/number}",
+ "mirror_url": null,
+ "name": "184314",
+ "node_id": "R_kgDOLDpMLQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184314/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184314/pulls{/number}",
+ "pushed_at": "2023-11-28T20:54:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184314/releases{/id}",
+ "size": 450,
+ "ssh_url": "git@github.com:OpenSourceBrain/184314.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184314/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184314/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184314/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184314/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184314",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184314/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184314/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184314/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184314",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184316": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184316/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184316/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184316/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184316/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184316.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184316/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184316/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184316/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184316/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184316/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184316/contributors",
+ "created_at": "2024-01-11T15:38:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184316/deployments",
+ "description": "Allen Institute: Gad2-IRES-Cre VISp layer 5 473561729",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184316/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184316/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184316/forks",
+ "full_name": "OpenSourceBrain/184316",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184316/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184316/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184316/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184316.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184316",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184316/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184316",
+ "id": 742018113,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184316/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184316/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184316/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184316/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184316/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184316/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184316/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184316/milestones{/number}",
+ "mirror_url": null,
+ "name": "184316",
+ "node_id": "R_kgDOLDpMQQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184316/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184316/pulls{/number}",
+ "pushed_at": "2019-05-31T02:11:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184316/releases{/id}",
+ "size": 76,
+ "ssh_url": "git@github.com:OpenSourceBrain/184316.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184316/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184316/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184316/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184316/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184316",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184316/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184316/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184316/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184316",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184319": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184319/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184319/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184319/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184319/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184319.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184319/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184319/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184319/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184319/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184319/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184319/contributors",
+ "created_at": "2024-01-11T15:38:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184319/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 4 473834758",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184319/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184319/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184319/forks",
+ "full_name": "OpenSourceBrain/184319",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184319/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184319/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184319/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184319.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184319",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184319/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184319",
+ "id": 742018127,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184319/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184319/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184319/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184319/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184319/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184319/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184319/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184319/milestones{/number}",
+ "mirror_url": null,
+ "name": "184319",
+ "node_id": "R_kgDOLDpMTw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184319/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184319/pulls{/number}",
+ "pushed_at": "2019-05-31T04:55:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184319/releases{/id}",
+ "size": 77,
+ "ssh_url": "git@github.com:OpenSourceBrain/184319.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184319/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184319/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184319/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184319/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184319",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184319/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184319/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184319/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184319",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184321": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184321/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184321/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184321/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184321/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184321.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184321/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184321/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184321/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184321/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184321/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184321/contributors",
+ "created_at": "2024-01-11T15:38:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184321/deployments",
+ "description": "Allen Institute: Sst-IRES-Cre VISp layer 5 473835796",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184321/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184321/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184321/forks",
+ "full_name": "OpenSourceBrain/184321",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184321/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184321/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184321/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184321.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184321",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184321/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184321",
+ "id": 742018147,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184321/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184321/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184321/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184321/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184321/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184321/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184321/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184321/milestones{/number}",
+ "mirror_url": null,
+ "name": "184321",
+ "node_id": "R_kgDOLDpMYw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184321/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184321/pulls{/number}",
+ "pushed_at": "2019-05-31T04:49:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184321/releases{/id}",
+ "size": 134,
+ "ssh_url": "git@github.com:OpenSourceBrain/184321.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184321/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184321/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184321/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184321/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184321",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184321/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184321/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184321/git/trees{/sha}",
+ "updated_at": "2024-01-11T15:38:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184321",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184323": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184323/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184323/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184323/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184323/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184323.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184323/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184323/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184323/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184323/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184323/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184323/contributors",
+ "created_at": "2024-01-11T17:57:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184323/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 6a 473860269",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184323/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184323/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184323/forks",
+ "full_name": "OpenSourceBrain/184323",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184323/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184323/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184323/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184323.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184323",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184323/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184323",
+ "id": 742074573,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184323/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184323/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184323/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184323/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184323/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184323/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184323/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184323/milestones{/number}",
+ "mirror_url": null,
+ "name": "184323",
+ "node_id": "R_kgDOLDsozQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184323/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184323/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184323/releases{/id}",
+ "size": 96,
+ "ssh_url": "git@github.com:OpenSourceBrain/184323.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184323/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184323/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184323/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184323/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184323",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184323/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184323/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184323/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184323",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184325": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184325/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184325/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184325/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184325/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184325.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184325/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184325/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184325/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184325/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184325/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184325/contributors",
+ "created_at": "2024-01-11T17:57:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184325/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 473862421",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184325/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184325/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184325/forks",
+ "full_name": "OpenSourceBrain/184325",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184325/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184325/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184325/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184325.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184325",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184325/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184325",
+ "id": 742074585,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184325/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184325/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184325/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184325/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184325/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184325/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184325/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184325/milestones{/number}",
+ "mirror_url": null,
+ "name": "184325",
+ "node_id": "R_kgDOLDso2Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184325/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184325/pulls{/number}",
+ "pushed_at": "2019-05-31T04:54:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184325/releases{/id}",
+ "size": 61,
+ "ssh_url": "git@github.com:OpenSourceBrain/184325.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184325/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184325/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184325/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184325/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184325",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184325/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184325/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184325/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184325",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184327": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184327/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184327/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184327/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184327/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184327.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184327/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184327/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184327/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184327/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184327/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184327/contributors",
+ "created_at": "2024-01-11T17:57:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184327/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 2/3 473862496",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184327/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184327/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184327/forks",
+ "full_name": "OpenSourceBrain/184327",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184327/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184327/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184327/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184327.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184327",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184327/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184327",
+ "id": 742074604,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184327/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184327/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184327/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184327/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184327/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184327/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184327/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184327/milestones{/number}",
+ "mirror_url": null,
+ "name": "184327",
+ "node_id": "R_kgDOLDso7A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184327/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184327/pulls{/number}",
+ "pushed_at": "2019-05-31T05:07:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184327/releases{/id}",
+ "size": 96,
+ "ssh_url": "git@github.com:OpenSourceBrain/184327.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184327/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184327/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184327/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184327/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184327",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184327/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184327/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184327/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184327",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184329": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184329/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184329/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184329/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184329/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184329.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184329/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184329/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184329/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184329/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184329/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184329/contributors",
+ "created_at": "2024-01-11T17:57:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184329/deployments",
+ "description": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 4 473862845",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184329/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184329/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184329/forks",
+ "full_name": "OpenSourceBrain/184329",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184329/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184329/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184329/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184329.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184329",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184329/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184329",
+ "id": 742074621,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184329/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184329/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184329/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184329/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184329/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184329/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184329/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184329/milestones{/number}",
+ "mirror_url": null,
+ "name": "184329",
+ "node_id": "R_kgDOLDso_Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184329/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184329/pulls{/number}",
+ "pushed_at": "2019-05-31T02:32:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184329/releases{/id}",
+ "size": 74,
+ "ssh_url": "git@github.com:OpenSourceBrain/184329.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184329/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184329/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184329/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184329/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184329",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184329/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184329/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184329/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184329",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184331": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184331/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184331/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184331/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184331/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184331.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184331/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184331/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184331/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184331/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184331/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184331/contributors",
+ "created_at": "2024-01-11T17:57:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184331/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 4 473863035",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184331/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184331/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184331/forks",
+ "full_name": "OpenSourceBrain/184331",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184331/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184331/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184331/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184331.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184331",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184331/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184331",
+ "id": 742074628,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184331/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184331/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184331/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184331/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184331/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184331/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184331/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184331/milestones{/number}",
+ "mirror_url": null,
+ "name": "184331",
+ "node_id": "R_kgDOLDspBA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184331/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184331/pulls{/number}",
+ "pushed_at": "2019-05-31T04:54:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184331/releases{/id}",
+ "size": 69,
+ "ssh_url": "git@github.com:OpenSourceBrain/184331.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184331/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184331/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184331/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184331/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184331",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184331/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184331/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184331/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184331",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184333": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184333/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184333/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184333/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184333/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184333.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184333/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184333/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184333/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184333/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184333/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184333/contributors",
+ "created_at": "2024-01-11T17:57:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184333/deployments",
+ "description": "Allen Institute: Rorb-IRES2-Cre-D VISp layer 4 473863510",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184333/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184333/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184333/forks",
+ "full_name": "OpenSourceBrain/184333",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184333/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184333/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184333/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184333.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184333",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184333/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184333",
+ "id": 742074638,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184333/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184333/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184333/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184333/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184333/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184333/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184333/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184333/milestones{/number}",
+ "mirror_url": null,
+ "name": "184333",
+ "node_id": "R_kgDOLDspDg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184333/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184333/pulls{/number}",
+ "pushed_at": "2019-05-31T05:07:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184333/releases{/id}",
+ "size": 89,
+ "ssh_url": "git@github.com:OpenSourceBrain/184333.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184333/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184333/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184333/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184333/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184333",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184333/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184333/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184333/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184333",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184335": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184335/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184335/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184335/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184335/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184335.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184335/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184335/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184335/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184335/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184335/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184335/contributors",
+ "created_at": "2024-01-11T17:57:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184335/deployments",
+ "description": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 5 473863578",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184335/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184335/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184335/forks",
+ "full_name": "OpenSourceBrain/184335",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184335/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184335/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184335/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184335.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184335",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184335/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184335",
+ "id": 742074661,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184335/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184335/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184335/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184335/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184335/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184335/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184335/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184335/milestones{/number}",
+ "mirror_url": null,
+ "name": "184335",
+ "node_id": "R_kgDOLDspJQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184335/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184335/pulls{/number}",
+ "pushed_at": "2019-05-31T04:36:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184335/releases{/id}",
+ "size": 119,
+ "ssh_url": "git@github.com:OpenSourceBrain/184335.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184335/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184335/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184335/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184335/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184335",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184335/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184335/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184335/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184335",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184337": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184337/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184337/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184337/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184337/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184337.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184337/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184337/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184337/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184337/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184337/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184337/contributors",
+ "created_at": "2024-01-11T17:57:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184337/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 4 473871429",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184337/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184337/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184337/forks",
+ "full_name": "OpenSourceBrain/184337",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184337/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184337/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184337/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184337.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184337",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184337/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184337",
+ "id": 742074681,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184337/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184337/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184337/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184337/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184337/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184337/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184337/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184337/milestones{/number}",
+ "mirror_url": null,
+ "name": "184337",
+ "node_id": "R_kgDOLDspOQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184337/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184337/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184337/releases{/id}",
+ "size": 128,
+ "ssh_url": "git@github.com:OpenSourceBrain/184337.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184337/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184337/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184337/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184337/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184337",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184337/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184337/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184337/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184337",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184339": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184339/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184339/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184339/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184339/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184339.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184339/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184339/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184339/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184339/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184339/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184339/contributors",
+ "created_at": "2024-01-11T17:57:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184339/deployments",
+ "description": "Allen Institute: Rbp4-Cre VISp layer 6a 473871592",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184339/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184339/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184339/forks",
+ "full_name": "OpenSourceBrain/184339",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184339/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184339/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184339/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184339.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184339",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184339/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184339",
+ "id": 742074697,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184339/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184339/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184339/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184339/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184339/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184339/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184339/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184339/milestones{/number}",
+ "mirror_url": null,
+ "name": "184339",
+ "node_id": "R_kgDOLDspSQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184339/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184339/pulls{/number}",
+ "pushed_at": "2019-05-31T02:45:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184339/releases{/id}",
+ "size": 130,
+ "ssh_url": "git@github.com:OpenSourceBrain/184339.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184339/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184339/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184339/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184339/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184339",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184339/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184339/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184339/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184339",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184341": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184341/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184341/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184341/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184341/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184341.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184341/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184341/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184341/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184341/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184341/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184341/contributors",
+ "created_at": "2024-01-11T17:57:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184341/deployments",
+ "description": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 5 473871773",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184341/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184341/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184341/forks",
+ "full_name": "OpenSourceBrain/184341",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184341/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184341/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184341/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184341.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184341",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184341/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184341",
+ "id": 742074710,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184341/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184341/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184341/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184341/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184341/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184341/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184341/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184341/milestones{/number}",
+ "mirror_url": null,
+ "name": "184341",
+ "node_id": "R_kgDOLDspVg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184341/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184341/pulls{/number}",
+ "pushed_at": "2019-05-31T03:31:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184341/releases{/id}",
+ "size": 123,
+ "ssh_url": "git@github.com:OpenSourceBrain/184341.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184341/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184341/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184341/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184341/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184341",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184341/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184341/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184341/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184341",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184344": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184344/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184344/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184344/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184344/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184344.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184344/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184344/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184344/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184344/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184344/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184344/contributors",
+ "created_at": "2024-01-11T17:57:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184344/deployments",
+ "description": "Allen Institute: Scnn1a-Tg3-Cre VISp layer 4 473872986",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184344/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184344/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184344/forks",
+ "full_name": "OpenSourceBrain/184344",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184344/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184344/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184344/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184344.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184344",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184344/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184344",
+ "id": 742074725,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184344/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184344/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184344/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184344/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184344/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184344/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184344/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184344/milestones{/number}",
+ "mirror_url": null,
+ "name": "184344",
+ "node_id": "R_kgDOLDspZQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184344/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184344/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184344/releases{/id}",
+ "size": 113,
+ "ssh_url": "git@github.com:OpenSourceBrain/184344.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184344/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184344/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184344/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184344/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184344",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184344/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184344/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184344/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184344",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184346": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184346/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184346/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184346/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184346/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184346.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184346/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184346/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184346/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184346/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184346/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184346/contributors",
+ "created_at": "2024-01-11T17:57:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184346/deployments",
+ "description": "Allen Institute: Rbp4-Cre VISp layer 5 472424854",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184346/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184346/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184346/forks",
+ "full_name": "OpenSourceBrain/184346",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184346/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184346/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184346/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184346.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184346",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184346/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184346",
+ "id": 742074733,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184346/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184346/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184346/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184346/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184346/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184346/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184346/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184346/milestones{/number}",
+ "mirror_url": null,
+ "name": "184346",
+ "node_id": "R_kgDOLDspbQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184346/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184346/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184346/releases{/id}",
+ "size": 118,
+ "ssh_url": "git@github.com:OpenSourceBrain/184346.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184346/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184346/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184346/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184346/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184346",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184346/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184346/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184346/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184346",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184348": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184348/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184348/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184348/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184348/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184348.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184348/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184348/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184348/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184348/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184348/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184348/contributors",
+ "created_at": "2024-01-11T17:57:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184348/deployments",
+ "description": "Allen Institute: Ntsr1-Cre VISp layer 4 472430904",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184348/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184348/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184348/forks",
+ "full_name": "OpenSourceBrain/184348",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184348/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184348/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184348/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184348.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184348",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184348/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184348",
+ "id": 742074748,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184348/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184348/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184348/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184348/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184348/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184348/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184348/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184348/milestones{/number}",
+ "mirror_url": null,
+ "name": "184348",
+ "node_id": "R_kgDOLDspfA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184348/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184348/pulls{/number}",
+ "pushed_at": "2019-05-31T02:55:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184348/releases{/id}",
+ "size": 91,
+ "ssh_url": "git@github.com:OpenSourceBrain/184348.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184348/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184348/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184348/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184348/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184348",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184348/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184348/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184348/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184348",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184350": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184350/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184350/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184350/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184350/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184350.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184350/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184350/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184350/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184350/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184350/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184350/contributors",
+ "created_at": "2024-01-11T17:57:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184350/deployments",
+ "description": "Allen Institute: Pvalb-IRES-Cre VISp layer 5 473465774",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184350/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184350/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184350/forks",
+ "full_name": "OpenSourceBrain/184350",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184350/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184350/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184350/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184350.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184350",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184350/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184350",
+ "id": 742074762,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184350/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184350/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184350/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184350/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184350/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184350/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184350/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184350/milestones{/number}",
+ "mirror_url": null,
+ "name": "184350",
+ "node_id": "R_kgDOLDspig",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184350/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184350/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184350/releases{/id}",
+ "size": 112,
+ "ssh_url": "git@github.com:OpenSourceBrain/184350.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184350/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184350/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184350/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184350/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184350",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184350/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184350/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184350/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184350",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184352": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184352/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184352/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184352/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184352/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184352.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184352/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184352/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184352/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184352/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184352/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184352/contributors",
+ "created_at": "2024-01-11T17:57:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184352/deployments",
+ "description": "Allen Institute: Nr5a1-Cre VISp layer 4 472915634",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184352/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184352/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184352/forks",
+ "full_name": "OpenSourceBrain/184352",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184352/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184352/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184352/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184352.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184352",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184352/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184352",
+ "id": 742074778,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184352/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184352/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184352/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184352/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184352/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184352/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184352/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184352/milestones{/number}",
+ "mirror_url": null,
+ "name": "184352",
+ "node_id": "R_kgDOLDspmg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184352/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184352/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184352/releases{/id}",
+ "size": 84,
+ "ssh_url": "git@github.com:OpenSourceBrain/184352.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184352/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184352/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184352/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184352/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184352",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184352/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184352/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184352/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184352",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184404": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184404/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184404/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184404/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184404/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184404.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184404/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184404/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184404/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184404/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184404/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184404/contributors",
+ "created_at": "2024-01-11T17:57:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184404/deployments",
+ "description": "Interaction of leak and IMI conductance on the STG over broad temperature range (Stadele et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184404/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184404/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184404/forks",
+ "full_name": "OpenSourceBrain/184404",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184404/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184404/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184404/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184404.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184404",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184404/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184404",
+ "id": 742074790,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184404/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184404/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184404/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184404/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184404/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184404/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184404/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184404/milestones{/number}",
+ "mirror_url": null,
+ "name": "184404",
+ "node_id": "R_kgDOLDsppg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184404/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184404/pulls{/number}",
+ "pushed_at": "2023-11-28T20:54:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184404/releases{/id}",
+ "size": 2779,
+ "ssh_url": "git@github.com:OpenSourceBrain/184404.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184404/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184404/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184404/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184404/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184404",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184404/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184404/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184404/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184404",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184410": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184410/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184410/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184410/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184410/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184410.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184410/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184410/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184410/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184410/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184410/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184410/contributors",
+ "created_at": "2024-01-11T17:57:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184410/deployments",
+ "description": "Response of AMPA receptor kinetic model to glutamate release distance (Allam et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184410/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184410/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184410/forks",
+ "full_name": "OpenSourceBrain/184410",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184410/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184410/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184410/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184410.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184410",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184410/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184410",
+ "id": 742074799,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184410/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184410/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184410/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184410/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184410/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184410/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184410/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184410/milestones{/number}",
+ "mirror_url": null,
+ "name": "184410",
+ "node_id": "R_kgDOLDsprw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184410/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184410/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184410/releases{/id}",
+ "size": 235,
+ "ssh_url": "git@github.com:OpenSourceBrain/184410.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184410/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184410/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184410/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184410/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184410",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184410/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184410/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184410/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184410",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184479": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184479/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184479/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184479/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184479/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184479.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184479/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184479/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184479/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184479/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184479/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184479/contributors",
+ "created_at": "2024-01-11T17:57:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184479/deployments",
+ "description": "Neural Field Simulator (Nichols & Hutt 2012-2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184479/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184479/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184479/forks",
+ "full_name": "OpenSourceBrain/184479",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184479/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184479/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184479/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184479.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184479",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184479/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184479",
+ "id": 742074807,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184479/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184479/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184479/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184479/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184479/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184479/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184479/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184479/milestones{/number}",
+ "mirror_url": null,
+ "name": "184479",
+ "node_id": "R_kgDOLDsptw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184479/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184479/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184479/releases{/id}",
+ "size": 1636,
+ "ssh_url": "git@github.com:OpenSourceBrain/184479.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184479/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184479/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184479/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184479/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184479",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184479/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184479/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184479/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184479",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184487": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184487/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184487/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184487/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184487/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184487.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184487/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184487/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184487/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184487/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184487/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184487/contributors",
+ "created_at": "2024-01-11T17:57:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184487/deployments",
+ "description": "Memory savings through unified pre- and postsynaptic STDP (Costa et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184487/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184487/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184487/forks",
+ "full_name": "OpenSourceBrain/184487",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184487/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184487/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184487/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184487.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184487",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184487/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184487",
+ "id": 742074822,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184487/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184487/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184487/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184487/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184487/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184487/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184487/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184487/milestones{/number}",
+ "mirror_url": null,
+ "name": "184487",
+ "node_id": "R_kgDOLDspxg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184487/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184487/pulls{/number}",
+ "pushed_at": "2023-11-28T20:54:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184487/releases{/id}",
+ "size": 181,
+ "ssh_url": "git@github.com:OpenSourceBrain/184487.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184487/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184487/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184487/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184487/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184487",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184487/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184487/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184487/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184487",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184491": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184491/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184491/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184491/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184491/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184491.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184491/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184491/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184491/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184491/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184491/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184491/contributors",
+ "created_at": "2024-01-11T17:57:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184491/deployments",
+ "description": "Excessive beta oscillations in Parkinson\"s disease (Pavlides et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184491/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184491/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184491/forks",
+ "full_name": "OpenSourceBrain/184491",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184491/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184491/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184491/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184491.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184491",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184491/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184491",
+ "id": 742074830,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184491/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184491/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184491/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184491/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184491/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184491/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184491/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184491/milestones{/number}",
+ "mirror_url": null,
+ "name": "184491",
+ "node_id": "R_kgDOLDspzg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184491/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184491/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184491/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/184491.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184491/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184491/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184491/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184491/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184491",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184491/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184491/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184491/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184491",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184497": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184497/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184497/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184497/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184497/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184497.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184497/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184497/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184497/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184497/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184497/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184497/contributors",
+ "created_at": "2024-01-11T17:57:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184497/deployments",
+ "description": "Rhesus Monkey Young and Aged L3 PFC Pyramidal Neurons (Rumbell et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184497/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184497/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184497/forks",
+ "full_name": "OpenSourceBrain/184497",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184497/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184497/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184497/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184497.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184497",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184497/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184497",
+ "id": 742074845,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184497/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184497/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184497/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184497/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184497/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184497/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184497/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184497/milestones{/number}",
+ "mirror_url": null,
+ "name": "184497",
+ "node_id": "R_kgDOLDsp3Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184497/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184497/pulls{/number}",
+ "pushed_at": "2023-11-28T20:55:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184497/releases{/id}",
+ "size": 4636,
+ "ssh_url": "git@github.com:OpenSourceBrain/184497.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184497/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184497/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184497/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184497/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184497",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184497/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184497/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184497/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184497",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184545": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184545/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184545/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184545/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184545/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184545.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184545/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184545/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184545/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184545/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184545/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184545/contributors",
+ "created_at": "2024-01-11T17:57:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184545/deployments",
+ "description": "CA1 SOM+ (OLM) hippocampal interneuron (Ferguson et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184545/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184545/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184545/forks",
+ "full_name": "OpenSourceBrain/184545",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184545/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184545/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184545/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184545.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184545",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184545/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184545",
+ "id": 742074851,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184545/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184545/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184545/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184545/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184545/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184545/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184545/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184545/milestones{/number}",
+ "mirror_url": null,
+ "name": "184545",
+ "node_id": "R_kgDOLDsp4w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184545/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184545/pulls{/number}",
+ "pushed_at": "2019-05-31T03:34:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184545/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/184545.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184545/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184545/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184545/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184545/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184545",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184545/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184545/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184545/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184545",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184725": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184725/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184725/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184725/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184725/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184725.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184725/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184725/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184725/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184725/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184725/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184725/contributors",
+ "created_at": "2024-01-11T17:57:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184725/deployments",
+ "description": "NMDA spikes in basal dendrites of L5 pyramidal neurons (Polsky et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184725/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184725/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184725/forks",
+ "full_name": "OpenSourceBrain/184725",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184725/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184725/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184725/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184725.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184725",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184725/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184725",
+ "id": 742074867,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184725/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184725/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184725/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184725/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184725/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184725/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184725/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184725/milestones{/number}",
+ "mirror_url": null,
+ "name": "184725",
+ "node_id": "R_kgDOLDsp8w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184725/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184725/pulls{/number}",
+ "pushed_at": "2019-05-31T04:51:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184725/releases{/id}",
+ "size": 177,
+ "ssh_url": "git@github.com:OpenSourceBrain/184725.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184725/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184725/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184725/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184725/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184725",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184725/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184725/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184725/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:57:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184725",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184731": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184731/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184731/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184731/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184731/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184731.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184731/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184731/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184731/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184731/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184731/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184731/contributors",
+ "created_at": "2024-01-11T17:58:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184731/deployments",
+ "description": "CA1 pyramidal cell receptor dependent cAMP dynamics (Chay et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184731/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184731/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184731/forks",
+ "full_name": "OpenSourceBrain/184731",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184731/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184731/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184731/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184731.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184731",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184731/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184731",
+ "id": 742074880,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184731/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184731/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184731/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184731/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184731/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184731/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184731/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184731/milestones{/number}",
+ "mirror_url": null,
+ "name": "184731",
+ "node_id": "R_kgDOLDsqAA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184731/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184731/pulls{/number}",
+ "pushed_at": "2019-05-31T04:53:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184731/releases{/id}",
+ "size": 4699,
+ "ssh_url": "git@github.com:OpenSourceBrain/184731.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184731/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184731/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184731/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184731/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184731",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184731/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184731/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184731/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184731",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/184732": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/184732/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/184732/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/184732/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/184732/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/184732.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/184732/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/184732/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/184732/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/184732/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/184732/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/184732/contributors",
+ "created_at": "2024-01-11T17:58:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/184732/deployments",
+ "description": "pre-B\u00f6tzinger complex variability (Fietkiewicz et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/184732/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/184732/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/184732/forks",
+ "full_name": "OpenSourceBrain/184732",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/184732/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/184732/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/184732/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/184732.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/184732",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/184732/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/184732",
+ "id": 742074902,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/184732/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/184732/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/184732/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/184732/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/184732/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/184732/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/184732/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/184732/milestones{/number}",
+ "mirror_url": null,
+ "name": "184732",
+ "node_id": "R_kgDOLDsqFg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/184732/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/184732/pulls{/number}",
+ "pushed_at": "2023-07-08T15:45:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/184732/releases{/id}",
+ "size": 58,
+ "ssh_url": "git@github.com:OpenSourceBrain/184732.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/184732/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/184732/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/184732/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/184732/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/184732",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/184732/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/184732/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/184732/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/184732",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/18500": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/18500/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/18500/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/18500/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/18500/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/18500.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/18500/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/18500/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/18500/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/18500/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/18500/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/18500/contributors",
+ "created_at": "2024-01-08T14:05:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/18500/deployments",
+ "description": "Kinetic synaptic models applicable to building networks (Destexhe et al 1998)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/18500/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/18500/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/18500/forks",
+ "full_name": "OpenSourceBrain/18500",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/18500/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/18500/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/18500/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/18500.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/18500",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/18500/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/18500",
+ "id": 740518346,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/18500/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/18500/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/18500/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/18500/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/18500/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/18500/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/18500/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/18500/milestones{/number}",
+ "mirror_url": null,
+ "name": "18500",
+ "node_id": "R_kgDOLCNpyg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/18500/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/18500/pulls{/number}",
+ "pushed_at": "2018-04-23T18:40:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/18500/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/18500.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/18500/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/18500/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/18500/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/18500/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/18500",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/18500/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/18500/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/18500/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/18500",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/18501": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/18501/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/18501/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/18501/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/18501/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/18501.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/18501/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/18501/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/18501/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/18501/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/18501/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/18501/contributors",
+ "created_at": "2024-01-08T14:05:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/18501/deployments",
+ "description": "Salamander retinal ganglian cells: morphology influences firing (Sheasby, Fohlmeister 1999)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/18501/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/18501/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/18501/forks",
+ "full_name": "OpenSourceBrain/18501",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/18501/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/18501/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/18501/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/18501.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/18501",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/18501/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/18501",
+ "id": 740518362,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/18501/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/18501/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/18501/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/18501/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/18501/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/18501/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/18501/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/18501/milestones{/number}",
+ "mirror_url": null,
+ "name": "18501",
+ "node_id": "R_kgDOLCNp2g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/18501/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/18501/pulls{/number}",
+ "pushed_at": "2018-04-23T18:41:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/18501/releases{/id}",
+ "size": 388,
+ "ssh_url": "git@github.com:OpenSourceBrain/18501.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/18501/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/18501/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/18501/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/18501/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/18501",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/18501/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/18501/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/18501/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/18501",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185014": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185014/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185014/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185014/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185014/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185014.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185014/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185014/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185014/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185014/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185014/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185014/contributors",
+ "created_at": "2024-01-11T17:58:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185014/deployments",
+ "description": "Gamma-beta alternation in the olfactory bulb (David, Fourcaud-Trocm\u00e9 et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185014/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185014/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185014/forks",
+ "full_name": "OpenSourceBrain/185014",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185014/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185014/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185014/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185014.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185014",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185014/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185014",
+ "id": 742074921,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185014/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185014/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185014/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185014/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185014/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185014/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185014/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185014/milestones{/number}",
+ "mirror_url": null,
+ "name": "185014",
+ "node_id": "R_kgDOLDsqKQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185014/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185014/pulls{/number}",
+ "pushed_at": "2023-11-28T20:55:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185014/releases{/id}",
+ "size": 18,
+ "ssh_url": "git@github.com:OpenSourceBrain/185014.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185014/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185014/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185014/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185014/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185014",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185014/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185014/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185014/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185014",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/18502": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/18502/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/18502/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/18502/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/18502/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/18502.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/18502/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/18502/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/18502/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/18502/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/18502/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/18502/contributors",
+ "created_at": "2024-01-08T14:05:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/18502/deployments",
+ "description": "Spine fusion and branching effects synaptic response (Rusakov et al 1996, 1997)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/18502/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/18502/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/18502/forks",
+ "full_name": "OpenSourceBrain/18502",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/18502/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/18502/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/18502/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/18502.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/18502",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/18502/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/18502",
+ "id": 740518383,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/18502/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/18502/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/18502/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/18502/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/18502/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/18502/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/18502/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/18502/milestones{/number}",
+ "mirror_url": null,
+ "name": "18502",
+ "node_id": "R_kgDOLCNp7w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/18502/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/18502/pulls{/number}",
+ "pushed_at": "2018-04-23T18:41:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/18502/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/18502.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/18502/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/18502/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/18502/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/18502/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/18502",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/18502/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/18502/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/18502/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:05:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/18502",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185021": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185021/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185021/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185021/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185021/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185021.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185021/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185021/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185021/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185021/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185021/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185021/contributors",
+ "created_at": "2024-01-11T17:58:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185021/deployments",
+ "description": "CA1 pyramidal neuron network model (Ferguson et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185021/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185021/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185021/forks",
+ "full_name": "OpenSourceBrain/185021",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185021/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185021/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185021/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185021.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185021",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185021/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185021",
+ "id": 742074939,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185021/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185021/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185021/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185021/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185021/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185021/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185021/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185021/milestones{/number}",
+ "mirror_url": null,
+ "name": "185021",
+ "node_id": "R_kgDOLDsqOw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185021/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185021/pulls{/number}",
+ "pushed_at": "2019-05-31T02:17:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185021/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/185021.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185021/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185021/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185021/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185021/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185021",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185021/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185021/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185021/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185021",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185090": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185090/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185090/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185090/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185090/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185090.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185090/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185090/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185090/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185090/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185090/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185090/contributors",
+ "created_at": "2024-01-11T17:58:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185090/deployments",
+ "description": "Detailed analysis of trajectories in the Morris water maze (Gehring et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185090/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185090/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185090/forks",
+ "full_name": "OpenSourceBrain/185090",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185090/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185090/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185090/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185090.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185090",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185090/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185090",
+ "id": 742074949,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185090/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185090/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185090/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185090/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185090/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185090/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185090/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185090/milestones{/number}",
+ "mirror_url": null,
+ "name": "185090",
+ "node_id": "R_kgDOLDsqRQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185090/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185090/pulls{/number}",
+ "pushed_at": "2019-05-31T03:25:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185090/releases{/id}",
+ "size": 5603,
+ "ssh_url": "git@github.com:OpenSourceBrain/185090.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185090/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185090/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185090/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185090/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185090",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185090/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185090/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185090/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185090",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185122": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185122/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185122/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185122/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185122/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185122.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185122/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185122/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185122/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185122/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185122/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185122/contributors",
+ "created_at": "2024-01-11T17:58:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185122/deployments",
+ "description": "Activator protein 1(AP-1) transcriptional regulatory model in brainstem neurons (Makadia et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185122/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185122/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185122/forks",
+ "full_name": "OpenSourceBrain/185122",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185122/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185122/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185122/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185122.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185122",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185122/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185122",
+ "id": 742074960,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185122/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185122/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185122/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185122/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185122/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185122/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185122/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185122/milestones{/number}",
+ "mirror_url": null,
+ "name": "185122",
+ "node_id": "R_kgDOLDsqUA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185122/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185122/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185122/releases{/id}",
+ "size": 30,
+ "ssh_url": "git@github.com:OpenSourceBrain/185122.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185122/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185122/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185122/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185122/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185122",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185122/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185122/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185122/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185122",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185123": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185123/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185123/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185123/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185123/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185123.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185123/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185123/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185123/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185123/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185123/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185123/contributors",
+ "created_at": "2024-01-11T17:58:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185123/deployments",
+ "description": "Effects of neural morphology on global and focal NMDA-spikes (Poleg-Polsky 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185123/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185123/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185123/forks",
+ "full_name": "OpenSourceBrain/185123",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185123/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185123/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185123/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185123.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185123",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185123/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185123",
+ "id": 742074970,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185123/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185123/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185123/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185123/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185123/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185123/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185123/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185123/milestones{/number}",
+ "mirror_url": null,
+ "name": "185123",
+ "node_id": "R_kgDOLDsqWg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185123/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185123/pulls{/number}",
+ "pushed_at": "2019-05-31T02:51:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185123/releases{/id}",
+ "size": 488,
+ "ssh_url": "git@github.com:OpenSourceBrain/185123.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185123/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185123/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185123/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185123/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185123",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185123/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185123/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185123/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185123",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185300": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185300/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185300/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185300/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185300/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185300.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185300/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185300/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185300/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185300/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185300/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185300/contributors",
+ "created_at": "2024-01-11T17:58:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185300/deployments",
+ "description": "Cell signaling/ion channel variability effects on neuronal response (Anderson, Makadia, et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185300/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185300/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185300/forks",
+ "full_name": "OpenSourceBrain/185300",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185300/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185300/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185300/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185300.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185300",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185300/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185300",
+ "id": 742074980,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185300/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185300/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185300/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185300/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185300/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185300/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185300/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185300/milestones{/number}",
+ "mirror_url": null,
+ "name": "185300",
+ "node_id": "R_kgDOLDsqZA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185300/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185300/pulls{/number}",
+ "pushed_at": "2019-05-31T03:27:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185300/releases{/id}",
+ "size": 106,
+ "ssh_url": "git@github.com:OpenSourceBrain/185300.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185300/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185300/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185300/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185300/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185300",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185300/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185300/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185300/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185300",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185328": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185328/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185328/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185328/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185328/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185328.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185328/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185328/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185328/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185328/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185328/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185328/contributors",
+ "created_at": "2024-01-11T17:58:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185328/deployments",
+ "description": "Enhancing the HH eqs: simulations based on the first publication in Biophys J (Moore 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185328/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185328/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185328/forks",
+ "full_name": "OpenSourceBrain/185328",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185328/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185328/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185328/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185328.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185328",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185328/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185328",
+ "id": 742074990,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185328/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185328/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185328/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185328/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185328/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185328/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185328/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185328/milestones{/number}",
+ "mirror_url": null,
+ "name": "185328",
+ "node_id": "R_kgDOLDsqbg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185328/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185328/pulls{/number}",
+ "pushed_at": "2023-11-28T20:55:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185328/releases{/id}",
+ "size": 63,
+ "ssh_url": "git@github.com:OpenSourceBrain/185328.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185328/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185328/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185328/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185328/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185328",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185328/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185328/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185328/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185328",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185330": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185330/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185330/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185330/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185330/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185330.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185330/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185330/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185330/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185330/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185330/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185330/contributors",
+ "created_at": "2024-01-11T17:58:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185330/deployments",
+ "description": "VTA neurons: Morphofunctional alterations in acute opiates withdrawal (Enrico et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185330/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185330/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185330/forks",
+ "full_name": "OpenSourceBrain/185330",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185330/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185330/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185330/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185330.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185330",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185330/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185330",
+ "id": 742075006,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185330/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185330/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185330/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185330/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185330/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185330/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185330/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185330/milestones{/number}",
+ "mirror_url": null,
+ "name": "185330",
+ "node_id": "R_kgDOLDsqfg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185330/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185330/pulls{/number}",
+ "pushed_at": "2019-05-31T03:20:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185330/releases{/id}",
+ "size": 101,
+ "ssh_url": "git@github.com:OpenSourceBrain/185330.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185330/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185330/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185330/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185330/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185330",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185330/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185330/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185330/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185330",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185332": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185332/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185332/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185332/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185332/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185332.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185332/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185332/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185332/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185332/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185332/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185332/contributors",
+ "created_at": "2024-01-11T17:58:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185332/deployments",
+ "description": "AOB mitral cell: persistent activity without feedback (Zylbertal et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185332/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185332/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185332/forks",
+ "full_name": "OpenSourceBrain/185332",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185332/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185332/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185332/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185332.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185332",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185332/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185332",
+ "id": 742075021,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185332/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185332/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185332/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185332/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185332/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185332/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185332/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185332/milestones{/number}",
+ "mirror_url": null,
+ "name": "185332",
+ "node_id": "R_kgDOLDsqjQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185332/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185332/pulls{/number}",
+ "pushed_at": "2019-05-31T03:20:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185332/releases{/id}",
+ "size": 252,
+ "ssh_url": "git@github.com:OpenSourceBrain/185332.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185332/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185332/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185332/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185332/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185332",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185332/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185332/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185332/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185332",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185334": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185334/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185334/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185334/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185334/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185334.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185334/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185334/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185334/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185334/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185334/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185334/contributors",
+ "created_at": "2024-01-11T17:58:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185334/deployments",
+ "description": "Double boundary value problem (A. Bose and J.E. Rubin, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185334/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185334/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185334/forks",
+ "full_name": "OpenSourceBrain/185334",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185334/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185334/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185334/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185334.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185334",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185334/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185334",
+ "id": 742075032,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185334/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185334/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185334/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185334/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185334/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185334/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185334/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185334/milestones{/number}",
+ "mirror_url": null,
+ "name": "185334",
+ "node_id": "R_kgDOLDsqmA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185334/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185334/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185334/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/185334.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185334/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185334/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185334/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185334/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185334",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185334/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185334/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185334/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185334",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185338": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185338/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185338/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185338/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185338/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185338.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185338/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185338/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185338/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185338/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185338/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185338/contributors",
+ "created_at": "2024-01-11T17:58:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185338/deployments",
+ "description": "Model predictive control model for an isometric motor task (Ueyama 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185338/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185338/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185338/forks",
+ "full_name": "OpenSourceBrain/185338",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185338/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185338/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185338/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185338.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185338",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185338/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185338",
+ "id": 742075038,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185338/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185338/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185338/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185338/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185338/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185338/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185338/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185338/milestones{/number}",
+ "mirror_url": null,
+ "name": "185338",
+ "node_id": "R_kgDOLDsqng",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185338/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185338/pulls{/number}",
+ "pushed_at": "2019-05-31T04:23:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185338/releases{/id}",
+ "size": 606,
+ "ssh_url": "git@github.com:OpenSourceBrain/185338.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185338/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185338/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185338/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185338/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185338",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185338/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185338/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185338/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185338",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185350": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185350/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185350/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185350/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185350/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185350.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185350/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185350/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185350/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185350/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185350/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185350/contributors",
+ "created_at": "2024-01-11T17:58:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185350/deployments",
+ "description": "Modeling dentate granule cells heterosynaptic plasticity using STDP-BCM rule (Jedlicka et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185350/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185350/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185350/forks",
+ "full_name": "OpenSourceBrain/185350",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185350/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185350/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185350/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185350.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185350",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185350/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185350",
+ "id": 742075053,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185350/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185350/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185350/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185350/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185350/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185350/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185350/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185350/milestones{/number}",
+ "mirror_url": null,
+ "name": "185350",
+ "node_id": "R_kgDOLDsqrQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185350/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185350/pulls{/number}",
+ "pushed_at": "2019-05-31T02:38:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185350/releases{/id}",
+ "size": 69,
+ "ssh_url": "git@github.com:OpenSourceBrain/185350.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185350/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185350/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185350/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185350/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185350",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185350/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185350/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185350/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185350",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185355": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185355/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185355/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185355/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185355/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185355.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185355/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185355/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185355/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185355/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185355/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185355/contributors",
+ "created_at": "2024-01-11T17:58:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185355/deployments",
+ "description": "Dentate gyrus network model pattern separation and granule cell scaling in epilepsy (Yim et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185355/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185355/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185355/forks",
+ "full_name": "OpenSourceBrain/185355",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185355/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185355/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185355/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185355.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185355",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185355/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185355",
+ "id": 742075064,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185355/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185355/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185355/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185355/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185355/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185355/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185355/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185355/milestones{/number}",
+ "mirror_url": null,
+ "name": "185355",
+ "node_id": "R_kgDOLDsquA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185355/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185355/pulls{/number}",
+ "pushed_at": "2023-11-28T20:55:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185355/releases{/id}",
+ "size": 159,
+ "ssh_url": "git@github.com:OpenSourceBrain/185355.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185355/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185355/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185355/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185355/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185355",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185355/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185355/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185355/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185355",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185464": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185464/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185464/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185464/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185464/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185464.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185464/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185464/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185464/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185464/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185464/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185464/contributors",
+ "created_at": "2024-01-11T17:58:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185464/deployments",
+ "description": "Olfactory Bulb mitral-granule network generates beta oscillations (Osinski & Kay 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185464/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185464/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185464/forks",
+ "full_name": "OpenSourceBrain/185464",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185464/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185464/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185464/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185464.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185464",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185464/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185464",
+ "id": 742075077,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185464/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185464/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185464/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185464/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185464/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185464/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185464/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185464/milestones{/number}",
+ "mirror_url": null,
+ "name": "185464",
+ "node_id": "R_kgDOLDsqxQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185464/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185464/pulls{/number}",
+ "pushed_at": "2023-11-28T21:03:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185464/releases{/id}",
+ "size": 818,
+ "ssh_url": "git@github.com:OpenSourceBrain/185464.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185464/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185464/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185464/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185464/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185464",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185464/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185464/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185464/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185464",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185512": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185512/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185512/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185512/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185512/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185512.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185512/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185512/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185512/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185512/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185512/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185512/contributors",
+ "created_at": "2024-01-11T17:58:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185512/deployments",
+ "description": "Non-Weak E-Fields Pyramidal Neurons (Reznik et. al.,2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185512/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185512/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185512/forks",
+ "full_name": "OpenSourceBrain/185512",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185512/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185512/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185512/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185512.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/185512",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185512/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185512",
+ "id": 742075085,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185512/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185512/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185512/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185512/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185512/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185512/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185512/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185512/milestones{/number}",
+ "mirror_url": null,
+ "name": "185512",
+ "node_id": "R_kgDOLDsqzQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185512/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185512/pulls{/number}",
+ "pushed_at": "2019-05-31T03:29:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185512/releases{/id}",
+ "size": 8179,
+ "ssh_url": "git@github.com:OpenSourceBrain/185512.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185512/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185512/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185512/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185512/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185512",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185512/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185512/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185512/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185512",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185513": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185513/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185513/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185513/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185513/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185513.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185513/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185513/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185513/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185513/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185513/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185513/contributors",
+ "created_at": "2024-01-11T17:58:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185513/deployments",
+ "description": "Cerebellar nuclear neuron (Sudhakar et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185513/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185513/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185513/forks",
+ "full_name": "OpenSourceBrain/185513",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185513/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185513/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185513/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185513.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/185513",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185513/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185513",
+ "id": 742075095,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185513/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185513/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185513/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185513/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185513/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185513/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185513/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185513/milestones{/number}",
+ "mirror_url": null,
+ "name": "185513",
+ "node_id": "R_kgDOLDsq1w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185513/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185513/pulls{/number}",
+ "pushed_at": "2023-11-28T21:02:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185513/releases{/id}",
+ "size": 1226,
+ "ssh_url": "git@github.com:OpenSourceBrain/185513.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185513/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185513/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185513/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185513/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185513",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185513/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185513/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185513/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185513",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185858": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185858/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185858/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185858/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185858/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185858.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185858/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185858/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185858/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185858/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185858/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185858/contributors",
+ "created_at": "2024-01-11T17:58:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185858/deployments",
+ "description": "Ca+/HCN channel-dependent persistent activity in multiscale model of neocortex (Neymotin et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185858/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185858/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185858/forks",
+ "full_name": "OpenSourceBrain/185858",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185858/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185858/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185858/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185858.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/185858",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185858/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185858",
+ "id": 742075105,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185858/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185858/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185858/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185858/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185858/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185858/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185858/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185858/milestones{/number}",
+ "mirror_url": null,
+ "name": "185858",
+ "node_id": "R_kgDOLDsq4Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185858/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185858/pulls{/number}",
+ "pushed_at": "2023-11-28T21:02:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185858/releases{/id}",
+ "size": 583,
+ "ssh_url": "git@github.com:OpenSourceBrain/185858.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185858/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185858/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185858/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185858/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185858",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185858/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185858/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185858/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185858",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185864": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185864/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185864/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185864/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185864/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185864.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185864/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185864/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185864/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185864/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185864/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185864/contributors",
+ "created_at": "2024-01-11T17:58:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185864/deployments",
+ "description": "Axonal spheroids and conduction defects in Alzheimer\u2019s disease (Yuan, Zhang, Tong, et al 2022)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185864/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185864/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185864/forks",
+ "full_name": "OpenSourceBrain/185864",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185864/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185864/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185864/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185864.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/185864",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185864/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185864",
+ "id": 742075117,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185864/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185864/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185864/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185864/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185864/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185864/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185864/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185864/milestones{/number}",
+ "mirror_url": null,
+ "name": "185864",
+ "node_id": "R_kgDOLDsq7Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185864/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185864/pulls{/number}",
+ "pushed_at": "2023-01-04T16:32:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185864/releases{/id}",
+ "size": 1063,
+ "ssh_url": "git@github.com:OpenSourceBrain/185864.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185864/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185864/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185864/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185864/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185864",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185864/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185864/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185864/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185864",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/185875": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/185875/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/185875/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/185875/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/185875/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/185875.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/185875/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/185875/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/185875/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/185875/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/185875/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/185875/contributors",
+ "created_at": "2024-01-11T17:58:40Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/185875/deployments",
+ "description": "Modeling maintenance of Long-Term Potentiation in clustered synapses (Smolen 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/185875/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/185875/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/185875/forks",
+ "full_name": "OpenSourceBrain/185875",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/185875/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/185875/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/185875/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/185875.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/185875",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/185875/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/185875",
+ "id": 742075132,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/185875/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/185875/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/185875/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/185875/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/185875/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/185875/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/185875/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/185875/milestones{/number}",
+ "mirror_url": null,
+ "name": "185875",
+ "node_id": "R_kgDOLDsq_A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/185875/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/185875/pulls{/number}",
+ "pushed_at": "2023-12-23T03:50:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/185875/releases{/id}",
+ "size": 501,
+ "ssh_url": "git@github.com:OpenSourceBrain/185875.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/185875/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/185875/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/185875/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/185875/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/185875",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/185875/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/185875/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/185875/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/185875",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/186768": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/186768/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/186768/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/186768/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/186768/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/186768.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/186768/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/186768/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/186768/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/186768/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/186768/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/186768/contributors",
+ "created_at": "2024-01-11T17:58:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/186768/deployments",
+ "description": "CA3 Network Model of Epileptic Activity (Sanjay et. al, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/186768/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/186768/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/186768/forks",
+ "full_name": "OpenSourceBrain/186768",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/186768/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/186768/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/186768/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/186768.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/186768",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/186768/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/186768",
+ "id": 742075143,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/186768/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/186768/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/186768/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/186768/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/186768/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/186768/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/186768/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/186768/milestones{/number}",
+ "mirror_url": null,
+ "name": "186768",
+ "node_id": "R_kgDOLDsrBw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/186768/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/186768/pulls{/number}",
+ "pushed_at": "2023-11-28T21:02:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/186768/releases{/id}",
+ "size": 825,
+ "ssh_url": "git@github.com:OpenSourceBrain/186768.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/186768/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/186768/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/186768/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/186768/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/186768",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/186768/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/186768/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/186768/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/186768",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/186977": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/186977/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/186977/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/186977/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/186977/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/186977.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/186977/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/186977/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/186977/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/186977/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/186977/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/186977/contributors",
+ "created_at": "2024-01-11T17:58:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/186977/deployments",
+ "description": "H-currents effect on the fluctuation of gamma/beta oscillations (Avella-Gonzalez et al., 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/186977/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/186977/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/186977/forks",
+ "full_name": "OpenSourceBrain/186977",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/186977/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/186977/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/186977/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/186977.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/186977",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/186977/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/186977",
+ "id": 742075160,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/186977/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/186977/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/186977/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/186977/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/186977/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/186977/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/186977/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/186977/milestones{/number}",
+ "mirror_url": null,
+ "name": "186977",
+ "node_id": "R_kgDOLDsrGA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/186977/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/186977/pulls{/number}",
+ "pushed_at": "2023-07-08T15:44:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/186977/releases{/id}",
+ "size": 139,
+ "ssh_url": "git@github.com:OpenSourceBrain/186977.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/186977/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/186977/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/186977/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/186977/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/186977",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/186977/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/186977/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/186977/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/186977",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187213": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187213/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187213/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187213/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187213/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187213.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187213/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187213/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187213/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187213/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187213/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187213/contributors",
+ "created_at": "2024-01-11T17:58:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187213/deployments",
+ "description": "Anoxic depolarization, recovery: effect of brain regions and extracellular space (Hubel et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187213/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187213/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187213/forks",
+ "full_name": "OpenSourceBrain/187213",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187213/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187213/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187213/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187213.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187213",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187213/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187213",
+ "id": 742075183,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187213/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187213/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187213/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187213/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187213/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187213/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187213/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187213/milestones{/number}",
+ "mirror_url": null,
+ "name": "187213",
+ "node_id": "R_kgDOLDsrLw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187213/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187213/pulls{/number}",
+ "pushed_at": "2022-02-18T16:29:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187213/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/187213.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187213/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187213/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187213/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187213/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187213",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187213/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187213/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187213/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187213",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/18738": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/18738/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/18738/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/18738/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/18738/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/18738.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/18738/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/18738/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/18738/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/18738/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/18738/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/18738/contributors",
+ "created_at": "2024-01-08T14:06:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/18738/deployments",
+ "description": "Dendritic tip geometry effects electrical properties (Tsutsui, Oka 2001)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/18738/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/18738/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/18738/forks",
+ "full_name": "OpenSourceBrain/18738",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/18738/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/18738/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/18738/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/18738.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/18738",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/18738/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/18738",
+ "id": 740518395,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/18738/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/18738/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/18738/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/18738/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/18738/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/18738/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/18738/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/18738/milestones{/number}",
+ "mirror_url": null,
+ "name": "18738",
+ "node_id": "R_kgDOLCNp-w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/18738/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/18738/pulls{/number}",
+ "pushed_at": "2019-05-31T03:00:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/18738/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/18738.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/18738/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/18738/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/18738/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/18738/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/18738",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/18738/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/18738/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/18738/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/18738",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/18742": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/18742/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/18742/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/18742/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/18742/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/18742.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/18742/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/18742/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/18742/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/18742/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/18742/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/18742/contributors",
+ "created_at": "2024-01-08T14:06:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/18742/deployments",
+ "description": "Novel Na current with slow de-inactivation (Tsutsui, Oka 2002)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/18742/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/18742/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/18742/forks",
+ "full_name": "OpenSourceBrain/18742",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/18742/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/18742/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/18742/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/18742.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/18742",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/18742/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/18742",
+ "id": 740518415,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/18742/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/18742/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/18742/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/18742/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/18742/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/18742/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/18742/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/18742/milestones{/number}",
+ "mirror_url": null,
+ "name": "18742",
+ "node_id": "R_kgDOLCNqDw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/18742/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/18742/pulls{/number}",
+ "pushed_at": "2019-05-31T04:54:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/18742/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/18742.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/18742/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/18742/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/18742/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/18742/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/18742",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/18742/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/18742/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/18742/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/18742",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187473": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187473/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187473/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187473/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187473/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187473.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187473/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187473/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187473/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187473/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187473/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187473/contributors",
+ "created_at": "2024-01-11T17:58:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187473/deployments",
+ "description": "A model of the T-junction of a C-fiber sensory neuron (Sundt et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187473/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187473/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187473/forks",
+ "full_name": "OpenSourceBrain/187473",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187473/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187473/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187473/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187473.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187473",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187473/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187473",
+ "id": 742075199,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187473/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187473/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187473/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187473/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187473/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187473/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187473/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187473/milestones{/number}",
+ "mirror_url": null,
+ "name": "187473",
+ "node_id": "R_kgDOLDsrPw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187473/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187473/pulls{/number}",
+ "pushed_at": "2019-05-31T03:45:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187473/releases{/id}",
+ "size": 144,
+ "ssh_url": "git@github.com:OpenSourceBrain/187473.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187473/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187473/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187473/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187473/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187473",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187473/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187473/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187473/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187473",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187474": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187474/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187474/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187474/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187474/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187474.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187474/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187474/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187474/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187474/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187474/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187474/contributors",
+ "created_at": "2024-01-11T17:58:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187474/deployments",
+ "description": "Layer V pyramidal cell model with reduced morphology (M\u00e4ki-Marttunen et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187474/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187474/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187474/forks",
+ "full_name": "OpenSourceBrain/187474",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187474/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187474/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187474/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187474.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187474",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187474/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187474",
+ "id": 742075212,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187474/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187474/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187474/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187474/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187474/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187474/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187474/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187474/milestones{/number}",
+ "mirror_url": null,
+ "name": "187474",
+ "node_id": "R_kgDOLDsrTA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187474/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187474/pulls{/number}",
+ "pushed_at": "2019-05-31T03:36:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187474/releases{/id}",
+ "size": 836,
+ "ssh_url": "git@github.com:OpenSourceBrain/187474.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187474/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187474/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187474/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187474/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187474",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187474/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187474/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187474/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187474",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187599": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187599/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187599/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187599/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187599/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187599.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187599/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187599/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187599/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187599/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187599/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187599/contributors",
+ "created_at": "2024-01-11T17:58:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187599/deployments",
+ "description": "An ion-based model for swelling of neurons and astrocytes (Hubel & Ullah 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187599/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187599/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187599/forks",
+ "full_name": "OpenSourceBrain/187599",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187599/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187599/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187599/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187599.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187599",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187599/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187599",
+ "id": 742075228,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187599/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187599/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187599/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187599/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187599/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187599/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187599/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187599/milestones{/number}",
+ "mirror_url": null,
+ "name": "187599",
+ "node_id": "R_kgDOLDsrXA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187599/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187599/pulls{/number}",
+ "pushed_at": "2019-05-31T04:53:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187599/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/187599.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187599/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187599/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187599/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187599/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187599",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187599/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187599/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187599/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187599",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187600": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187600/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187600/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187600/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187600/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187600.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187600/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187600/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187600/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187600/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187600/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187600/contributors",
+ "created_at": "2024-01-11T17:58:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187600/deployments",
+ "description": "Hodgkin\u2013Huxley model with fractional gating (Teka et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187600/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187600/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187600/forks",
+ "full_name": "OpenSourceBrain/187600",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187600/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187600/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187600/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187600.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187600",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187600/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187600",
+ "id": 742075237,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187600/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187600/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187600/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187600/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187600/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187600/languages",
+ "license": {
+ "key": "other",
+ "name": "Other",
+ "node_id": "MDc6TGljZW5zZTA=",
+ "spdx_id": "NOASSERTION",
+ "url": null
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187600/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187600/milestones{/number}",
+ "mirror_url": null,
+ "name": "187600",
+ "node_id": "R_kgDOLDsrZQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187600/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187600/pulls{/number}",
+ "pushed_at": "2019-05-31T04:49:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187600/releases{/id}",
+ "size": 443,
+ "ssh_url": "git@github.com:OpenSourceBrain/187600.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187600/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187600/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187600/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187600/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187600",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187600/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187600/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187600/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187600",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187603": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187603/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187603/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187603/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187603/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187603.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187603/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187603/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187603/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187603/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187603/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187603/contributors",
+ "created_at": "2024-01-11T17:58:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187603/deployments",
+ "description": "Inhibition of bAPs and Ca2+ spikes in a multi-compartment pyramidal neuron model (Wilmes et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187603/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187603/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187603/forks",
+ "full_name": "OpenSourceBrain/187603",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187603/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187603/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187603/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187603.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187603",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187603/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187603",
+ "id": 742075247,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187603/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187603/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187603/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187603/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187603/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187603/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187603/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187603/milestones{/number}",
+ "mirror_url": null,
+ "name": "187603",
+ "node_id": "R_kgDOLDsrbw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187603/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187603/pulls{/number}",
+ "pushed_at": "2023-11-28T21:03:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187603/releases{/id}",
+ "size": 57,
+ "ssh_url": "git@github.com:OpenSourceBrain/187603.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187603/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187603/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187603/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187603/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187603",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187603/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187603/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187603/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187603",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187604": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187604/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187604/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187604/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187604/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187604.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187604/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187604/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187604/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187604/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187604/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187604/contributors",
+ "created_at": "2024-01-11T17:58:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187604/deployments",
+ "description": "Hippocampal CA1 NN with spontaneous theta, gamma: full scale & network clamp (Bezaire et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187604/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187604/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187604/forks",
+ "full_name": "OpenSourceBrain/187604",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187604/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187604/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187604/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187604.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187604",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187604/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187604",
+ "id": 742075262,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187604/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187604/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187604/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187604/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187604/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187604/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187604/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187604/milestones{/number}",
+ "mirror_url": null,
+ "name": "187604",
+ "node_id": "R_kgDOLDsrfg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187604/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187604/pulls{/number}",
+ "pushed_at": "2023-11-28T21:03:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187604/releases{/id}",
+ "size": 2638,
+ "ssh_url": "git@github.com:OpenSourceBrain/187604.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187604/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187604/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187604/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187604/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187604",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187604/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187604/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187604/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:58:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187604",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187605": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187605/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187605/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187605/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187605/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187605.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187605/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187605/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187605/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187605/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187605/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187605/contributors",
+ "created_at": "2024-01-11T17:59:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187605/deployments",
+ "description": "Endocannabinoid dynamics gate spike-timing dependent depression and potentiation (Cui et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187605/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187605/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187605/forks",
+ "full_name": "OpenSourceBrain/187605",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187605/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187605/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187605/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187605.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187605",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187605/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187605",
+ "id": 742075273,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187605/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187605/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187605/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187605/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187605/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187605/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187605/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187605/milestones{/number}",
+ "mirror_url": null,
+ "name": "187605",
+ "node_id": "R_kgDOLDsriQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187605/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187605/pulls{/number}",
+ "pushed_at": "2019-05-31T04:56:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187605/releases{/id}",
+ "size": 700,
+ "ssh_url": "git@github.com:OpenSourceBrain/187605.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187605/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187605/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187605/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187605/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187605",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187605/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187605/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187605/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187605",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187610": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187610/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187610/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187610/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187610/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187610.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187610/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187610/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187610/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187610/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187610/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187610/contributors",
+ "created_at": "2024-01-11T17:59:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187610/deployments",
+ "description": "CA1 pyramidal neuron synaptic integration (Bloss et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187610/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187610/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187610/forks",
+ "full_name": "OpenSourceBrain/187610",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187610/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187610/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187610/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187610.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187610",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187610/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187610",
+ "id": 742075289,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187610/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187610/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187610/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187610/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187610/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187610/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187610/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187610/milestones{/number}",
+ "mirror_url": null,
+ "name": "187610",
+ "node_id": "R_kgDOLDsrmQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187610/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187610/pulls{/number}",
+ "pushed_at": "2019-05-31T04:55:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187610/releases{/id}",
+ "size": 277,
+ "ssh_url": "git@github.com:OpenSourceBrain/187610.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187610/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187610/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187610/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187610/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187610",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187610/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187610/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187610/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187610",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187615": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187615/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187615/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187615/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187615/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187615.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187615/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187615/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187615/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187615/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187615/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187615/contributors",
+ "created_at": "2024-01-11T17:59:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187615/deployments",
+ "description": "Pleiotropic effects of SCZ-associated genes (M\u00e4ki-Marttunen et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187615/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187615/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187615/forks",
+ "full_name": "OpenSourceBrain/187615",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187615/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187615/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187615/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187615.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/187615",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187615/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187615",
+ "id": 742075298,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187615/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187615/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187615/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187615/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187615/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187615/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187615/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187615/milestones{/number}",
+ "mirror_url": null,
+ "name": "187615",
+ "node_id": "R_kgDOLDsrog",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187615/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187615/pulls{/number}",
+ "pushed_at": "2023-11-28T21:05:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187615/releases{/id}",
+ "size": 41578,
+ "ssh_url": "git@github.com:OpenSourceBrain/187615.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187615/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187615/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187615/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187615/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187615",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187615/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187615/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187615/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187615",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/187687": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/187687/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/187687/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/187687/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/187687/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/187687.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/187687/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/187687/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/187687/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/187687/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/187687/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/187687/contributors",
+ "created_at": "2024-01-11T17:59:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/187687/deployments",
+ "description": "Axon growth model (Diehl et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/187687/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/187687/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/187687/forks",
+ "full_name": "OpenSourceBrain/187687",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/187687/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/187687/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/187687/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/187687.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/187687",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/187687/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/187687",
+ "id": 742075312,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/187687/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/187687/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/187687/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/187687/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/187687/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/187687/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/187687/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/187687/milestones{/number}",
+ "mirror_url": null,
+ "name": "187687",
+ "node_id": "R_kgDOLDsrsA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/187687/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/187687/pulls{/number}",
+ "pushed_at": "2019-05-31T03:25:35Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/187687/releases{/id}",
+ "size": 53,
+ "ssh_url": "git@github.com:OpenSourceBrain/187687.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/187687/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/187687/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/187687/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/187687/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/187687",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/187687/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/187687/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/187687/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/187687",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/188423": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/188423/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/188423/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/188423/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/188423/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/188423.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/188423/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/188423/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/188423/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/188423/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/188423/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/188423/contributors",
+ "created_at": "2024-01-11T17:59:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/188423/deployments",
+ "description": "Microsaccades and synchrony coding in the retina (Masquelier et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/188423/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/188423/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/188423/forks",
+ "full_name": "OpenSourceBrain/188423",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/188423/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/188423/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/188423/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/188423.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/188423",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/188423/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/188423",
+ "id": 742075325,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/188423/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/188423/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/188423/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/188423/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/188423/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/188423/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/188423/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/188423/milestones{/number}",
+ "mirror_url": null,
+ "name": "188423",
+ "node_id": "R_kgDOLDsrvQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/188423/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/188423/pulls{/number}",
+ "pushed_at": "2019-05-31T03:44:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/188423/releases{/id}",
+ "size": 42,
+ "ssh_url": "git@github.com:OpenSourceBrain/188423.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/188423/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/188423/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/188423/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/188423/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/188423",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/188423/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/188423/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/188423/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/188423",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/188543": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/188543/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/188543/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/188543/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/188543/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/188543.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/188543/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/188543/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/188543/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/188543/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/188543/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/188543/contributors",
+ "created_at": "2024-01-11T17:59:10Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/188543/deployments",
+ "description": "The neocortical microcircuit collaboration portal (Markram et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/188543/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/188543/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/188543/forks",
+ "full_name": "OpenSourceBrain/188543",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/188543/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/188543/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/188543/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/188543.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/188543",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/188543/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/188543",
+ "id": 742075333,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/188543/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/188543/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/188543/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/188543/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/188543/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/188543/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/188543/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/188543/milestones{/number}",
+ "mirror_url": null,
+ "name": "188543",
+ "node_id": "R_kgDOLDsrxQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/188543/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/188543/pulls{/number}",
+ "pushed_at": "2023-12-23T03:50:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/188543/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/188543.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/188543/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/188543/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/188543/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/188543/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/188543",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/188543/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/188543/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/188543/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/188543",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/188544": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/188544/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/188544/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/188544/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/188544/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/188544.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/188544/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/188544/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/188544/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/188544/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/188544/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/188544/contributors",
+ "created_at": "2024-01-11T17:59:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/188544/deployments",
+ "description": "Parallelizing large networks in NEURON (Lytton et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/188544/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/188544/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/188544/forks",
+ "full_name": "OpenSourceBrain/188544",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/188544/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/188544/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/188544/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/188544.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/188544",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/188544/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/188544",
+ "id": 742075347,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/188544/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/188544/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/188544/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/188544/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/188544/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/188544/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/188544/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/188544/milestones{/number}",
+ "mirror_url": null,
+ "name": "188544",
+ "node_id": "R_kgDOLDsr0w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/188544/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/188544/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/188544/releases{/id}",
+ "size": 256,
+ "ssh_url": "git@github.com:OpenSourceBrain/188544.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/188544/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/188544/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/188544/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/188544/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/188544",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/188544/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/188544/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/188544/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/188544",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/188552": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/188552/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/188552/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/188552/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/188552/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/188552.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/188552/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/188552/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/188552/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/188552/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/188552/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/188552/contributors",
+ "created_at": "2024-01-11T17:59:14Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/188552/deployments",
+ "description": "Multiscale modeling of epileptic seizures (Naze et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/188552/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/188552/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/188552/forks",
+ "full_name": "OpenSourceBrain/188552",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/188552/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/188552/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/188552/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/188552.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/188552",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/188552/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/188552",
+ "id": 742075362,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/188552/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/188552/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/188552/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/188552/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/188552/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/188552/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/188552/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/188552/milestones{/number}",
+ "mirror_url": null,
+ "name": "188552",
+ "node_id": "R_kgDOLDsr4g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/188552/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/188552/pulls{/number}",
+ "pushed_at": "2023-12-23T03:50:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/188552/releases{/id}",
+ "size": 191,
+ "ssh_url": "git@github.com:OpenSourceBrain/188552.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/188552/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/188552/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/188552/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/188552/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/188552",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/188552/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/188552/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/188552/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/188552",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/18871": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/18871/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/18871/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/18871/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/18871/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/18871.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/18871/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/18871/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/18871/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/18871/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/18871/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/18871/contributors",
+ "created_at": "2024-01-08T14:06:05Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/18871/deployments",
+ "description": "Emergent properties of networks of biological signaling pathways (Bhalla, Iyengar 1999)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/18871/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/18871/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/18871/forks",
+ "full_name": "OpenSourceBrain/18871",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/18871/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/18871/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/18871/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/18871.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/18871",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/18871/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/18871",
+ "id": 740518444,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/18871/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/18871/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/18871/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/18871/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/18871/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/18871/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/18871/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/18871/milestones{/number}",
+ "mirror_url": null,
+ "name": "18871",
+ "node_id": "R_kgDOLCNqLA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/18871/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/18871/pulls{/number}",
+ "pushed_at": "2023-12-23T03:29:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/18871/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/18871.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/18871/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/18871/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/18871/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/18871/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/18871",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/18871/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/18871/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/18871/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/18871",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/188977": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/188977/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/188977/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/188977/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/188977/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/188977.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/188977/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/188977/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/188977/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/188977/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/188977/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/188977/contributors",
+ "created_at": "2024-01-11T17:59:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/188977/deployments",
+ "description": "CA1 pyramidal cells, basket cells, ripples (Malerba et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/188977/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/188977/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/188977/forks",
+ "full_name": "OpenSourceBrain/188977",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/188977/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/188977/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/188977/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/188977.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/188977",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/188977/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/188977",
+ "id": 742075378,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/188977/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/188977/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/188977/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/188977/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/188977/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/188977/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/188977/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/188977/milestones{/number}",
+ "mirror_url": null,
+ "name": "188977",
+ "node_id": "R_kgDOLDsr8g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/188977/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/188977/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/188977/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/188977.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/188977/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/188977/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/188977/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/188977/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/188977",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/188977/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/188977/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/188977/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/188977",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189088": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189088/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189088/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189088/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189088/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189088.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189088/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189088/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189088/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189088/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189088/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189088/contributors",
+ "created_at": "2024-01-11T17:59:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189088/deployments",
+ "description": "Fully continuous Pinsky-Rinzel model for bifurcation analysis (Atherton et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189088/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189088/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189088/forks",
+ "full_name": "OpenSourceBrain/189088",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189088/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189088/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189088/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189088.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/189088",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189088/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189088",
+ "id": 742075386,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189088/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189088/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189088/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189088/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189088/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189088/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189088/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189088/milestones{/number}",
+ "mirror_url": null,
+ "name": "189088",
+ "node_id": "R_kgDOLDsr-g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189088/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189088/pulls{/number}",
+ "pushed_at": "2022-02-17T06:02:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189088/releases{/id}",
+ "size": 400,
+ "ssh_url": "git@github.com:OpenSourceBrain/189088.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189088/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189088/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189088/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189088/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189088",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189088/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189088/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189088/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189088",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189153": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189153/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189153/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189153/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189153/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189153.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189153/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189153/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189153/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189153/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189153/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189153/contributors",
+ "created_at": "2024-01-11T17:59:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189153/deployments",
+ "description": "Striatal Spiny Projection Neuron (SPN) plasticity rule (Jedrzejewska-Szmek et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189153/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189153/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189153/forks",
+ "full_name": "OpenSourceBrain/189153",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189153/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189153/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189153/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189153.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/189153",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189153/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189153",
+ "id": 742075395,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189153/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189153/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189153/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189153/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189153/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189153/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189153/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189153/milestones{/number}",
+ "mirror_url": null,
+ "name": "189153",
+ "node_id": "R_kgDOLDssAw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189153/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189153/pulls{/number}",
+ "pushed_at": "2018-04-23T18:50:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189153/releases{/id}",
+ "size": 144,
+ "ssh_url": "git@github.com:OpenSourceBrain/189153.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189153/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189153/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189153/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189153/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189153",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189153/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189153/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189153/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189153",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189154": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189154/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189154/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189154/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189154/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189154.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189154/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189154/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189154/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189154/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189154/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189154/contributors",
+ "created_at": "2024-01-11T17:59:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189154/deployments",
+ "description": "Multitarget pharmacology for Dystonia in M1 (Neymotin et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189154/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189154/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189154/forks",
+ "full_name": "OpenSourceBrain/189154",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189154/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189154/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189154/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189154.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/189154",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189154/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189154",
+ "id": 742075404,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189154/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189154/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189154/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189154/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189154/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189154/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189154/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189154/milestones{/number}",
+ "mirror_url": null,
+ "name": "189154",
+ "node_id": "R_kgDOLDssDA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189154/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189154/pulls{/number}",
+ "pushed_at": "2023-11-28T21:05:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189154/releases{/id}",
+ "size": 231,
+ "ssh_url": "git@github.com:OpenSourceBrain/189154.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189154/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189154/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189154/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189154/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189154",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189154/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189154/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189154/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189154",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189155": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189155/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189155/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189155/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189155/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189155.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189155/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189155/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189155/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189155/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189155/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189155/contributors",
+ "created_at": "2024-01-11T17:59:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189155/deployments",
+ "description": "Axonal HH-model for temperature stimulation (Fribance et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189155/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189155/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189155/forks",
+ "full_name": "OpenSourceBrain/189155",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189155/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189155/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189155/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189155.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/189155",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189155/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189155",
+ "id": 742075418,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189155/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189155/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189155/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189155/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189155/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189155/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189155/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189155/milestones{/number}",
+ "mirror_url": null,
+ "name": "189155",
+ "node_id": "R_kgDOLDssGg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189155/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189155/pulls{/number}",
+ "pushed_at": "2018-04-23T18:51:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189155/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/189155.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189155/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189155/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189155/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189155/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189155",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189155/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189155/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189155/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189155",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189160": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189160/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189160/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189160/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189160/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189160.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189160/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189160/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189160/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189160/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189160/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189160/contributors",
+ "created_at": "2024-01-11T17:59:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189160/deployments",
+ "description": "A detailed data-driven network model of prefrontal cortex (Hass et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189160/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189160/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189160/forks",
+ "full_name": "OpenSourceBrain/189160",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189160/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189160/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189160/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189160.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/189160",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189160/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189160",
+ "id": 742075436,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189160/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189160/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189160/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189160/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189160/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189160/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189160/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189160/milestones{/number}",
+ "mirror_url": null,
+ "name": "189160",
+ "node_id": "R_kgDOLDssLA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189160/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189160/pulls{/number}",
+ "pushed_at": "2018-04-23T18:52:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189160/releases{/id}",
+ "size": 122,
+ "ssh_url": "git@github.com:OpenSourceBrain/189160.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189160/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189160/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189160/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189160/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189160",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189160/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189160/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189160/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189160",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189186": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189186/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189186/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189186/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189186/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189186.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189186/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189186/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189186/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189186/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189186/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189186/contributors",
+ "created_at": "2024-01-11T17:59:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189186/deployments",
+ "description": "Functional properties of dendritic gap junctions in Cerebellar Golgi cells (Szoboszlay et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189186/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189186/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189186/forks",
+ "full_name": "OpenSourceBrain/189186",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189186/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189186/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189186/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189186.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/189186",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189186/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189186",
+ "id": 742075450,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189186/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189186/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189186/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189186/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189186/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189186/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189186/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189186/milestones{/number}",
+ "mirror_url": null,
+ "name": "189186",
+ "node_id": "R_kgDOLDssOg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189186/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189186/pulls{/number}",
+ "pushed_at": "2019-05-31T02:47:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189186/releases{/id}",
+ "size": 3218,
+ "ssh_url": "git@github.com:OpenSourceBrain/189186.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189186/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189186/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189186/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189186/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189186",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189186/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189186/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189186/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189186",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189308": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189308/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189308/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189308/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189308/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189308.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189308/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189308/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189308/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189308/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189308/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189308/contributors",
+ "created_at": "2024-01-11T17:59:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189308/deployments",
+ "description": "Goldfish Mauthner cell (Medan et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189308/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189308/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189308/forks",
+ "full_name": "OpenSourceBrain/189308",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189308/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189308/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189308/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189308.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/189308",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189308/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189308",
+ "id": 742075456,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189308/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189308/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189308/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189308/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189308/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189308/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189308/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189308/milestones{/number}",
+ "mirror_url": null,
+ "name": "189308",
+ "node_id": "R_kgDOLDssQA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189308/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189308/pulls{/number}",
+ "pushed_at": "2019-05-31T02:54:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189308/releases{/id}",
+ "size": 100,
+ "ssh_url": "git@github.com:OpenSourceBrain/189308.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189308/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189308/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189308/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189308/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189308",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189308/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189308/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189308/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189308",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189344": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189344/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189344/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189344/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189344/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189344.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189344/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189344/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189344/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189344/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189344/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189344/contributors",
+ "created_at": "2024-01-11T17:59:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189344/deployments",
+ "description": "A mathematical model of evoked calcium dynamics in astrocytes (Handy et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189344/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189344/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189344/forks",
+ "full_name": "OpenSourceBrain/189344",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189344/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189344/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189344/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189344.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/189344",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189344/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189344",
+ "id": 742075472,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189344/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189344/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189344/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189344/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189344/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189344/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189344/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189344/milestones{/number}",
+ "mirror_url": null,
+ "name": "189344",
+ "node_id": "R_kgDOLDssUA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189344/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189344/pulls{/number}",
+ "pushed_at": "2019-06-03T20:25:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189344/releases{/id}",
+ "size": 249,
+ "ssh_url": "git@github.com:OpenSourceBrain/189344.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189344/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189344/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189344/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189344/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189344",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189344/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189344/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189344/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189344",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189346": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189346/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189346/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189346/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189346/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189346.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189346/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189346/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189346/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189346/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189346/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189346/contributors",
+ "created_at": "2024-01-11T17:59:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189346/deployments",
+ "description": "Modeling epileptic seizure induced by depolarization block (Kim & Dykamp 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189346/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189346/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189346/forks",
+ "full_name": "OpenSourceBrain/189346",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189346/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189346/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189346/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189346.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/189346",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189346/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189346",
+ "id": 742075491,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189346/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189346/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189346/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189346/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189346/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189346/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189346/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189346/milestones{/number}",
+ "mirror_url": null,
+ "name": "189346",
+ "node_id": "R_kgDOLDssYw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189346/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189346/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189346/releases{/id}",
+ "size": 187,
+ "ssh_url": "git@github.com:OpenSourceBrain/189346.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189346/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189346/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189346/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189346/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189346",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189346/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189346/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189346/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189346",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189347": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189347/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189347/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189347/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189347/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189347.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189347/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189347/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189347/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189347/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189347/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189347/contributors",
+ "created_at": "2024-01-11T17:59:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189347/deployments",
+ "description": "Multiplication by NMDA receptors in Direction Selective Ganglion cells (Poleg-Polsky & Diamond 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189347/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189347/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189347/forks",
+ "full_name": "OpenSourceBrain/189347",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189347/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189347/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189347/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189347.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/189347",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189347/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189347",
+ "id": 742075510,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189347/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189347/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189347/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189347/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189347/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189347/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189347/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189347/milestones{/number}",
+ "mirror_url": null,
+ "name": "189347",
+ "node_id": "R_kgDOLDssdg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189347/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189347/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189347/releases{/id}",
+ "size": 534,
+ "ssh_url": "git@github.com:OpenSourceBrain/189347.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189347/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189347/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189347/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189347/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189347",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189347/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189347/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189347/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189347",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189786": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189786/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189786/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189786/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189786/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189786.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189786/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189786/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189786/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189786/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189786/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189786/contributors",
+ "created_at": "2024-01-11T17:59:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189786/deployments",
+ "description": "Muscle spindle feedback circuit (Moraud et al, 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189786/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189786/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189786/forks",
+ "full_name": "OpenSourceBrain/189786",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189786/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189786/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189786/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189786.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/189786",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189786/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189786",
+ "id": 742075523,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189786/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189786/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189786/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189786/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189786/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189786/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189786/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189786/milestones{/number}",
+ "mirror_url": null,
+ "name": "189786",
+ "node_id": "R_kgDOLDssgw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189786/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189786/pulls{/number}",
+ "pushed_at": "2023-11-28T21:06:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189786/releases{/id}",
+ "size": 14015,
+ "ssh_url": "git@github.com:OpenSourceBrain/189786.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189786/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189786/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189786/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189786/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189786",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189786/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189786/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189786/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189786",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189922": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189922/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189922/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189922/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189922/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189922.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189922/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189922/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189922/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189922/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189922/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189922/contributors",
+ "created_at": "2024-01-11T17:59:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189922/deployments",
+ "description": "Model of Type 3 firing in neurons (Clay et al 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189922/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189922/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189922/forks",
+ "full_name": "OpenSourceBrain/189922",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189922/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189922/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189922/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189922.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/189922",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189922/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189922",
+ "id": 742075535,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189922/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189922/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189922/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189922/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189922/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189922/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189922/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189922/milestones{/number}",
+ "mirror_url": null,
+ "name": "189922",
+ "node_id": "R_kgDOLDssjw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189922/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189922/pulls{/number}",
+ "pushed_at": "2023-11-28T21:06:16Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189922/releases{/id}",
+ "size": 357,
+ "ssh_url": "git@github.com:OpenSourceBrain/189922.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189922/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189922/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189922/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189922/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189922",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189922/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189922/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189922/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189922",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/189946": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/189946/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/189946/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/189946/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/189946/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/189946.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/189946/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/189946/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/189946/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/189946/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/189946/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/189946/contributors",
+ "created_at": "2024-01-11T17:59:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/189946/deployments",
+ "description": "Macroscopic model of epilepsy (Fietkiewicz & Loparo 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/189946/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/189946/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/189946/forks",
+ "full_name": "OpenSourceBrain/189946",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/189946/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/189946/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/189946/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/189946.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/189946",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/189946/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/189946",
+ "id": 742075549,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/189946/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/189946/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/189946/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/189946/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/189946/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/189946/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/189946/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/189946/milestones{/number}",
+ "mirror_url": null,
+ "name": "189946",
+ "node_id": "R_kgDOLDssnQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/189946/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/189946/pulls{/number}",
+ "pushed_at": "2019-05-31T04:54:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/189946/releases{/id}",
+ "size": 5,
+ "ssh_url": "git@github.com:OpenSourceBrain/189946.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/189946/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/189946/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/189946/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/189946/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/189946",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/189946/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/189946/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/189946/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/189946",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/190140": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/190140/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/190140/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/190140/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/190140/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/190140.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/190140/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/190140/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/190140/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/190140/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/190140/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/190140/contributors",
+ "created_at": "2024-01-11T17:59:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/190140/deployments",
+ "description": "Modeling single neuron LFPs and extracellular potentials with LFPsim (Parasuram et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/190140/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/190140/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/190140/forks",
+ "full_name": "OpenSourceBrain/190140",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/190140/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/190140/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/190140/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/190140.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/190140",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/190140/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/190140",
+ "id": 742075564,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/190140/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/190140/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/190140/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/190140/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/190140/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/190140/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/190140/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/190140/milestones{/number}",
+ "mirror_url": null,
+ "name": "190140",
+ "node_id": "R_kgDOLDssrA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/190140/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/190140/pulls{/number}",
+ "pushed_at": "2018-04-23T18:53:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/190140/releases{/id}",
+ "size": 5743,
+ "ssh_url": "git@github.com:OpenSourceBrain/190140.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/190140/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/190140/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/190140/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/190140/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/190140",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/190140/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/190140/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/190140/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/190140",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19022": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19022/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19022/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19022/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19022/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19022.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19022/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19022/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19022/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19022/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19022/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19022/contributors",
+ "created_at": "2024-01-08T14:06:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19022/deployments",
+ "description": "Fast AMPA receptor signaling (Geiger et al 1997)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19022/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19022/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19022/forks",
+ "full_name": "OpenSourceBrain/19022",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19022/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19022/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19022/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19022.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19022",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19022/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19022",
+ "id": 740518460,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19022/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19022/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19022/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19022/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19022/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19022/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19022/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19022/milestones{/number}",
+ "mirror_url": null,
+ "name": "19022",
+ "node_id": "R_kgDOLCNqPA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19022/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19022/pulls{/number}",
+ "pushed_at": "2019-05-31T02:59:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19022/releases{/id}",
+ "size": 35,
+ "ssh_url": "git@github.com:OpenSourceBrain/19022.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19022/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19022/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19022/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19022/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19022",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19022/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19022/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19022/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19022",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/190261": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/190261/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/190261/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/190261/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/190261/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/190261.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/190261/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/190261/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/190261/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/190261/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/190261/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/190261/contributors",
+ "created_at": "2024-01-11T17:59:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/190261/deployments",
+ "description": "Dorsal root ganglion (primary somatosensory) neurons (Rho & Prescott 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/190261/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/190261/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/190261/forks",
+ "full_name": "OpenSourceBrain/190261",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/190261/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/190261/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/190261/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/190261.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/190261",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/190261/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/190261",
+ "id": 742075577,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/190261/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/190261/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/190261/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/190261/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/190261/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/190261/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/190261/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/190261/milestones{/number}",
+ "mirror_url": null,
+ "name": "190261",
+ "node_id": "R_kgDOLDssuQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/190261/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/190261/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/190261/releases{/id}",
+ "size": 136,
+ "ssh_url": "git@github.com:OpenSourceBrain/190261.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/190261/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/190261/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/190261/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/190261/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/190261",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/190261/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/190261/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/190261/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/190261",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/190304": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/190304/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/190304/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/190304/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/190304/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/190304.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/190304/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/190304/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/190304/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/190304/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/190304/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/190304/contributors",
+ "created_at": "2024-01-11T17:59:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/190304/deployments",
+ "description": "Signaling pathways underlying LTP in hippocampal CA1 pyramidal cells (Jedrzejewska-Szmek et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/190304/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/190304/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/190304/forks",
+ "full_name": "OpenSourceBrain/190304",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/190304/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/190304/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/190304/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/190304.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/190304",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/190304/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/190304",
+ "id": 742075589,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/190304/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/190304/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/190304/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/190304/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/190304/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/190304/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/190304/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/190304/milestones{/number}",
+ "mirror_url": null,
+ "name": "190304",
+ "node_id": "R_kgDOLDssxQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/190304/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/190304/pulls{/number}",
+ "pushed_at": "2018-04-23T18:53:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/190304/releases{/id}",
+ "size": 4590,
+ "ssh_url": "git@github.com:OpenSourceBrain/190304.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/190304/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/190304/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/190304/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/190304/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/190304",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/190304/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/190304/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/190304/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/190304",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/190306": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/190306/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/190306/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/190306/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/190306/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/190306.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/190306/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/190306/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/190306/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/190306/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/190306/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/190306/contributors",
+ "created_at": "2024-01-11T17:59:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/190306/deployments",
+ "description": "Inhibition and glial-K+ interaction leads to diverse seizure transition modes (Ho & Truccolo 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/190306/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/190306/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/190306/forks",
+ "full_name": "OpenSourceBrain/190306",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/190306/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/190306/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/190306/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/190306.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/190306",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/190306/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/190306",
+ "id": 742075608,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/190306/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/190306/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/190306/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/190306/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/190306/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/190306/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/190306/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/190306/milestones{/number}",
+ "mirror_url": null,
+ "name": "190306",
+ "node_id": "R_kgDOLDss2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/190306/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/190306/pulls{/number}",
+ "pushed_at": "2019-05-31T03:16:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/190306/releases{/id}",
+ "size": 66,
+ "ssh_url": "git@github.com:OpenSourceBrain/190306.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/190306/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/190306/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/190306/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/190306/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/190306",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/190306/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/190306/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/190306/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/190306",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/190311": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/190311/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/190311/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/190311/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/190311/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/190311.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/190311/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/190311/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/190311/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/190311/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/190311/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/190311/contributors",
+ "created_at": "2024-01-11T17:59:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/190311/deployments",
+ "description": "Spatial structure from diffusive synaptic plasticity (Sweeney and Clopath, 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/190311/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/190311/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/190311/forks",
+ "full_name": "OpenSourceBrain/190311",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/190311/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/190311/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/190311/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/190311.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/190311",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/190311/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/190311",
+ "id": 742075620,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/190311/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/190311/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/190311/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/190311/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/190311/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/190311/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/190311/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/190311/milestones{/number}",
+ "mirror_url": null,
+ "name": "190311",
+ "node_id": "R_kgDOLDss5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/190311/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/190311/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/190311/releases{/id}",
+ "size": 36,
+ "ssh_url": "git@github.com:OpenSourceBrain/190311.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/190311/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/190311/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/190311/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/190311/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/190311",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/190311/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/190311/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/190311/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/190311",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/190559": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/190559/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/190559/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/190559/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/190559/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/190559.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/190559/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/190559/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/190559/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/190559/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/190559/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/190559/contributors",
+ "created_at": "2024-01-11T17:59:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/190559/deployments",
+ "description": "Effects of electric fields on cognitive functions (Migliore et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/190559/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/190559/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/190559/forks",
+ "full_name": "OpenSourceBrain/190559",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/190559/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/190559/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/190559/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/190559.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/190559",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/190559/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/190559",
+ "id": 742075636,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/190559/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/190559/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/190559/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/190559/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/190559/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/190559/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/190559/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/190559/milestones{/number}",
+ "mirror_url": null,
+ "name": "190559",
+ "node_id": "R_kgDOLDss9A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/190559/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/190559/pulls{/number}",
+ "pushed_at": "2023-11-28T21:06:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/190559/releases{/id}",
+ "size": 88,
+ "ssh_url": "git@github.com:OpenSourceBrain/190559.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/190559/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/190559/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/190559/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/190559/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/190559",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/190559/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/190559/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/190559/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/190559",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/190565": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/190565/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/190565/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/190565/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/190565/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/190565.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/190565/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/190565/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/190565/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/190565/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/190565/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/190565/contributors",
+ "created_at": "2024-01-11T17:59:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/190565/deployments",
+ "description": "Supervised learning in spiking neural networks with FORCE training (Nicola & Clopath 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/190565/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/190565/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/190565/forks",
+ "full_name": "OpenSourceBrain/190565",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/190565/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/190565/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/190565/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/190565.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/190565",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/190565/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/190565",
+ "id": 742075648,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/190565/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/190565/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/190565/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/190565/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/190565/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/190565/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/190565/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/190565/milestones{/number}",
+ "mirror_url": null,
+ "name": "190565",
+ "node_id": "R_kgDOLDstAA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/190565/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/190565/pulls{/number}",
+ "pushed_at": "2018-04-23T18:54:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/190565/releases{/id}",
+ "size": 5570,
+ "ssh_url": "git@github.com:OpenSourceBrain/190565.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/190565/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/190565/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/190565/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/190565/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/190565",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/190565/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/190565/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/190565/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/190565",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/190610": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/190610/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/190610/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/190610/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/190610/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/190610.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/190610/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/190610/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/190610/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/190610/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/190610/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/190610/contributors",
+ "created_at": "2024-01-11T17:59:57Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/190610/deployments",
+ "description": "Theory of sequence memory in neocortex (Hawkins & Ahmad 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/190610/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/190610/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/190610/forks",
+ "full_name": "OpenSourceBrain/190610",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/190610/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/190610/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/190610/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/190610.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/190610",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/190610/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/190610",
+ "id": 742075662,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/190610/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/190610/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/190610/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/190610/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/190610/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/190610/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/190610/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/190610/milestones{/number}",
+ "mirror_url": null,
+ "name": "190610",
+ "node_id": "R_kgDOLDstDg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/190610/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/190610/pulls{/number}",
+ "pushed_at": "2023-12-23T03:50:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/190610/releases{/id}",
+ "size": 895,
+ "ssh_url": "git@github.com:OpenSourceBrain/190610.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/190610/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/190610/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/190610/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/190610/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/190610",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/190610/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/190610/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/190610/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/190610",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19176": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19176/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19176/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19176/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19176/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19176.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19176/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19176/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19176/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19176/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19176/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19176/contributors",
+ "created_at": "2024-01-08T14:06:10Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19176/deployments",
+ "description": "Activity dependent regulation of pacemaker channels by cAMP (Wang et al 2002)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19176/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19176/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19176/forks",
+ "full_name": "OpenSourceBrain/19176",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19176/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19176/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19176/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19176.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19176",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19176/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19176",
+ "id": 740518477,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19176/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19176/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19176/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19176/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19176/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19176/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19176/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19176/milestones{/number}",
+ "mirror_url": null,
+ "name": "19176",
+ "node_id": "R_kgDOLCNqTQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19176/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19176/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19176/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/19176.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19176/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19176/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19176/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19176/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19176",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19176/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19176/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19176/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19176",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19214": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19214/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19214/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19214/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19214/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19214.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19214/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19214/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19214/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19214/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19214/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19214/contributors",
+ "created_at": "2024-01-08T14:06:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19214/deployments",
+ "description": "Geometry-induced features of current transfer in neuronal dendrites (Korogod, Kulagina 1998)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19214/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19214/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19214/forks",
+ "full_name": "OpenSourceBrain/19214",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19214/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19214/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19214/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19214.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19214",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19214/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19214",
+ "id": 740518491,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19214/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19214/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19214/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19214/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19214/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19214/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19214/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19214/milestones{/number}",
+ "mirror_url": null,
+ "name": "19214",
+ "node_id": "R_kgDOLCNqWw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19214/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19214/pulls{/number}",
+ "pushed_at": "2019-05-31T03:35:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19214/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/19214.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19214/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19214/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19214/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19214/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19214",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19214/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19214/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19214/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19214",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19366": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19366/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19366/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19366/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19366/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19366.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19366/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19366/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19366/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19366/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19366/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19366/contributors",
+ "created_at": "2024-01-08T14:06:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19366/deployments",
+ "description": "Conditions of dominant effectiveness of distal dendrites (Korogod, Kulagina 1998)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19366/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19366/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19366/forks",
+ "full_name": "OpenSourceBrain/19366",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19366/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19366/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19366/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19366.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19366",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19366/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19366",
+ "id": 740518509,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19366/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19366/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19366/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19366/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19366/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19366/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19366/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19366/milestones{/number}",
+ "mirror_url": null,
+ "name": "19366",
+ "node_id": "R_kgDOLCNqbQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19366/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19366/pulls{/number}",
+ "pushed_at": "2019-05-31T03:44:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19366/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/19366.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19366/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19366/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19366/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19366/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19366",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19366/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19366/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19366/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19366",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/194881": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/194881/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/194881/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/194881/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/194881/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/194881.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/194881/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/194881/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/194881/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/194881/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/194881/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/194881/contributors",
+ "created_at": "2024-01-11T17:59:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/194881/deployments",
+ "description": "Grid cell model with compression effects (Raudies & Hasselmo, 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/194881/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/194881/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/194881/forks",
+ "full_name": "OpenSourceBrain/194881",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/194881/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/194881/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/194881/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/194881.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/194881",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/194881/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/194881",
+ "id": 742075675,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/194881/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/194881/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/194881/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/194881/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/194881/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/194881/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/194881/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/194881/milestones{/number}",
+ "mirror_url": null,
+ "name": "194881",
+ "node_id": "R_kgDOLDstGw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/194881/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/194881/pulls{/number}",
+ "pushed_at": "2019-05-31T02:40:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/194881/releases{/id}",
+ "size": 6391,
+ "ssh_url": "git@github.com:OpenSourceBrain/194881.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/194881/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/194881/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/194881/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/194881/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/194881",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/194881/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/194881/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/194881/git/trees{/sha}",
+ "updated_at": "2024-01-11T17:59:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/194881",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/194882": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/194882/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/194882/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/194882/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/194882/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/194882.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/194882/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/194882/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/194882/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/194882/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/194882/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/194882/contributors",
+ "created_at": "2024-01-11T18:00:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/194882/deployments",
+ "description": "Hippocampal spiking model for context dependent behavior (Raudies & Hasselmo 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/194882/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/194882/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/194882/forks",
+ "full_name": "OpenSourceBrain/194882",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/194882/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/194882/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/194882/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/194882.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/194882",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/194882/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/194882",
+ "id": 742075690,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/194882/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/194882/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/194882/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/194882/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/194882/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/194882/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/194882/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/194882/milestones{/number}",
+ "mirror_url": null,
+ "name": "194882",
+ "node_id": "R_kgDOLDstKg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/194882/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/194882/pulls{/number}",
+ "pushed_at": "2019-05-31T02:47:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/194882/releases{/id}",
+ "size": 1370,
+ "ssh_url": "git@github.com:OpenSourceBrain/194882.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/194882/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/194882/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/194882/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/194882/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/194882",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/194882/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/194882/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/194882/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/194882",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/194883": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/194883/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/194883/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/194883/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/194883/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/194883.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/194883/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/194883/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/194883/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/194883/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/194883/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/194883/contributors",
+ "created_at": "2024-01-11T18:00:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/194883/deployments",
+ "description": "Deep belief network learns context dependent behavior (Raudies, Zilli, Hasselmo 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/194883/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/194883/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/194883/forks",
+ "full_name": "OpenSourceBrain/194883",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/194883/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/194883/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/194883/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/194883.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/194883",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/194883/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/194883",
+ "id": 742075705,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/194883/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/194883/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/194883/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/194883/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/194883/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/194883/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/194883/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/194883/milestones{/number}",
+ "mirror_url": null,
+ "name": "194883",
+ "node_id": "R_kgDOLDstOQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/194883/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/194883/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/194883/releases{/id}",
+ "size": 57,
+ "ssh_url": "git@github.com:OpenSourceBrain/194883.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/194883/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/194883/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/194883/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/194883/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/194883",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/194883/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/194883/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/194883/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/194883",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/194897": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/194897/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/194897/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/194897/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/194897/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/194897.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/194897/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/194897/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/194897/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/194897/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/194897/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/194897/contributors",
+ "created_at": "2024-01-11T18:00:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/194897/deployments",
+ "description": "Motor system model with reinforcement learning drives virtual arm (Dura-Bernal et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/194897/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/194897/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/194897/forks",
+ "full_name": "OpenSourceBrain/194897",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/194897/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/194897/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/194897/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/194897.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/194897",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/194897/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/194897",
+ "id": 742075718,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/194897/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/194897/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/194897/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/194897/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/194897/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/194897/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/194897/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/194897/milestones{/number}",
+ "mirror_url": null,
+ "name": "194897",
+ "node_id": "R_kgDOLDstRg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/194897/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/194897/pulls{/number}",
+ "pushed_at": "2023-11-28T21:06:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/194897/releases{/id}",
+ "size": 978,
+ "ssh_url": "git@github.com:OpenSourceBrain/194897.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/194897/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/194897/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/194897/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/194897/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/194897",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/194897/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/194897/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/194897/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/194897",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19491": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19491/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19491/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19491/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19491/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19491.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19491/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19491/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19491/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19491/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19491/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19491/contributors",
+ "created_at": "2024-01-08T14:06:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19491/deployments",
+ "description": "Dendritic L-type Ca currents in motoneurons (Carlin et al 2000)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19491/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19491/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19491/forks",
+ "full_name": "OpenSourceBrain/19491",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19491/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19491/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19491/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19491.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19491",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19491/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19491",
+ "id": 740518526,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19491/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19491/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19491/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19491/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19491/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19491/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19491/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19491/milestones{/number}",
+ "mirror_url": null,
+ "name": "19491",
+ "node_id": "R_kgDOLCNqfg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19491/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19491/pulls{/number}",
+ "pushed_at": "2019-05-31T02:17:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19491/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/19491.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19491/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19491/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19491/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19491/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19491",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19491/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19491/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19491/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19491",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195206": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195206/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195206/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195206/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195206/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195206.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195206/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195206/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195206/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195206/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195206/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195206/contributors",
+ "created_at": "2024-01-11T18:00:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195206/deployments",
+ "description": "Stochastic and periodic inputs tune ongoing oscillations (Hutt et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195206/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195206/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195206/forks",
+ "full_name": "OpenSourceBrain/195206",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195206/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195206/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195206/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195206.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195206/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195206",
+ "id": 742075736,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195206/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195206/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195206/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195206/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195206/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195206/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195206/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195206/milestones{/number}",
+ "mirror_url": null,
+ "name": "195206",
+ "node_id": "R_kgDOLDstWA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195206/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195206/pulls{/number}",
+ "pushed_at": "2019-01-09T21:18:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195206/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/195206.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195206/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195206/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195206/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195206/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195206",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195206/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195206/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195206/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195206",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195555": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195555/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195555/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195555/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195555/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195555.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195555/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195555/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195555/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195555/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195555/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195555/contributors",
+ "created_at": "2024-01-11T18:00:10Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195555/deployments",
+ "description": "Automated metadata suggester (McDougal et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195555/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195555/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195555/forks",
+ "full_name": "OpenSourceBrain/195555",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195555/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195555/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195555/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195555.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/195555",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195555/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195555",
+ "id": 742075747,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195555/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195555/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195555/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195555/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195555/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195555/languages",
+ "license": {
+ "key": "bsd-3-clause",
+ "name": "BSD 3-Clause \"New\" or \"Revised\" License",
+ "node_id": "MDc6TGljZW5zZTU=",
+ "spdx_id": "BSD-3-Clause",
+ "url": "https://api.github.com/licenses/bsd-3-clause"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195555/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195555/milestones{/number}",
+ "mirror_url": null,
+ "name": "195555",
+ "node_id": "R_kgDOLDstYw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195555/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195555/pulls{/number}",
+ "pushed_at": "2019-05-31T02:11:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195555/releases{/id}",
+ "size": 29,
+ "ssh_url": "git@github.com:OpenSourceBrain/195555.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195555/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195555/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195555/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195555/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195555",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195555/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195555/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195555/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195555",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195569": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195569/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195569/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195569/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195569/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195569.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195569/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195569/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195569/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195569/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195569/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195569/contributors",
+ "created_at": "2024-01-11T18:00:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195569/deployments",
+ "description": "Concentration dependent nonlinear K+ and Cl- leak current (Huang et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195569/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195569/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195569/forks",
+ "full_name": "OpenSourceBrain/195569",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195569/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195569/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195569/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195569.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/195569",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195569/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195569",
+ "id": 742075757,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195569/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195569/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195569/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195569/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195569/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195569/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195569/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195569/milestones{/number}",
+ "mirror_url": null,
+ "name": "195569",
+ "node_id": "R_kgDOLDstbQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195569/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195569/pulls{/number}",
+ "pushed_at": "2023-11-28T21:06:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195569/releases{/id}",
+ "size": 49,
+ "ssh_url": "git@github.com:OpenSourceBrain/195569.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195569/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195569/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195569/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195569/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195569",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195569/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195569/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195569/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195569",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195615": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195615/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195615/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195615/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195615/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195615.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195615/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195615/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195615/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195615/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195615/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195615/contributors",
+ "created_at": "2024-01-11T18:00:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195615/deployments",
+ "description": "Computer models of corticospinal neurons replicate in vitro dynamics (Neymotin et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195615/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195615/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195615/forks",
+ "full_name": "OpenSourceBrain/195615",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195615/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195615/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195615/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195615.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/195615",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195615/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195615",
+ "id": 742075772,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195615/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195615/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195615/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195615/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195615/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195615/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195615/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195615/milestones{/number}",
+ "mirror_url": null,
+ "name": "195615",
+ "node_id": "R_kgDOLDstfA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195615/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195615/pulls{/number}",
+ "pushed_at": "2023-11-28T21:06:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195615/releases{/id}",
+ "size": 4663,
+ "ssh_url": "git@github.com:OpenSourceBrain/195615.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195615/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195615/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195615/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195615/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195615",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195615/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195615/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195615/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195615",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195626": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195626/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195626/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195626/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195626/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195626.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195626/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195626/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195626/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195626/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195626/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195626/contributors",
+ "created_at": "2024-01-11T18:00:16Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195626/deployments",
+ "description": "ModFossa: a library for modeling ion channels using Python (Ferneyhough et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195626/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195626/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195626/forks",
+ "full_name": "OpenSourceBrain/195626",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195626/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195626/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195626/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195626.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/195626",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195626/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195626",
+ "id": 742075794,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195626/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195626/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195626/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195626/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195626/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195626/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195626/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195626/milestones{/number}",
+ "mirror_url": null,
+ "name": "195626",
+ "node_id": "R_kgDOLDstkg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195626/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195626/pulls{/number}",
+ "pushed_at": "2023-12-23T03:51:07Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195626/releases{/id}",
+ "size": 1400,
+ "ssh_url": "git@github.com:OpenSourceBrain/195626.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195626/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195626/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195626/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195626/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195626",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195626/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195626/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195626/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195626",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195658": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195658/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195658/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195658/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195658/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195658.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195658/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195658/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195658/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195658/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195658/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195658/contributors",
+ "created_at": "2024-01-11T18:00:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195658/deployments",
+ "description": "Models of visual topographic map alignment in the Superior Colliculus (Tikidji-Hamburyan et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195658/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195658/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195658/forks",
+ "full_name": "OpenSourceBrain/195658",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195658/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195658/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195658/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195658.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/195658",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195658/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195658",
+ "id": 742075813,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195658/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195658/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195658/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195658/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195658/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195658/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195658/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195658/milestones{/number}",
+ "mirror_url": null,
+ "name": "195658",
+ "node_id": "R_kgDOLDstpQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195658/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195658/pulls{/number}",
+ "pushed_at": "2019-05-31T03:43:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195658/releases{/id}",
+ "size": 3470,
+ "ssh_url": "git@github.com:OpenSourceBrain/195658.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195658/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195658/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195658/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195658/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195658",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195658/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195658/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195658/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195658",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195659": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195659/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195659/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195659/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195659/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195659.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195659/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195659/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195659/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195659/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195659/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195659/contributors",
+ "created_at": "2024-01-11T18:00:20Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195659/deployments",
+ "description": "Multiple dynamical modes of thalamic relay neurons (Wang XJ 1994)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195659/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195659/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195659/forks",
+ "full_name": "OpenSourceBrain/195659",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195659/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195659/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195659/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195659.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/195659",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195659/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195659",
+ "id": 742075823,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195659/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195659/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195659/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195659/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195659/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195659/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195659/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195659/milestones{/number}",
+ "mirror_url": null,
+ "name": "195659",
+ "node_id": "R_kgDOLDstrw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195659/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195659/pulls{/number}",
+ "pushed_at": "2023-12-23T03:51:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195659/releases{/id}",
+ "size": 4938,
+ "ssh_url": "git@github.com:OpenSourceBrain/195659.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195659/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195659/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195659/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195659/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195659",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195659/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195659/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195659/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195659",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195666": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195666/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195666/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195666/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195666/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195666.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195666/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195666/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195666/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195666/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195666/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195666/contributors",
+ "created_at": "2024-01-11T18:00:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195666/deployments",
+ "description": "LGMD with 3D morphology and active dendrites (Dewell & Gabbiani 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195666/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195666/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195666/forks",
+ "full_name": "OpenSourceBrain/195666",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195666/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195666/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195666/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195666.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/195666",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195666/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195666",
+ "id": 742075835,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195666/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195666/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195666/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195666/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195666/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195666/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195666/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195666/milestones{/number}",
+ "mirror_url": null,
+ "name": "195666",
+ "node_id": "R_kgDOLDstuw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195666/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195666/pulls{/number}",
+ "pushed_at": "2023-11-28T21:06:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195666/releases{/id}",
+ "size": 1365,
+ "ssh_url": "git@github.com:OpenSourceBrain/195666.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195666/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195666/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195666/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195666/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195666",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195666/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195666/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195666/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195666",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195667": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195667/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195667/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195667/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195667/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195667.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195667/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195667/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195667/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195667/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195667/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195667/contributors",
+ "created_at": "2024-01-11T18:00:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195667/deployments",
+ "description": "Human L2/3 pyramidal cells with low Cm values (Eyal et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195667/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195667/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195667/forks",
+ "full_name": "OpenSourceBrain/195667",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195667/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195667/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195667/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195667.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/195667",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195667/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195667",
+ "id": 742075853,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195667/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195667/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195667/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195667/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195667/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195667/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195667/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195667/milestones{/number}",
+ "mirror_url": null,
+ "name": "195667",
+ "node_id": "R_kgDOLDstzQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195667/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195667/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195667/releases{/id}",
+ "size": 5365,
+ "ssh_url": "git@github.com:OpenSourceBrain/195667.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195667/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195667/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195667/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195667/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195667",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195667/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195667/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195667/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195667",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195731": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195731/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195731/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195731/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195731/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195731.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195731/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195731/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195731/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195731/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195731/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195731/contributors",
+ "created_at": "2024-01-11T18:00:26Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195731/deployments",
+ "description": "Cognitive and motor cortico-basal ganglia interactions during decision making (Guthrie et al 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195731/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195731/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195731/forks",
+ "full_name": "OpenSourceBrain/195731",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195731/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195731/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195731/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195731.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/195731",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195731/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195731",
+ "id": 742075868,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195731/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195731/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195731/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195731/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195731/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195731/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195731/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195731/milestones{/number}",
+ "mirror_url": null,
+ "name": "195731",
+ "node_id": "R_kgDOLDst3A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195731/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195731/pulls{/number}",
+ "pushed_at": "2023-12-23T03:51:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195731/releases{/id}",
+ "size": 342,
+ "ssh_url": "git@github.com:OpenSourceBrain/195731.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195731/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195731/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195731/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195731/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195731",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195731/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195731/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195731/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195731",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195856": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195856/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195856/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195856/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195856/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195856.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195856/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195856/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195856/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195856/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195856/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195856/contributors",
+ "created_at": "2024-01-11T18:00:28Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195856/deployments",
+ "description": "Speed/accuracy trade-off between the habitual and the goal-directed processes (Kermati et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195856/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195856/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195856/forks",
+ "full_name": "OpenSourceBrain/195856",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195856/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195856/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195856/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195856.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/195856",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195856/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195856",
+ "id": 742075881,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195856/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195856/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195856/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195856/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195856/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195856/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195856/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195856/milestones{/number}",
+ "mirror_url": null,
+ "name": "195856",
+ "node_id": "R_kgDOLDst6Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195856/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195856/pulls{/number}",
+ "pushed_at": "2023-12-23T03:51:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195856/releases{/id}",
+ "size": 323,
+ "ssh_url": "git@github.com:OpenSourceBrain/195856.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195856/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195856/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195856/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195856/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195856",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195856/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195856/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195856/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195856",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195886": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195886/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195886/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195886/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195886/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195886.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195886/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195886/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195886/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195886/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195886/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195886/contributors",
+ "created_at": "2024-01-11T18:00:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195886/deployments",
+ "description": "Borderline Personality Disorder (Berdahl, 2010)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195886/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195886/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195886/forks",
+ "full_name": "OpenSourceBrain/195886",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195886/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195886/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195886/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195886.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/195886",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195886/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195886",
+ "id": 742075900,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195886/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195886/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195886/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195886/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195886/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195886/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195886/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195886/milestones{/number}",
+ "mirror_url": null,
+ "name": "195886",
+ "node_id": "R_kgDOLDst_A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195886/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195886/pulls{/number}",
+ "pushed_at": "2018-04-23T18:55:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195886/releases{/id}",
+ "size": 4248,
+ "ssh_url": "git@github.com:OpenSourceBrain/195886.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195886/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195886/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195886/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195886/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195886",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195886/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195886/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195886/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195886",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/195890": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/195890/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/195890/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/195890/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/195890/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/195890.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/195890/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/195890/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/195890/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/195890/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/195890/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/195890/contributors",
+ "created_at": "2024-01-11T18:00:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/195890/deployments",
+ "description": "Reinforcement Learning with Forgetting: Linking Sustained Dopamine to Motivation (Kato Morita 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/195890/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/195890/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/195890/forks",
+ "full_name": "OpenSourceBrain/195890",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/195890/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/195890/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/195890/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/195890.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/195890",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/195890/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/195890",
+ "id": 742075914,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/195890/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/195890/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/195890/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/195890/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/195890/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/195890/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/195890/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/195890/milestones{/number}",
+ "mirror_url": null,
+ "name": "195890",
+ "node_id": "R_kgDOLDsuCg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/195890/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/195890/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/195890/releases{/id}",
+ "size": 126,
+ "ssh_url": "git@github.com:OpenSourceBrain/195890.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/195890/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/195890/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/195890/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/195890/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/195890",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/195890/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/195890/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/195890/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/195890",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19591": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19591/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19591/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19591/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19591/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19591.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19591/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19591/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19591/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19591/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19591/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19591/contributors",
+ "created_at": "2024-01-08T14:06:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19591/deployments",
+ "description": "Synaptic integration in a model of granule cells (Gabbiani et al 1994)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19591/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19591/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19591/forks",
+ "full_name": "OpenSourceBrain/19591",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19591/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19591/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19591/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19591.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/19591",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19591/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19591",
+ "id": 740518546,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19591/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19591/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19591/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19591/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19591/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19591/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19591/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19591/milestones{/number}",
+ "mirror_url": null,
+ "name": "19591",
+ "node_id": "R_kgDOLCNqkg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19591/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19591/pulls{/number}",
+ "pushed_at": "2023-11-28T20:31:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19591/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/19591.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19591/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19591/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19591/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19591/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19591",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19591/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19591/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19591/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19591",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/196197": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/196197/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/196197/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/196197/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/196197/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/196197.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/196197/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/196197/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/196197/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/196197/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/196197/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/196197/contributors",
+ "created_at": "2024-01-11T18:00:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/196197/deployments",
+ "description": "HH model neuron of the Suprachiasmatic Nucleus including a persistent Na+ channel (Paul et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/196197/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/196197/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/196197/forks",
+ "full_name": "OpenSourceBrain/196197",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/196197/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/196197/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/196197/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/196197.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/196197",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/196197/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/196197",
+ "id": 742075925,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/196197/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/196197/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/196197/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/196197/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/196197/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/196197/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/196197/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/196197/milestones{/number}",
+ "mirror_url": null,
+ "name": "196197",
+ "node_id": "R_kgDOLDsuFQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/196197/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/196197/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/196197/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/196197.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/196197/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/196197/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/196197/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/196197/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/196197",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/196197/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/196197/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/196197/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/196197",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19696": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19696/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19696/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19696/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19696/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19696.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19696/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19696/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19696/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19696/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19696/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19696/contributors",
+ "created_at": "2024-01-08T14:06:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19696/deployments",
+ "description": "CA1 pyramidal neuron: integration of subthreshold inputs from PP and SC (Migliore 2003)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19696/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19696/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19696/forks",
+ "full_name": "OpenSourceBrain/19696",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19696/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19696/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19696/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19696.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19696",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19696/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19696",
+ "id": 740518565,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19696/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19696/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19696/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19696/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19696/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19696/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19696/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19696/milestones{/number}",
+ "mirror_url": null,
+ "name": "19696",
+ "node_id": "R_kgDOLCNqpQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19696/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19696/pulls{/number}",
+ "pushed_at": "2019-05-31T02:50:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19696/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/19696.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19696/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19696/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19696/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19696/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19696",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19696/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19696/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19696/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19696",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19698": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19698/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19698/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19698/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19698/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19698.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19698/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19698/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19698/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19698/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19698/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19698/contributors",
+ "created_at": "2024-01-08T14:06:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19698/deployments",
+ "description": "Leech heart interneuron network model (Hill et al 2001, 2002)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19698/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19698/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19698/forks",
+ "full_name": "OpenSourceBrain/19698",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19698/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19698/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19698/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19698.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19698",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19698/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19698",
+ "id": 740518587,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19698/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19698/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19698/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19698/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19698/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19698/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19698/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19698/milestones{/number}",
+ "mirror_url": null,
+ "name": "19698",
+ "node_id": "R_kgDOLCNquw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19698/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19698/pulls{/number}",
+ "pushed_at": "2019-05-31T04:31:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19698/releases{/id}",
+ "size": 976,
+ "ssh_url": "git@github.com:OpenSourceBrain/19698.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19698/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19698/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19698/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19698/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19698",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19698/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19698/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19698/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19698",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19746": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19746/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19746/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19746/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19746/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19746.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19746/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19746/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19746/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19746/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19746/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19746/contributors",
+ "created_at": "2024-01-08T14:06:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19746/deployments",
+ "description": "Signal integration in a CA1 pyramidal cell (Graham 2001)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19746/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19746/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19746/forks",
+ "full_name": "OpenSourceBrain/19746",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19746/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19746/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19746/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19746.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/19746",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19746/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19746",
+ "id": 740518605,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19746/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19746/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19746/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19746/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19746/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19746/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19746/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19746/milestones{/number}",
+ "mirror_url": null,
+ "name": "19746",
+ "node_id": "R_kgDOLCNqzQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19746/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19746/pulls{/number}",
+ "pushed_at": "2018-04-23T18:55:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19746/releases{/id}",
+ "size": 18,
+ "ssh_url": "git@github.com:OpenSourceBrain/19746.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19746/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19746/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19746/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19746/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19746",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19746/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19746/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19746/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19746",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19747": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19747/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19747/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19747/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19747/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19747.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19747/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19747/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19747/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19747/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19747/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19747/contributors",
+ "created_at": "2024-01-08T14:06:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19747/deployments",
+ "description": "Synaptic transmission at the calyx of Held (Graham et al 2001)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19747/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19747/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19747/forks",
+ "full_name": "OpenSourceBrain/19747",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19747/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19747/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19747/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19747.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19747",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19747/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19747",
+ "id": 740518617,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19747/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19747/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19747/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19747/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19747/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19747/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19747/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19747/milestones{/number}",
+ "mirror_url": null,
+ "name": "19747",
+ "node_id": "R_kgDOLCNq2Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19747/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19747/pulls{/number}",
+ "pushed_at": "2019-05-31T02:54:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19747/releases{/id}",
+ "size": 8,
+ "ssh_url": "git@github.com:OpenSourceBrain/19747.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19747/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19747/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19747/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19747/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19747",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19747/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19747/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19747/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19747",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/19920": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/19920/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/19920/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/19920/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/19920/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/19920.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/19920/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/19920/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/19920/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/19920/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/19920/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/19920/contributors",
+ "created_at": "2024-01-08T14:06:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/19920/deployments",
+ "description": "T-type Calcium currents (McRory et al 2001)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/19920/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/19920/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/19920/forks",
+ "full_name": "OpenSourceBrain/19920",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/19920/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/19920/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/19920/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/19920.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/19920",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/19920/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/19920",
+ "id": 740518634,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/19920/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/19920/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/19920/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/19920/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/19920/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/19920/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/19920/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/19920/milestones{/number}",
+ "mirror_url": null,
+ "name": "19920",
+ "node_id": "R_kgDOLCNq6g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/19920/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/19920/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/19920/releases{/id}",
+ "size": 2,
+ "ssh_url": "git@github.com:OpenSourceBrain/19920.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/19920/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/19920/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/19920/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/19920/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/19920",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/19920/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/19920/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/19920/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/19920",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/20007": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/20007/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/20007/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/20007/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/20007/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/20007.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/20007/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/20007/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/20007/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/20007/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/20007/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/20007/contributors",
+ "created_at": "2024-01-08T14:06:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/20007/deployments",
+ "description": "CA3 pyramidal neuron (Lazarewicz et al 2002)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/20007/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/20007/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/20007/forks",
+ "full_name": "OpenSourceBrain/20007",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/20007/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/20007/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/20007/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/20007.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/20007",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/20007/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/20007",
+ "id": 740518646,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/20007/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/20007/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/20007/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/20007/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/20007/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/20007/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/20007/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/20007/milestones{/number}",
+ "mirror_url": null,
+ "name": "20007",
+ "node_id": "R_kgDOLCNq9g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/20007/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/20007/pulls{/number}",
+ "pushed_at": "2019-05-31T02:08:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/20007/releases{/id}",
+ "size": 33,
+ "ssh_url": "git@github.com:OpenSourceBrain/20007.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/20007/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/20007/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/20007/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/20007/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/20007",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/20007/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/20007/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/20007/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/20007",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/20014": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/20014/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/20014/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/20014/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/20014/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/20014.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/20014/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/20014/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/20014/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/20014/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/20014/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/20014/contributors",
+ "created_at": "2024-01-08T14:06:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/20014/deployments",
+ "description": "Transfer properties of Neuronal Dendrites (Korogod et al 1998)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/20014/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/20014/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/20014/forks",
+ "full_name": "OpenSourceBrain/20014",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/20014/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/20014/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/20014/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/20014.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/20014",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/20014/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/20014",
+ "id": 740518660,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/20014/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/20014/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/20014/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/20014/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/20014/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/20014/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/20014/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/20014/milestones{/number}",
+ "mirror_url": null,
+ "name": "20014",
+ "node_id": "R_kgDOLCNrBA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/20014/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/20014/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/20014/releases{/id}",
+ "size": 129,
+ "ssh_url": "git@github.com:OpenSourceBrain/20014.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/20014/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/20014/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/20014/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/20014/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/20014",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/20014/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/20014/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/20014/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/20014",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/20015": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/20015/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/20015/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/20015/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/20015/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/20015.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/20015/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/20015/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/20015/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/20015/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/20015/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/20015/contributors",
+ "created_at": "2024-01-08T14:06:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/20015/deployments",
+ "description": "CA1 interneuron: K currents (Lien et al 2002)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/20015/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/20015/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/20015/forks",
+ "full_name": "OpenSourceBrain/20015",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/20015/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/20015/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/20015/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/20015.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/20015",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/20015/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/20015",
+ "id": 740518677,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/20015/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/20015/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/20015/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/20015/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/20015/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/20015/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/20015/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/20015/milestones{/number}",
+ "mirror_url": null,
+ "name": "20015",
+ "node_id": "R_kgDOLCNrFQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/20015/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/20015/pulls{/number}",
+ "pushed_at": "2019-05-31T02:38:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/20015/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/20015.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/20015/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/20015/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/20015/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/20015/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/20015",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/20015/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/20015/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/20015/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/20015",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2001735": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2001735/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2001735/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2001735/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2001735/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2001735.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2001735/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2001735/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2001735/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2001735/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2001735/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2001735/contributors",
+ "created_at": "2024-01-12T08:19:26Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2001735/deployments",
+ "description": "Estimating the effects of slicing on the electrophysiological properties of spinal motoneurons under normal and disease conditions (Mousa and Elbasiouny 2021)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2001735/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2001735/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2001735/forks",
+ "full_name": "OpenSourceBrain/2001735",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2001735/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2001735/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2001735/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2001735.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2001735",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2001735/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2001735",
+ "id": 742325307,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2001735/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2001735/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2001735/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2001735/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2001735/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2001735/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2001735/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2001735/milestones{/number}",
+ "mirror_url": null,
+ "name": "2001735",
+ "node_id": "R_kgDOLD78Ow",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2001735/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2001735/pulls{/number}",
+ "pushed_at": "2023-11-29T00:11:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2001735/releases{/id}",
+ "size": 111,
+ "ssh_url": "git@github.com:OpenSourceBrain/2001735.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2001735/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2001735/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2001735/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2001735/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2001735",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2001735/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2001735/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2001735/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:19:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2001735",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014814": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014814/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014814/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014814/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014814/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014814.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014814/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014814/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014814/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014814/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014814/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014814/contributors",
+ "created_at": "2024-01-12T08:19:37Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014814/deployments",
+ "description": "Tutorial: Using NEURON for Neuromechanical Simulations (Fietkiewicz et al., 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014814/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014814/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014814/forks",
+ "full_name": "OpenSourceBrain/2014814",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014814/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014814/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014814/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014814.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2014814",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014814/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014814",
+ "id": 742325384,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014814/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014814/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014814/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014814/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014814/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014814/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014814/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014814/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014814",
+ "node_id": "R_kgDOLD78iA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014814/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014814/pulls{/number}",
+ "pushed_at": "2023-06-28T10:28:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014814/releases{/id}",
+ "size": 248,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014814.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014814/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014814/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014814/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014814/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014814",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014814/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014814/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014814/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:19:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014814",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014816": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014816/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014816/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014816/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014816/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014816.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014816/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014816/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014816/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014816/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014816/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014816/contributors",
+ "created_at": "2024-01-12T08:20:19Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014816/deployments",
+ "description": "Different responses of mice and rats hippocampus CA1 pyramidal neurons to in vitro and in vivo-like inputs (Vitale et al., 2023) ",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014816/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014816/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014816/forks",
+ "full_name": "OpenSourceBrain/2014816",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014816/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014816/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014816/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014816.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": false,
+ "homepage": "https://modeldb.science/2014816",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014816/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014816",
+ "id": 742325659,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014816/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014816/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014816/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014816/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014816/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014816/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014816/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014816/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014816",
+ "node_id": "R_kgDOLD79mw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014816/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014816/pulls{/number}",
+ "pushed_at": "2023-12-01T16:34:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014816/releases{/id}",
+ "size": 285,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014816.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014816/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014816/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014816/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014816/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014816",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014816/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014816/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014816/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014816",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014817": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014817/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014817/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014817/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014817/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014817.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014817/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014817/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014817/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014817/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014817/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014817/contributors",
+ "created_at": "2024-01-12T08:19:44Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014817/deployments",
+ "description": "Minimal model for human ventricular action potentials (Bueno-Orovio et al 2008)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014817/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014817/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014817/forks",
+ "full_name": "OpenSourceBrain/2014817",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014817/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014817/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014817/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014817.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2014817",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014817/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014817",
+ "id": 742325420,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014817/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014817/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014817/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014817/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014817/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014817/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014817/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014817/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014817",
+ "node_id": "R_kgDOLD78rA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014817/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014817/pulls{/number}",
+ "pushed_at": "2023-12-23T05:32:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014817/releases{/id}",
+ "size": 82,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014817.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014817/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014817/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014817/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014817/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014817",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014817/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014817/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014817/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:19:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014817",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014822": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014822/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014822/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014822/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014822/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014822.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014822/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014822/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014822/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014822/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014822/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014822/contributors",
+ "created_at": "2024-01-12T08:20:24Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014822/deployments",
+ "description": "Hippocampal synaptic plasticity in Alzheimer's disease (Dainauskas et al., 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014822/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014822/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014822/forks",
+ "full_name": "OpenSourceBrain/2014822",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014822/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014822/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014822/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014822.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2014822",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014822/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014822",
+ "id": 742325685,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014822/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014822/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014822/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014822/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014822/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014822/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014822/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014822/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014822",
+ "node_id": "R_kgDOLD79tQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014822/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014822/pulls{/number}",
+ "pushed_at": "2023-12-08T17:59:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014822/releases{/id}",
+ "size": 102,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014822.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014822/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014822/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014822/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014822/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014822",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014822/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014822/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014822/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014822",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014830": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014830/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014830/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014830/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014830/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014830.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014830/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014830/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014830/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014830/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014830/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014830/contributors",
+ "created_at": "2024-01-12T08:19:56Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014830/deployments",
+ "description": "ffian: Fluid Flow In Astrocyte Networks (S\u00e6tra et al. 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014830/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014830/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014830/forks",
+ "full_name": "OpenSourceBrain/2014830",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014830/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014830/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014830/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014830.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2014830",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014830/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014830",
+ "id": 742325500,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014830/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014830/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014830/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014830/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014830/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014830/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014830/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014830/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014830",
+ "node_id": "R_kgDOLD78_A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014830/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014830/pulls{/number}",
+ "pushed_at": "2023-10-19T03:26:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014830/releases{/id}",
+ "size": 8,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014830.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014830/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014830/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014830/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014830/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014830",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014830/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014830/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014830/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:19:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014830",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014833": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014833/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014833/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014833/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014833/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014833.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014833/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014833/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014833/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014833/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014833/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014833/contributors",
+ "created_at": "2024-01-12T08:20:15Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014833/deployments",
+ "description": "A neural network model of mathematics anxiety: The role of attention (Rose et al., 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014833/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014833/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014833/forks",
+ "full_name": "OpenSourceBrain/2014833",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014833/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014833/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014833/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014833.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2014833",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014833/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014833",
+ "id": 742325638,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014833/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014833/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014833/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014833/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014833/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014833/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014833/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014833/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014833",
+ "node_id": "R_kgDOLD79hg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014833/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014833/pulls{/number}",
+ "pushed_at": "2023-12-23T05:37:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014833/releases{/id}",
+ "size": 3960,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014833.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014833/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014833/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014833/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014833/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014833",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014833/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014833/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014833/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014833",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014996": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014996/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014996/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014996/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014996/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014996.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014996/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014996/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014996/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014996/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014996/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014996/contributors",
+ "created_at": "2024-01-12T08:20:04Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014996/deployments",
+ "description": "Exploring the role of K\u04e7lliker-Fuse nucleus in breathing variability via mathematical modeling (John et al., 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014996/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014996/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014996/forks",
+ "full_name": "OpenSourceBrain/2014996",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014996/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014996/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014996/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014996.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2014996",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014996/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014996",
+ "id": 742325568,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014996/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014996/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014996/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014996/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014996/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014996/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014996/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014996/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014996",
+ "node_id": "R_kgDOLD79QA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014996/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014996/pulls{/number}",
+ "pushed_at": "2023-12-23T05:36:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014996/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014996.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014996/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014996/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014996/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014996/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014996",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014996/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014996/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014996/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014996",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014998": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014998/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014998/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014998/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014998/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014998.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014998/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014998/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014998/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014998/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014998/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014998/contributors",
+ "created_at": "2024-01-12T08:20:13Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014998/deployments",
+ "description": "Frequency-dependent pattern separation in a biophysical model of the dentate gyrus, (Singh et al., 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014998/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014998/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014998/forks",
+ "full_name": "OpenSourceBrain/2014998",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014998/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014998/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014998/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014998.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2014998",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014998/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014998",
+ "id": 742325622,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014998/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014998/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014998/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014998/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014998/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014998/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014998/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014998/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014998",
+ "node_id": "R_kgDOLD79dg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014998/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014998/pulls{/number}",
+ "pushed_at": "2023-12-23T05:37:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014998/releases{/id}",
+ "size": 73,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014998.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014998/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014998/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014998/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014998/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014998",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014998/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014998/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014998/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014998",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2014999": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2014999/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2014999/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2014999/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2014999/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2014999.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2014999/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2014999/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2014999/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2014999/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2014999/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2014999/contributors",
+ "created_at": "2024-01-12T08:19:54Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2014999/deployments",
+ "description": "A multiscale predictive digital twin for neurocardiac modulation (Yang et al., 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2014999/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2014999/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2014999/forks",
+ "full_name": "OpenSourceBrain/2014999",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2014999/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2014999/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2014999/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2014999.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2014999",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2014999/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2014999",
+ "id": 742325480,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2014999/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2014999/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2014999/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2014999/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2014999/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2014999/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2014999/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2014999/milestones{/number}",
+ "mirror_url": null,
+ "name": "2014999",
+ "node_id": "R_kgDOLD786A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2014999/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2014999/pulls{/number}",
+ "pushed_at": "2023-10-19T02:46:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2014999/releases{/id}",
+ "size": 722,
+ "ssh_url": "git@github.com:OpenSourceBrain/2014999.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2014999/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2014999/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2014999/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2014999/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2014999",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2014999/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2014999/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2014999/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:19:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2014999",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2015412": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2015412/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2015412/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2015412/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2015412/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2015412.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2015412/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2015412/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2015412/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2015412/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2015412/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2015412/contributors",
+ "created_at": "2024-01-12T08:20:09Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2015412/deployments",
+ "description": "Cold-Temperature Coding with Bursting and Spiking Based on TRP Channel Dynamics in Drosophila Larva Sensory Neurons (Maksymchuk, N., A. Sakurai, D.N. Cox, and G.S. Cymbalyuk, 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2015412/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2015412/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2015412/forks",
+ "full_name": "OpenSourceBrain/2015412",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2015412/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2015412/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2015412/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2015412.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2015412",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2015412/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2015412",
+ "id": 742325588,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2015412/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2015412/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2015412/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2015412/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2015412/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2015412/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2015412/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2015412/milestones{/number}",
+ "mirror_url": null,
+ "name": "2015412",
+ "node_id": "R_kgDOLD79VA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2015412/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2015412/pulls{/number}",
+ "pushed_at": "2023-12-23T05:37:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2015412/releases{/id}",
+ "size": 70077,
+ "ssh_url": "git@github.com:OpenSourceBrain/2015412.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2015412/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2015412/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2015412/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2015412/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2015412",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2015412/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2015412/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2015412/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2015412",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2015413": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2015413/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2015413/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2015413/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2015413/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2015413.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2015413/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2015413/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2015413/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2015413/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2015413/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2015413/contributors",
+ "created_at": "2024-01-12T08:20:07Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2015413/deployments",
+ "description": "Transient and Steady-State Properties of Drosophila Sensory Neurons Coding Noxious Cold Temperature; (Maksymchuk, N., Sakurai, A., Cox, D. N., & Cymbalyuk, G. 2022) ",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2015413/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2015413/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2015413/forks",
+ "full_name": "OpenSourceBrain/2015413",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2015413/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2015413/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2015413/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2015413.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2015413",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2015413/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2015413",
+ "id": 742325578,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2015413/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2015413/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2015413/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2015413/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2015413/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2015413/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2015413/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2015413/milestones{/number}",
+ "mirror_url": null,
+ "name": "2015413",
+ "node_id": "R_kgDOLD79Sg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2015413/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2015413/pulls{/number}",
+ "pushed_at": "2023-12-23T05:36:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2015413/releases{/id}",
+ "size": 14,
+ "ssh_url": "git@github.com:OpenSourceBrain/2015413.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2015413/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2015413/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2015413/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2015413/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2015413",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2015413/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2015413/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2015413/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2015413",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2015414": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2015414/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2015414/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2015414/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2015414/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2015414.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2015414/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2015414/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2015414/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2015414/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2015414/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2015414/contributors",
+ "created_at": "2024-01-12T08:20:02Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2015414/deployments",
+ "description": "Zebrafish Mauthner escape circuit with dopamine, gaba, and glycine (Clements et al., accepted)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2015414/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2015414/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2015414/forks",
+ "full_name": "OpenSourceBrain/2015414",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2015414/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2015414/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2015414/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2015414.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2015414",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2015414/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2015414",
+ "id": 742325547,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2015414/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2015414/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2015414/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2015414/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2015414/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2015414/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2015414/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2015414/milestones{/number}",
+ "mirror_url": null,
+ "name": "2015414",
+ "node_id": "R_kgDOLD79Kw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2015414/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2015414/pulls{/number}",
+ "pushed_at": "2023-12-23T05:38:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2015414/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/2015414.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2015414/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2015414/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2015414/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2015414/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2015414",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2015414/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2015414/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2015414/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2015414",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2015420": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2015420/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2015420/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2015420/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2015420/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2015420.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2015420/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2015420/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2015420/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2015420/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2015420/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2015420/contributors",
+ "created_at": "2024-01-12T08:20:28Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2015420/deployments",
+ "description": "Hypothalamic CRH neurons represent physiological memory of positive and negative experience (F\u00fczesi et al., 2023) ",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2015420/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2015420/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2015420/forks",
+ "full_name": "OpenSourceBrain/2015420",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2015420/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2015420/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2015420/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2015420.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2015420",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2015420/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2015420",
+ "id": 742325698,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2015420/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2015420/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2015420/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2015420/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2015420/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2015420/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2015420/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2015420/milestones{/number}",
+ "mirror_url": null,
+ "name": "2015420",
+ "node_id": "R_kgDOLD79wg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2015420/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2015420/pulls{/number}",
+ "pushed_at": "2023-12-23T01:08:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2015420/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/2015420.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2015420/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2015420/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2015420/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2015420/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2015420",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2015420/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2015420/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2015420/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2015420",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2015421": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2015421/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2015421/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2015421/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2015421/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2015421.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2015421/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2015421/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2015421/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2015421/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2015421/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2015421/contributors",
+ "created_at": "2024-01-12T08:20:11Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2015421/deployments",
+ "description": "Time-dependent homeostatic mechanisms underlie Brain-Derived Neurotrophic Factor action on neural circuitry (O'Neill, 2023)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2015421/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2015421/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2015421/forks",
+ "full_name": "OpenSourceBrain/2015421",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2015421/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2015421/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2015421/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2015421.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2015421",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2015421/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2015421",
+ "id": 742325599,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2015421/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2015421/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2015421/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2015421/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2015421/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2015421/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2015421/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2015421/milestones{/number}",
+ "mirror_url": null,
+ "name": "2015421",
+ "node_id": "R_kgDOLD79Xw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2015421/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2015421/pulls{/number}",
+ "pushed_at": "2023-11-22T01:02:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2015421/releases{/id}",
+ "size": 23,
+ "ssh_url": "git@github.com:OpenSourceBrain/2015421.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2015421/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2015421/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2015421/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2015421/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2015421",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2015421/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2015421/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2015421/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2015421",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/2015422": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/2015422/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/2015422/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/2015422/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/2015422/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/2015422.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/2015422/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/2015422/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/2015422/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/2015422/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/2015422/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/2015422/contributors",
+ "created_at": "2024-01-12T08:20:21Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/2015422/deployments",
+ "description": "A biophysical model of thalamocortical network switching under propofol (Soplata et al., 2023) ",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/2015422/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/2015422/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/2015422/forks",
+ "full_name": "OpenSourceBrain/2015422",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/2015422/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/2015422/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/2015422/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/2015422.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/2015422",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/2015422/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/2015422",
+ "id": 742325677,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/2015422/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/2015422/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/2015422/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/2015422/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/2015422/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/2015422/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/2015422/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/2015422/milestones{/number}",
+ "mirror_url": null,
+ "name": "2015422",
+ "node_id": "R_kgDOLD79rQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/2015422/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/2015422/pulls{/number}",
+ "pushed_at": "2023-12-05T02:52:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/2015422/releases{/id}",
+ "size": 3874,
+ "ssh_url": "git@github.com:OpenSourceBrain/2015422.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/2015422/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/2015422/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/2015422/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/2015422/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/2015422",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/2015422/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/2015422/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/2015422/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:20:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/2015422",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/20212": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/20212/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/20212/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/20212/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/20212/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/20212.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/20212/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/20212/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/20212/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/20212/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/20212/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/20212/contributors",
+ "created_at": "2024-01-08T14:06:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/20212/deployments",
+ "description": "CA1 pyramidal neuron: as a 2-layer NN and subthreshold synaptic summation (Poirazi et al 2003)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/20212/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/20212/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/20212/forks",
+ "full_name": "OpenSourceBrain/20212",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/20212/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/20212/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/20212/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/20212.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/20212",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/20212/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/20212",
+ "id": 740518706,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/20212/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/20212/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/20212/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/20212/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/20212/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/20212/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/20212/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/20212/milestones{/number}",
+ "mirror_url": null,
+ "name": "20212",
+ "node_id": "R_kgDOLCNrMg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/20212/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/20212/pulls{/number}",
+ "pushed_at": "2023-11-28T20:31:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/20212/releases{/id}",
+ "size": 764,
+ "ssh_url": "git@github.com:OpenSourceBrain/20212.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/20212/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/20212/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/20212/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/20212/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/20212",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/20212/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/20212/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/20212/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/20212",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206227": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206227/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206227/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206227/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206227/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206227.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206227/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206227/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206227/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206227/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206227/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206227/contributors",
+ "created_at": "2024-01-11T18:00:36Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206227/deployments",
+ "description": "A dendritic disinhibitory circuit mechanism for pathway-specific gating (Yang et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206227/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206227/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206227/forks",
+ "full_name": "OpenSourceBrain/206227",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206227/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206227/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206227/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206227.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/206227",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206227/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206227",
+ "id": 742075937,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206227/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206227/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206227/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206227/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206227/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206227/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206227/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206227/milestones{/number}",
+ "mirror_url": null,
+ "name": "206227",
+ "node_id": "R_kgDOLDsuIQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206227/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206227/pulls{/number}",
+ "pushed_at": "2023-12-23T03:51:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206227/releases{/id}",
+ "size": 68,
+ "ssh_url": "git@github.com:OpenSourceBrain/206227.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206227/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206227/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206227/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206227/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206227",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206227/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206227/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206227/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206227",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206232": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206232/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206232/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206232/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206232/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206232.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206232/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206232/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206232/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206232/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206232/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206232/contributors",
+ "created_at": "2024-01-11T18:00:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206232/deployments",
+ "description": "Cortex-Basal Ganglia-Thalamus network model (Kumaravelu et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206232/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206232/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206232/forks",
+ "full_name": "OpenSourceBrain/206232",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206232/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206232/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206232/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206232.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/206232",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206232/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206232",
+ "id": 742075948,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206232/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206232/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206232/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206232/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206232/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206232/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206232/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206232/milestones{/number}",
+ "mirror_url": null,
+ "name": "206232",
+ "node_id": "R_kgDOLDsuLA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206232/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206232/pulls{/number}",
+ "pushed_at": "2018-04-23T18:59:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206232/releases{/id}",
+ "size": 10,
+ "ssh_url": "git@github.com:OpenSourceBrain/206232.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206232/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206232/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206232/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206232/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206232",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206232/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206232/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206232/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206232",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206238": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206238/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206238/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206238/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206238/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206238.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206238/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206238/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206238/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206238/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206238/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206238/contributors",
+ "created_at": "2024-01-11T18:00:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206238/deployments",
+ "description": "A multilayer cortical model to study seizure propagation across microdomains (Basu et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206238/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206238/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206238/forks",
+ "full_name": "OpenSourceBrain/206238",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206238/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206238/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206238/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206238.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/206238",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206238/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206238",
+ "id": 742075959,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206238/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206238/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206238/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206238/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206238/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206238/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206238/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206238/milestones{/number}",
+ "mirror_url": null,
+ "name": "206238",
+ "node_id": "R_kgDOLDsuNw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206238/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206238/pulls{/number}",
+ "pushed_at": "2018-04-23T18:59:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206238/releases{/id}",
+ "size": 1153,
+ "ssh_url": "git@github.com:OpenSourceBrain/206238.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206238/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206238/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206238/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206238/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206238",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206238/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206238/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206238/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206238",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206244": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206244/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206244/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206244/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206244/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206244.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206244/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206244/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206244/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206244/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206244/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206244/contributors",
+ "created_at": "2024-01-11T18:00:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206244/deployments",
+ "description": "CA1 pyramidal neuron: dendritic Ca2+ inhibition (Muellner et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206244/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206244/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206244/forks",
+ "full_name": "OpenSourceBrain/206244",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206244/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206244/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206244/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206244.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/206244",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206244/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206244",
+ "id": 742075973,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206244/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206244/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206244/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206244/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206244/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206244/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206244/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206244/milestones{/number}",
+ "mirror_url": null,
+ "name": "206244",
+ "node_id": "R_kgDOLDsuRQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206244/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206244/pulls{/number}",
+ "pushed_at": "2023-07-08T15:43:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206244/releases{/id}",
+ "size": 287,
+ "ssh_url": "git@github.com:OpenSourceBrain/206244.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206244/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206244/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206244/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206244/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206244",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206244/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206244/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206244/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206244",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206249": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206249/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206249/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206249/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206249/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206249.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206249/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206249/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206249/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206249/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206249/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206249/contributors",
+ "created_at": "2024-01-11T18:00:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206249/deployments",
+ "description": "Model of memory linking through memory allocation (Kastellakis et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206249/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206249/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206249/forks",
+ "full_name": "OpenSourceBrain/206249",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206249/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206249/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206249/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206249.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/206249",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206249/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206249",
+ "id": 742075993,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206249/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206249/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206249/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206249/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206249/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206249/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206249/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206249/milestones{/number}",
+ "mirror_url": null,
+ "name": "206249",
+ "node_id": "R_kgDOLDsuWQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206249/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206249/pulls{/number}",
+ "pushed_at": "2018-04-23T19:00:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206249/releases{/id}",
+ "size": 1393,
+ "ssh_url": "git@github.com:OpenSourceBrain/206249.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206249/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206249/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206249/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206249/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206249",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206249/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206249/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206249/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206249",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206252": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206252/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206252/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206252/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206252/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206252.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206252/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206252/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206252/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206252/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206252/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206252/contributors",
+ "created_at": "2024-01-11T18:00:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206252/deployments",
+ "description": "DCN fusiform cell (Ceballos et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206252/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206252/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206252/forks",
+ "full_name": "OpenSourceBrain/206252",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206252/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206252/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206252/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206252.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/206252",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206252/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206252",
+ "id": 742076007,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206252/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206252/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206252/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206252/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206252/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206252/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206252/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206252/milestones{/number}",
+ "mirror_url": null,
+ "name": "206252",
+ "node_id": "R_kgDOLDsuZw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206252/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206252/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206252/releases{/id}",
+ "size": 20,
+ "ssh_url": "git@github.com:OpenSourceBrain/206252.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206252/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206252/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206252/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206252/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206252",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206252/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206252/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206252/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206252",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206256": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206256/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206256/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206256/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206256/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206256.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206256/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206256/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206256/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206256/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206256/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206256/contributors",
+ "created_at": "2024-01-11T18:00:49Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206256/deployments",
+ "description": "BDNF morphological contributions to AP enhancement (Galati et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206256/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206256/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206256/forks",
+ "full_name": "OpenSourceBrain/206256",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206256/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206256/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206256/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206256.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/206256",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206256/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206256",
+ "id": 742076021,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206256/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206256/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206256/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206256/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206256/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206256/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206256/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206256/milestones{/number}",
+ "mirror_url": null,
+ "name": "206256",
+ "node_id": "R_kgDOLDsudQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206256/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206256/pulls{/number}",
+ "pushed_at": "2023-12-23T03:52:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206256/releases{/id}",
+ "size": 326,
+ "ssh_url": "git@github.com:OpenSourceBrain/206256.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206256/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206256/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206256/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206256/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206256",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206256/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206256/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206256/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206256",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206267": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206267/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206267/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206267/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206267/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206267.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206267/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206267/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206267/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206267/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206267/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206267/contributors",
+ "created_at": "2024-01-11T18:00:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206267/deployments",
+ "description": "Cerebellum granule cell FHF (Dover et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206267/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206267/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206267/forks",
+ "full_name": "OpenSourceBrain/206267",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206267/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206267/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206267/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206267.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/206267",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206267/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206267",
+ "id": 742076036,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206267/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206267/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206267/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206267/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206267/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206267/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206267/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206267/milestones{/number}",
+ "mirror_url": null,
+ "name": "206267",
+ "node_id": "R_kgDOLDsuhA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206267/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206267/pulls{/number}",
+ "pushed_at": "2023-11-28T21:06:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206267/releases{/id}",
+ "size": 80,
+ "ssh_url": "git@github.com:OpenSourceBrain/206267.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206267/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206267/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206267/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206267/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206267",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206267/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206267/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206267/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206267",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206310": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206310/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206310/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206310/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206310/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206310.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206310/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206310/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206310/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206310/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206310/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206310/contributors",
+ "created_at": "2024-01-11T18:00:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206310/deployments",
+ "description": "Comparing correlation responses to motion estimation models (Salazar-Gatzimas et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206310/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206310/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206310/forks",
+ "full_name": "OpenSourceBrain/206310",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206310/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206310/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206310/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206310.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/206310",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206310/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206310",
+ "id": 742076050,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206310/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206310/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206310/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206310/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206310/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206310/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206310/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206310/milestones{/number}",
+ "mirror_url": null,
+ "name": "206310",
+ "node_id": "R_kgDOLDsukg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206310/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206310/pulls{/number}",
+ "pushed_at": "2019-05-31T03:29:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206310/releases{/id}",
+ "size": 100,
+ "ssh_url": "git@github.com:OpenSourceBrain/206310.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206310/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206310/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206310/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206310/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206310",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206310/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206310/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206310/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206310",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206328": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206328/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206328/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206328/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206328/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206328.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206328/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206328/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206328/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206328/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206328/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206328/contributors",
+ "created_at": "2024-01-11T18:00:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206328/deployments",
+ "description": "Spatially-varying glutamate diffusion coefficient at CA1 synaptic cleft space (Gupta et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206328/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206328/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206328/forks",
+ "full_name": "OpenSourceBrain/206328",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206328/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206328/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206328/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206328.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/206328",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206328/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206328",
+ "id": 742076082,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206328/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206328/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206328/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206328/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206328/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206328/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206328/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206328/milestones{/number}",
+ "mirror_url": null,
+ "name": "206328",
+ "node_id": "R_kgDOLDsusg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206328/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206328/pulls{/number}",
+ "pushed_at": "2019-05-31T03:46:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206328/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/206328.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206328/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206328/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206328/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206328/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206328",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206328/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206328/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206328/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206328",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206337": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206337/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206337/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206337/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206337/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206337.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206337/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206337/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206337/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206337/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206337/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206337/contributors",
+ "created_at": "2024-01-11T18:00:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206337/deployments",
+ "description": "Large-scale neural model of visual short-term memory (Ulloa, Horwitz 2016; Horwitz, et al. 2005,...)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206337/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206337/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206337/forks",
+ "full_name": "OpenSourceBrain/206337",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206337/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206337/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206337/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206337.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/206337",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206337/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206337",
+ "id": 742076100,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206337/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206337/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206337/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206337/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206337/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206337/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206337/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206337/milestones{/number}",
+ "mirror_url": null,
+ "name": "206337",
+ "node_id": "R_kgDOLDsuxA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206337/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206337/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206337/releases{/id}",
+ "size": 6270,
+ "ssh_url": "git@github.com:OpenSourceBrain/206337.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206337/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206337/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206337/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206337/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206337",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206337/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206337/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206337/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206337",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206356": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206356/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206356/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206356/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206356/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206356.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206356/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206356/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206356/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206356/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206356/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206356/contributors",
+ "created_at": "2024-01-11T18:00:59Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206356/deployments",
+ "description": "Continuous lateral oscillations as a mechanism for taxis in Drosophila larvae (Wystrach et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206356/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206356/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206356/forks",
+ "full_name": "OpenSourceBrain/206356",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206356/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206356/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206356/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206356.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/206356",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206356/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206356",
+ "id": 742076120,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206356/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206356/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206356/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206356/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206356/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206356/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206356/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206356/milestones{/number}",
+ "mirror_url": null,
+ "name": "206356",
+ "node_id": "R_kgDOLDsu2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206356/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206356/pulls{/number}",
+ "pushed_at": "2023-12-23T03:52:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206356/releases{/id}",
+ "size": 4839,
+ "ssh_url": "git@github.com:OpenSourceBrain/206356.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206356/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206356/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206356/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206356/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206356",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206356/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206356/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206356/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:00:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206356",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206364": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206364/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206364/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206364/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206364/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206364.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206364/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206364/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206364/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206364/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206364/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206364/contributors",
+ "created_at": "2024-01-11T18:01:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206364/deployments",
+ "description": "Inverse stochastic resonance of cerebellar Purkinje cell (Buchin et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206364/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206364/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206364/forks",
+ "full_name": "OpenSourceBrain/206364",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206364/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206364/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206364/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206364.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/206364",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206364/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206364",
+ "id": 742076141,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206364/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206364/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206364/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206364/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206364/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206364/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206364/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206364/milestones{/number}",
+ "mirror_url": null,
+ "name": "206364",
+ "node_id": "R_kgDOLDsu7Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206364/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206364/pulls{/number}",
+ "pushed_at": "2019-05-31T04:33:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206364/releases{/id}",
+ "size": 19618,
+ "ssh_url": "git@github.com:OpenSourceBrain/206364.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206364/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206364/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206364/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206364/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206364",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206364/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206364/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206364/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206364",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206365": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206365/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206365/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206365/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206365/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206365.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206365/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206365/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206365/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206365/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206365/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206365/contributors",
+ "created_at": "2024-01-11T18:01:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206365/deployments",
+ "description": "Subiculum network model with dynamic chloride/potassium homeostasis (Buchin et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206365/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206365/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206365/forks",
+ "full_name": "OpenSourceBrain/206365",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206365/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206365/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206365/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206365.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/206365",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206365/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206365",
+ "id": 742076155,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206365/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206365/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206365/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206365/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206365/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206365/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206365/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206365/milestones{/number}",
+ "mirror_url": null,
+ "name": "206365",
+ "node_id": "R_kgDOLDsu-w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206365/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206365/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206365/releases{/id}",
+ "size": 17280,
+ "ssh_url": "git@github.com:OpenSourceBrain/206365.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206365/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206365/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206365/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206365/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206365",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206365/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206365/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206365/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206365",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206372": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206372/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206372/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206372/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206372/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206372.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206372/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206372/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206372/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206372/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206372/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206372/contributors",
+ "created_at": "2024-01-11T18:01:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206372/deployments",
+ "description": "Dentate Gyrus model including Granule cells with dendritic compartments (Chavlis et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206372/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206372/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206372/forks",
+ "full_name": "OpenSourceBrain/206372",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206372/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206372/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206372/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206372.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/206372",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206372/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206372",
+ "id": 742076166,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206372/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206372/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206372/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206372/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206372/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206372/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206372/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206372/milestones{/number}",
+ "mirror_url": null,
+ "name": "206372",
+ "node_id": "R_kgDOLDsvBg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206372/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206372/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206372/releases{/id}",
+ "size": 1008,
+ "ssh_url": "git@github.com:OpenSourceBrain/206372.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206372/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206372/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206372/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206372/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206372",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206372/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206372/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206372/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206372",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206378": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206378/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206378/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206378/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206378/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206378.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206378/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206378/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206378/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206378/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206378/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206378/contributors",
+ "created_at": "2024-01-11T18:01:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206378/deployments",
+ "description": "Feedforward inhibition in pyramidal cells (Ferrante & Ascoli 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206378/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206378/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206378/forks",
+ "full_name": "OpenSourceBrain/206378",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206378/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206378/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206378/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206378.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/206378",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206378/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206378",
+ "id": 742076183,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206378/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206378/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206378/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206378/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206378/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206378/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206378/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206378/milestones{/number}",
+ "mirror_url": null,
+ "name": "206378",
+ "node_id": "R_kgDOLDsvFw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206378/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206378/pulls{/number}",
+ "pushed_at": "2018-04-23T19:01:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206378/releases{/id}",
+ "size": 43,
+ "ssh_url": "git@github.com:OpenSourceBrain/206378.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206378/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206378/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206378/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206378/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206378",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206378/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206378/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206378/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206378",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206380": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206380/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206380/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206380/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206380/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206380.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206380/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206380/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206380/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206380/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206380/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206380/contributors",
+ "created_at": "2024-01-11T18:01:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206380/deployments",
+ "description": "Excitability of DA neurons and their regulation by synaptic input (Morozova et al. 2016a, 2016b)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206380/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206380/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206380/forks",
+ "full_name": "OpenSourceBrain/206380",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206380/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206380/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206380/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206380.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/206380",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206380/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206380",
+ "id": 742076191,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206380/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206380/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206380/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206380/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206380/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206380/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206380/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206380/milestones{/number}",
+ "mirror_url": null,
+ "name": "206380",
+ "node_id": "R_kgDOLDsvHw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206380/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206380/pulls{/number}",
+ "pushed_at": "2019-05-31T02:47:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206380/releases{/id}",
+ "size": 170,
+ "ssh_url": "git@github.com:OpenSourceBrain/206380.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206380/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206380/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206380/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206380/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206380",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206380/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206380/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206380/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206380",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206397": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206397/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206397/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206397/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206397/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206397.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206397/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206397/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206397/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206397/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206397/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206397/contributors",
+ "created_at": "2024-01-11T18:01:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206397/deployments",
+ "description": "In vivo imaging of dentate gyrus mossy cells in behaving mice (Danielson et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206397/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206397/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206397/forks",
+ "full_name": "OpenSourceBrain/206397",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206397/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206397/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206397/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206397.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/206397",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206397/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206397",
+ "id": 742076207,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206397/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206397/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206397/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206397/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206397/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206397/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206397/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206397/milestones{/number}",
+ "mirror_url": null,
+ "name": "206397",
+ "node_id": "R_kgDOLDsvLw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206397/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206397/pulls{/number}",
+ "pushed_at": "2018-04-23T19:02:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206397/releases{/id}",
+ "size": 473,
+ "ssh_url": "git@github.com:OpenSourceBrain/206397.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206397/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206397/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206397/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206397/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206397",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206397/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206397/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206397/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206397",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206398": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206398/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206398/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206398/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206398/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206398.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206398/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206398/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206398/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206398/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206398/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206398/contributors",
+ "created_at": "2024-01-11T18:01:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206398/deployments",
+ "description": "Spikelet generation and AP initiation in a L5 neocortical pyr neuron (Michalikova et al. 2017) Fig 1",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206398/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206398/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206398/forks",
+ "full_name": "OpenSourceBrain/206398",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206398/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206398/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206398/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206398.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/206398",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206398/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206398",
+ "id": 742076224,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206398/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206398/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206398/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206398/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206398/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206398/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206398/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206398/milestones{/number}",
+ "mirror_url": null,
+ "name": "206398",
+ "node_id": "R_kgDOLDsvQA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206398/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206398/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206398/releases{/id}",
+ "size": 67,
+ "ssh_url": "git@github.com:OpenSourceBrain/206398.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206398/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206398/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206398/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206398/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206398",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206398/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206398/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206398/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206398",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206400": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206400/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206400/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206400/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206400/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206400.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206400/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206400/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206400/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206400/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206400/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206400/contributors",
+ "created_at": "2024-01-11T18:01:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206400/deployments",
+ "description": "Spikelet generation and AP initiation in a simplified pyr neuron (Michalikova et al. 2017) Fig 3",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206400/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206400/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206400/forks",
+ "full_name": "OpenSourceBrain/206400",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206400/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206400/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206400/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206400.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/206400",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206400/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206400",
+ "id": 742076239,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206400/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206400/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206400/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206400/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206400/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206400/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206400/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206400/milestones{/number}",
+ "mirror_url": null,
+ "name": "206400",
+ "node_id": "R_kgDOLDsvTw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206400/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206400/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206400/releases{/id}",
+ "size": 70,
+ "ssh_url": "git@github.com:OpenSourceBrain/206400.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206400/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206400/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206400/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206400/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206400",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206400/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206400/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206400/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206400",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/206405": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/206405/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/206405/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/206405/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/206405/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/206405.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/206405/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/206405/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/206405/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/206405/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/206405/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/206405/contributors",
+ "created_at": "2024-01-11T18:01:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/206405/deployments",
+ "description": "Earthworm medial giant fiber conduction velocity across electrical synapses (Heller, Crisp 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/206405/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/206405/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/206405/forks",
+ "full_name": "OpenSourceBrain/206405",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/206405/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/206405/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/206405/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/206405.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/206405",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/206405/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/206405",
+ "id": 742076257,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/206405/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/206405/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/206405/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/206405/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/206405/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/206405/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/206405/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/206405/milestones{/number}",
+ "mirror_url": null,
+ "name": "206405",
+ "node_id": "R_kgDOLDsvYQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/206405/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/206405/pulls{/number}",
+ "pushed_at": "2019-05-31T05:06:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/206405/releases{/id}",
+ "size": 28,
+ "ssh_url": "git@github.com:OpenSourceBrain/206405.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/206405/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/206405/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/206405/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/206405/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/206405",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/206405/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/206405/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/206405/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/206405",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/20756": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/20756/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/20756/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/20756/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/20756/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/20756.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/20756/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/20756/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/20756/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/20756/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/20756/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/20756/contributors",
+ "created_at": "2024-01-08T14:06:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/20756/deployments",
+ "description": "Mechanisms of fast rhythmic bursting in a layer 2/3 cortical neuron (Traub et al 2003)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/20756/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/20756/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/20756/forks",
+ "full_name": "OpenSourceBrain/20756",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/20756/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/20756/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/20756/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/20756.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/20756",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/20756/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/20756",
+ "id": 740518727,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/20756/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/20756/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/20756/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/20756/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/20756/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/20756/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/20756/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/20756/milestones{/number}",
+ "mirror_url": null,
+ "name": "20756",
+ "node_id": "R_kgDOLCNrRw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/20756/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/20756/pulls{/number}",
+ "pushed_at": "2019-05-31T04:51:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/20756/releases{/id}",
+ "size": 10,
+ "ssh_url": "git@github.com:OpenSourceBrain/20756.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/20756/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/20756/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/20756/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/20756/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/20756",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/20756/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/20756/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/20756/git/trees{/sha}",
+ "updated_at": "2024-01-08T14:06:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/20756",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/207695": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/207695/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/207695/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/207695/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/207695/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/207695.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/207695/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/207695/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/207695/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/207695/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/207695/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/207695/contributors",
+ "created_at": "2024-01-11T18:01:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/207695/deployments",
+ "description": "A network of AOB mitral cells that produces infra-slow bursting (Zylbertal et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/207695/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/207695/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/207695/forks",
+ "full_name": "OpenSourceBrain/207695",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/207695/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/207695/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/207695/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/207695.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/207695",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/207695/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/207695",
+ "id": 742076274,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/207695/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/207695/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/207695/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/207695/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/207695/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/207695/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/207695/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/207695/milestones{/number}",
+ "mirror_url": null,
+ "name": "207695",
+ "node_id": "R_kgDOLDsvcg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/207695/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/207695/pulls{/number}",
+ "pushed_at": "2019-05-31T04:28:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/207695/releases{/id}",
+ "size": 72,
+ "ssh_url": "git@github.com:OpenSourceBrain/207695.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/207695/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/207695/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/207695/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/207695/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/207695",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/207695/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/207695/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/207695/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/207695",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/21329": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/21329/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/21329/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/21329/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/21329/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/21329.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/21329/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/21329/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/21329/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/21329/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/21329/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/21329/contributors",
+ "created_at": "2024-01-10T13:08:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/21329/deployments",
+ "description": "Gamma oscillations in hippocampal interneuron networks (Bartos et al 2002)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/21329/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/21329/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/21329/forks",
+ "full_name": "OpenSourceBrain/21329",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/21329/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/21329/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/21329/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/21329.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/21329",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/21329/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/21329",
+ "id": 741467875,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/21329/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/21329/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/21329/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/21329/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/21329/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/21329/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/21329/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/21329/milestones{/number}",
+ "mirror_url": null,
+ "name": "21329",
+ "node_id": "R_kgDOLDHm4w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/21329/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/21329/pulls{/number}",
+ "pushed_at": "2019-05-31T05:03:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/21329/releases{/id}",
+ "size": 10,
+ "ssh_url": "git@github.com:OpenSourceBrain/21329.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/21329/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/21329/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/21329/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/21329/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/21329",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/21329/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/21329/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/21329/git/trees{/sha}",
+ "updated_at": "2024-01-10T13:08:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/21329",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/217783": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/217783/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/217783/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/217783/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/217783/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/217783.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/217783/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/217783/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/217783/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/217783/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/217783/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/217783/contributors",
+ "created_at": "2024-01-11T18:01:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/217783/deployments",
+ "description": "Infraslow intrinsic rhythmogenesis in a subset of AOB projection neurons (Gorin et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/217783/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/217783/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/217783/forks",
+ "full_name": "OpenSourceBrain/217783",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/217783/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/217783/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/217783/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/217783.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/217783",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/217783/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/217783",
+ "id": 742076284,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/217783/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/217783/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/217783/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/217783/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/217783/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/217783/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/217783/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/217783/milestones{/number}",
+ "mirror_url": null,
+ "name": "217783",
+ "node_id": "R_kgDOLDsvfA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/217783/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/217783/pulls{/number}",
+ "pushed_at": "2019-05-31T03:45:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/217783/releases{/id}",
+ "size": 284,
+ "ssh_url": "git@github.com:OpenSourceBrain/217783.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/217783/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/217783/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/217783/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/217783/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/217783",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/217783/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/217783/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/217783/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/217783",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/217882": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/217882/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/217882/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/217882/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/217882/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/217882.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/217882/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/217882/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/217882/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/217882/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/217882/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/217882/contributors",
+ "created_at": "2024-01-11T18:01:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/217882/deployments",
+ "description": "Regulation of motoneuron excitability by KCNQ/Kv7 modulators (Lombardo & Harrington 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/217882/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/217882/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/217882/forks",
+ "full_name": "OpenSourceBrain/217882",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/217882/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/217882/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/217882/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/217882.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/217882",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/217882/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/217882",
+ "id": 742076293,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/217882/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/217882/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/217882/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/217882/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/217882/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/217882/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/217882/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/217882/milestones{/number}",
+ "mirror_url": null,
+ "name": "217882",
+ "node_id": "R_kgDOLDsvhQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/217882/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/217882/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/217882/releases{/id}",
+ "size": 89,
+ "ssh_url": "git@github.com:OpenSourceBrain/217882.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/217882/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/217882/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/217882/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/217882/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/217882",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/217882/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/217882/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/217882/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/217882",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/217958": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/217958/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/217958/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/217958/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/217958/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/217958.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/217958/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/217958/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/217958/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/217958/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/217958/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/217958/contributors",
+ "created_at": "2024-01-11T18:01:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/217958/deployments",
+ "description": "Parallel cortical inhibition processing enables context-dependent behavior (Kuchibhotla et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/217958/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/217958/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/217958/forks",
+ "full_name": "OpenSourceBrain/217958",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/217958/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/217958/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/217958/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/217958.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/217958",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/217958/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/217958",
+ "id": 742076309,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/217958/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/217958/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/217958/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/217958/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/217958/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/217958/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/217958/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/217958/milestones{/number}",
+ "mirror_url": null,
+ "name": "217958",
+ "node_id": "R_kgDOLDsvlQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/217958/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/217958/pulls{/number}",
+ "pushed_at": "2019-05-31T03:41:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/217958/releases{/id}",
+ "size": 51,
+ "ssh_url": "git@github.com:OpenSourceBrain/217958.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/217958/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/217958/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/217958/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/217958/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/217958",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/217958/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/217958/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/217958/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/217958",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/218015": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/218015/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/218015/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/218015/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/218015/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/218015.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/218015/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/218015/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/218015/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/218015/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/218015/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/218015/contributors",
+ "created_at": "2024-01-11T18:01:27Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/218015/deployments",
+ "description": "Reverberatory bursts propagation and synchronization in developing cultured NNs (Huang et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/218015/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/218015/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/218015/forks",
+ "full_name": "OpenSourceBrain/218015",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/218015/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/218015/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/218015/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/218015.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/218015",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/218015/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/218015",
+ "id": 742076324,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/218015/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/218015/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/218015/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/218015/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/218015/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/218015/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/218015/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/218015/milestones{/number}",
+ "mirror_url": null,
+ "name": "218015",
+ "node_id": "R_kgDOLDsvpA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/218015/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/218015/pulls{/number}",
+ "pushed_at": "2023-12-23T03:52:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/218015/releases{/id}",
+ "size": 8003,
+ "ssh_url": "git@github.com:OpenSourceBrain/218015.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/218015/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/218015/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/218015/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/218015/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/218015",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/218015/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/218015/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/218015/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/218015",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/218084": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/218084/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/218084/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/218084/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/218084/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/218084.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/218084/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/218084/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/218084/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/218084/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/218084/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/218084/contributors",
+ "created_at": "2024-01-11T18:01:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/218084/deployments",
+ "description": "Supervised learning with predictive coding (Whittington & Bogacz 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/218084/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/218084/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/218084/forks",
+ "full_name": "OpenSourceBrain/218084",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/218084/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/218084/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/218084/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/218084.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/218084",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/218084/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/218084",
+ "id": 742076349,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/218084/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/218084/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/218084/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/218084/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/218084/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/218084/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/218084/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/218084/milestones{/number}",
+ "mirror_url": null,
+ "name": "218084",
+ "node_id": "R_kgDOLDsvvQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/218084/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/218084/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/218084/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/218084.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/218084/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/218084/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/218084/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/218084/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/218084",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/218084/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/218084/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/218084/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/218084",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/218085": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/218085/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/218085/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/218085/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/218085/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/218085.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/218085/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/218085/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/218085/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/218085/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/218085/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/218085/contributors",
+ "created_at": "2024-01-11T18:01:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/218085/deployments",
+ "description": "Hybrid oscillatory interference / continuous attractor NN of grid cell firing (Bush & Burgess 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/218085/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/218085/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/218085/forks",
+ "full_name": "OpenSourceBrain/218085",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/218085/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/218085/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/218085/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/218085.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/218085",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/218085/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/218085",
+ "id": 742076366,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/218085/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/218085/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/218085/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/218085/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/218085/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/218085/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/218085/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/218085/milestones{/number}",
+ "mirror_url": null,
+ "name": "218085",
+ "node_id": "R_kgDOLDsvzg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/218085/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/218085/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/218085/releases{/id}",
+ "size": 3489,
+ "ssh_url": "git@github.com:OpenSourceBrain/218085.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/218085/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/218085/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/218085/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/218085/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/218085",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/218085/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/218085/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/218085/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/218085",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/21984": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/21984/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/21984/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/21984/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/21984/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/21984.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/21984/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/21984/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/21984/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/21984/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/21984/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/21984/contributors",
+ "created_at": "2024-01-10T13:08:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/21984/deployments",
+ "description": "Facilitation by residual calcium (Stockbridge, Hines 1982)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/21984/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/21984/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/21984/forks",
+ "full_name": "OpenSourceBrain/21984",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/21984/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/21984/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/21984/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/21984.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/21984",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/21984/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/21984",
+ "id": 741467887,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/21984/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/21984/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/21984/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/21984/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/21984/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/21984/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/21984/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/21984/milestones{/number}",
+ "mirror_url": null,
+ "name": "21984",
+ "node_id": "R_kgDOLDHm7w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/21984/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/21984/pulls{/number}",
+ "pushed_at": "2019-05-31T03:35:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/21984/releases{/id}",
+ "size": 1,
+ "ssh_url": "git@github.com:OpenSourceBrain/21984.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/21984/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/21984/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/21984/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/21984/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/21984",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/21984/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/21984/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/21984/git/trees{/sha}",
+ "updated_at": "2024-01-10T13:08:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/21984",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/22203": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/22203/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/22203/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/22203/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/22203/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/22203.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/22203/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/22203/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/22203/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/22203/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/22203/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/22203/contributors",
+ "created_at": "2024-01-10T13:15:50Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/22203/deployments",
+ "description": "Correcting space clamp in dendrites (Schaefer et al. 2003 and 2007)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/22203/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/22203/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/22203/forks",
+ "full_name": "OpenSourceBrain/22203",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/22203/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/22203/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/22203/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/22203.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/22203",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/22203/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/22203",
+ "id": 741471079,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/22203/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/22203/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/22203/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/22203/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/22203/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/22203/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/22203/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/22203/milestones{/number}",
+ "mirror_url": null,
+ "name": "22203",
+ "node_id": "R_kgDOLDHzZw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/22203/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/22203/pulls{/number}",
+ "pushed_at": "2019-05-31T02:32:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/22203/releases{/id}",
+ "size": 157,
+ "ssh_url": "git@github.com:OpenSourceBrain/22203.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/22203/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/22203/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/22203/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/22203/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/22203",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/22203/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/22203/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/22203/git/trees{/sha}",
+ "updated_at": "2024-01-10T13:15:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/22203",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/222321": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/222321/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/222321/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/222321/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/222321/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/222321.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/222321/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/222321/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/222321/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/222321/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/222321/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/222321/contributors",
+ "created_at": "2024-01-11T18:01:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/222321/deployments",
+ "description": "Changes of ionic concentrations during seizure transitions (Gentiletti et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/222321/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/222321/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/222321/forks",
+ "full_name": "OpenSourceBrain/222321",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/222321/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/222321/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/222321/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/222321.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/222321",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/222321/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/222321",
+ "id": 742076381,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/222321/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/222321/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/222321/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/222321/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/222321/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/222321/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/222321/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/222321/milestones{/number}",
+ "mirror_url": null,
+ "name": "222321",
+ "node_id": "R_kgDOLDsv3Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/222321/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/222321/pulls{/number}",
+ "pushed_at": "2019-05-31T03:20:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/222321/releases{/id}",
+ "size": 45,
+ "ssh_url": "git@github.com:OpenSourceBrain/222321.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/222321/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/222321/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/222321/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/222321/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/222321",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/222321/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/222321/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/222321/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/222321",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/222359": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/222359/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/222359/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/222359/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/222359/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/222359.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/222359/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/222359/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/222359/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/222359/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/222359/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/222359/contributors",
+ "created_at": "2024-01-11T18:01:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/222359/deployments",
+ "description": "Synaptic integration by MEC neurons (Justus et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/222359/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/222359/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/222359/forks",
+ "full_name": "OpenSourceBrain/222359",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/222359/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/222359/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/222359/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/222359.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/222359",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/222359/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/222359",
+ "id": 742076397,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/222359/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/222359/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/222359/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/222359/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/222359/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/222359/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/222359/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/222359/milestones{/number}",
+ "mirror_url": null,
+ "name": "222359",
+ "node_id": "R_kgDOLDsv7Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/222359/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/222359/pulls{/number}",
+ "pushed_at": "2019-05-31T04:31:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/222359/releases{/id}",
+ "size": 209,
+ "ssh_url": "git@github.com:OpenSourceBrain/222359.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/222359/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/222359/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/222359/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/222359/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/222359",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/222359/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/222359/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/222359/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/222359",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/222715": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/222715/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/222715/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/222715/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/222715/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/222715.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/222715/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/222715/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/222715/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/222715/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/222715/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/222715/contributors",
+ "created_at": "2024-01-11T18:01:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/222715/deployments",
+ "description": "Model of a BDNF feedback loop (Zhang et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/222715/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/222715/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/222715/forks",
+ "full_name": "OpenSourceBrain/222715",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/222715/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/222715/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/222715/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/222715.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/222715",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/222715/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/222715",
+ "id": 742076411,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/222715/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/222715/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/222715/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/222715/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/222715/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/222715/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/222715/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/222715/milestones{/number}",
+ "mirror_url": null,
+ "name": "222715",
+ "node_id": "R_kgDOLDsv-w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/222715/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/222715/pulls{/number}",
+ "pushed_at": "2022-02-17T06:14:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/222715/releases{/id}",
+ "size": 37,
+ "ssh_url": "git@github.com:OpenSourceBrain/222715.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/222715/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/222715/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/222715/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/222715/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/222715",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/222715/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/222715/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/222715/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/222715",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/222716": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/222716/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/222716/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/222716/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/222716/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/222716.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/222716/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/222716/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/222716/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/222716/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/222716/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/222716/contributors",
+ "created_at": "2024-01-11T18:01:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/222716/deployments",
+ "description": "Hippocampus CA1 pyramidal model with Na channel exhibiting slow inactivation (Menon et al. 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/222716/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/222716/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/222716/forks",
+ "full_name": "OpenSourceBrain/222716",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/222716/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/222716/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/222716/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/222716.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/222716",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/222716/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/222716",
+ "id": 742076424,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/222716/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/222716/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/222716/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/222716/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/222716/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/222716/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/222716/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/222716/milestones{/number}",
+ "mirror_url": null,
+ "name": "222716",
+ "node_id": "R_kgDOLDswCA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/222716/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/222716/pulls{/number}",
+ "pushed_at": "2018-04-23T19:02:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/222716/releases{/id}",
+ "size": 129,
+ "ssh_url": "git@github.com:OpenSourceBrain/222716.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/222716/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/222716/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/222716/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/222716/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/222716",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/222716/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/222716/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/222716/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/222716",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/222725": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/222725/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/222725/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/222725/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/222725/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/222725.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/222725/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/222725/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/222725/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/222725/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/222725/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/222725/contributors",
+ "created_at": "2024-01-11T18:01:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/222725/deployments",
+ "description": "Brain networks simulators - a comparative study (Tikidji-Hamburyan et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/222725/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/222725/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/222725/forks",
+ "full_name": "OpenSourceBrain/222725",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/222725/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/222725/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/222725/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/222725.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/222725",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/222725/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/222725",
+ "id": 742076434,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/222725/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/222725/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/222725/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/222725/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/222725/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/222725/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/222725/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/222725/milestones{/number}",
+ "mirror_url": null,
+ "name": "222725",
+ "node_id": "R_kgDOLDswEg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/222725/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/222725/pulls{/number}",
+ "pushed_at": "2021-04-26T20:45:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/222725/releases{/id}",
+ "size": 6951,
+ "ssh_url": "git@github.com:OpenSourceBrain/222725.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/222725/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/222725/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/222725/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/222725/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/222725",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/222725/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/222725/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/222725/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/222725",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/222726": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/222726/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/222726/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/222726/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/222726/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/222726.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/222726/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/222726/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/222726/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/222726/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/222726/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/222726/contributors",
+ "created_at": "2024-01-11T18:01:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/222726/deployments",
+ "description": "Distance-dependent synaptic strength in CA1 pyramidal neurons (Menon et al. 2013)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/222726/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/222726/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/222726/forks",
+ "full_name": "OpenSourceBrain/222726",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/222726/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/222726/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/222726/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/222726.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/222726",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/222726/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/222726",
+ "id": 742076447,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/222726/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/222726/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/222726/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/222726/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/222726/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/222726/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/222726/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/222726/milestones{/number}",
+ "mirror_url": null,
+ "name": "222726",
+ "node_id": "R_kgDOLDswHw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/222726/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/222726/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/222726/releases{/id}",
+ "size": 64,
+ "ssh_url": "git@github.com:OpenSourceBrain/222726.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/222726/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/222726/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/222726/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/222726/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/222726",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/222726/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/222726/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/222726/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/222726",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/222732": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/222732/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/222732/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/222732/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/222732/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/222732.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/222732/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/222732/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/222732/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/222732/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/222732/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/222732/contributors",
+ "created_at": "2024-01-11T18:01:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/222732/deployments",
+ "description": "A model of cerebellar LTD including RKIP inactivation of Raf and MEK (Hepburn et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/222732/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/222732/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/222732/forks",
+ "full_name": "OpenSourceBrain/222732",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/222732/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/222732/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/222732/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/222732.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/222732",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/222732/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/222732",
+ "id": 742076457,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/222732/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/222732/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/222732/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/222732/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/222732/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/222732/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/222732/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/222732/milestones{/number}",
+ "mirror_url": null,
+ "name": "222732",
+ "node_id": "R_kgDOLDswKQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/222732/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/222732/pulls{/number}",
+ "pushed_at": "2019-05-31T03:17:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/222732/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/222732.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/222732/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/222732/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/222732/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/222732/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/222732",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/222732/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/222732/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/222732/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/222732",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/222932": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/222932/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/222932/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/222932/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/222932/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/222932.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/222932/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/222932/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/222932/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/222932/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/222932/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/222932/contributors",
+ "created_at": "2024-01-11T18:01:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/222932/deployments",
+ "description": "A simple model of neuromodulatory state-dependent synaptic plasticity (Pedrosa and Clopath, 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/222932/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/222932/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/222932/forks",
+ "full_name": "OpenSourceBrain/222932",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/222932/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/222932/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/222932/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/222932.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/222932",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/222932/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/222932",
+ "id": 742076468,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/222932/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/222932/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/222932/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/222932/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/222932/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/222932/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/222932/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/222932/milestones{/number}",
+ "mirror_url": null,
+ "name": "222932",
+ "node_id": "R_kgDOLDswNA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/222932/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/222932/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/222932/releases{/id}",
+ "size": 2311,
+ "ssh_url": "git@github.com:OpenSourceBrain/222932.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/222932/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/222932/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/222932/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/222932/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/222932",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/222932/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/222932/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/222932/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/222932",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223031": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223031/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223031/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223031/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223031/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223031.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223031/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223031/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223031/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223031/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223031/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223031/contributors",
+ "created_at": "2024-01-11T18:01:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223031/deployments",
+ "description": "Interneuron Specific 3 Interneuron Model (Guet-McCreight et al, 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223031/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223031/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223031/forks",
+ "full_name": "OpenSourceBrain/223031",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223031/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223031/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223031/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223031.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/223031",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223031/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223031",
+ "id": 742076482,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223031/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223031/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223031/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223031/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223031/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223031/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223031/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223031/milestones{/number}",
+ "mirror_url": null,
+ "name": "223031",
+ "node_id": "R_kgDOLDswQg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223031/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223031/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223031/releases{/id}",
+ "size": 117,
+ "ssh_url": "git@github.com:OpenSourceBrain/223031.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223031/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223031/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223031/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223031/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223031",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223031/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223031/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223031/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:50Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223031",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223144": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223144/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223144/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223144/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223144/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223144.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223144/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223144/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223144/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223144/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223144/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223144/contributors",
+ "created_at": "2024-01-11T18:01:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223144/deployments",
+ "description": "Ca2+ oscillations in single astrocytes (Lavrentovich and Hemkin 2008) (python) (Manninen et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223144/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223144/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223144/forks",
+ "full_name": "OpenSourceBrain/223144",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223144/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223144/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223144/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223144.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/223144",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223144/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223144",
+ "id": 742076491,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223144/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223144/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223144/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223144/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223144/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223144/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223144/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223144/milestones{/number}",
+ "mirror_url": null,
+ "name": "223144",
+ "node_id": "R_kgDOLDswSw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223144/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223144/pulls{/number}",
+ "pushed_at": "2019-05-31T03:35:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223144/releases{/id}",
+ "size": 130,
+ "ssh_url": "git@github.com:OpenSourceBrain/223144.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223144/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223144/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223144/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223144/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223144",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223144/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223144/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223144/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223144",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223269": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223269/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223269/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223269/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223269/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223269.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223269/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223269/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223269/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223269/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223269/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223269/contributors",
+ "created_at": "2024-01-11T18:01:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223269/deployments",
+ "description": "Glutamate-evoked Ca2+ oscillations in single astrocytes (De Pitta et al. 2009) (Manninen et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223269/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223269/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223269/forks",
+ "full_name": "OpenSourceBrain/223269",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223269/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223269/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223269/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223269.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/223269",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223269/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223269",
+ "id": 742076506,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223269/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223269/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223269/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223269/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223269/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223269/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223269/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223269/milestones{/number}",
+ "mirror_url": null,
+ "name": "223269",
+ "node_id": "R_kgDOLDswWg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223269/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223269/pulls{/number}",
+ "pushed_at": "2019-05-31T05:01:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223269/releases{/id}",
+ "size": 552,
+ "ssh_url": "git@github.com:OpenSourceBrain/223269.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223269/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223269/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223269/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223269/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223269",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223269/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223269/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223269/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223269",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223273": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223273/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223273/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223273/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223273/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223273.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223273/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223273/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223273/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223273/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223273/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223273/contributors",
+ "created_at": "2024-01-11T18:01:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223273/deployments",
+ "description": "Spontaneous calcium oscillations in single astrocytes (Riera et al. 2011) (Manninen et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223273/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223273/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223273/forks",
+ "full_name": "OpenSourceBrain/223273",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223273/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223273/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223273/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223273.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/223273",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223273/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223273",
+ "id": 742076516,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223273/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223273/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223273/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223273/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223273/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223273/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223273/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223273/milestones{/number}",
+ "mirror_url": null,
+ "name": "223273",
+ "node_id": "R_kgDOLDswZA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223273/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223273/pulls{/number}",
+ "pushed_at": "2019-05-31T02:08:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223273/releases{/id}",
+ "size": 256,
+ "ssh_url": "git@github.com:OpenSourceBrain/223273.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223273/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223273/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223273/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223273/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223273",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223273/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223273/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223273/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223273",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223274": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223274/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223274/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223274/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223274/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223274.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223274/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223274/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223274/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223274/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223274/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223274/contributors",
+ "created_at": "2024-01-11T18:01:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223274/deployments",
+ "description": "Glutamate-evoked Ca2+ oscillations in single astrocytes (Modified from Dupont et al. 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223274/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223274/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223274/forks",
+ "full_name": "OpenSourceBrain/223274",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223274/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223274/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223274/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223274.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/223274",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223274/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223274",
+ "id": 742076538,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223274/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223274/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223274/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223274/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223274/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223274/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223274/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223274/milestones{/number}",
+ "mirror_url": null,
+ "name": "223274",
+ "node_id": "R_kgDOLDsweg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223274/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223274/pulls{/number}",
+ "pushed_at": "2019-05-31T02:46:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223274/releases{/id}",
+ "size": 916,
+ "ssh_url": "git@github.com:OpenSourceBrain/223274.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223274/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223274/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223274/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223274/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223274",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223274/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223274/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223274/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:01:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223274",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223648": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223648/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223648/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223648/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223648/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223648.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223648/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223648/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223648/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223648/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223648/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223648/contributors",
+ "created_at": "2024-01-11T18:02:00Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223648/deployments",
+ "description": "Reproducibility and comparability of models for astrocyte Ca2+ excitability (Manninen et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223648/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223648/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223648/forks",
+ "full_name": "OpenSourceBrain/223648",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223648/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223648/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223648/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223648.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/223648",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223648/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223648",
+ "id": 742076558,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223648/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223648/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223648/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223648/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223648/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223648/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223648/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223648/milestones{/number}",
+ "mirror_url": null,
+ "name": "223648",
+ "node_id": "R_kgDOLDswjg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223648/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223648/pulls{/number}",
+ "pushed_at": "2023-12-23T03:52:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223648/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/223648.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223648/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223648/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223648/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223648/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223648",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223648/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223648/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223648/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:02:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223648",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223649": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223649/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223649/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223649/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223649/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223649.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223649/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223649/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223649/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223649/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223649/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223649/contributors",
+ "created_at": "2024-01-11T18:02:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223649/deployments",
+ "description": "Distinct current modules shape cellular dynamics in model neurons (Alturki et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223649/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223649/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223649/forks",
+ "full_name": "OpenSourceBrain/223649",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223649/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223649/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223649/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223649.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/223649",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223649/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223649",
+ "id": 742076573,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223649/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223649/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223649/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223649/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223649/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223649/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223649/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223649/milestones{/number}",
+ "mirror_url": null,
+ "name": "223649",
+ "node_id": "R_kgDOLDswnQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223649/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223649/pulls{/number}",
+ "pushed_at": "2019-05-31T02:37:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223649/releases{/id}",
+ "size": 293,
+ "ssh_url": "git@github.com:OpenSourceBrain/223649.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223649/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223649/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223649/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223649/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223649",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223649/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223649/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223649/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:02:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223649",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223890": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223890/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223890/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223890/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223890/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223890.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223890/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223890/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223890/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223890/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223890/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223890/contributors",
+ "created_at": "2024-01-11T18:02:04Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223890/deployments",
+ "description": "Species-specific wiring for direction selectivity in the mammalian retina (Ding et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223890/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223890/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223890/forks",
+ "full_name": "OpenSourceBrain/223890",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223890/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223890/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223890/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223890.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/223890",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223890/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223890",
+ "id": 742076591,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223890/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223890/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223890/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223890/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223890/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223890/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223890/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223890/milestones{/number}",
+ "mirror_url": null,
+ "name": "223890",
+ "node_id": "R_kgDOLDswrw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223890/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223890/pulls{/number}",
+ "pushed_at": "2023-12-23T03:53:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223890/releases{/id}",
+ "size": 6877,
+ "ssh_url": "git@github.com:OpenSourceBrain/223890.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223890/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223890/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223890/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223890/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223890",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223890/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223890/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223890/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:02:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223890",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223891": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223891/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223891/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223891/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223891/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223891.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223891/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223891/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223891/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223891/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223891/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223891/contributors",
+ "created_at": "2024-01-11T18:02:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223891/deployments",
+ "description": "Rat LGN Thalamocortical Neuron (Connelly et al 2015, 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223891/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223891/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223891/forks",
+ "full_name": "OpenSourceBrain/223891",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223891/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223891/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223891/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223891.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/223891",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223891/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223891",
+ "id": 742076607,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223891/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223891/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223891/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223891/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223891/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223891/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223891/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223891/milestones{/number}",
+ "mirror_url": null,
+ "name": "223891",
+ "node_id": "R_kgDOLDswvw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223891/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223891/pulls{/number}",
+ "pushed_at": "2020-10-07T16:42:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223891/releases{/id}",
+ "size": 103,
+ "ssh_url": "git@github.com:OpenSourceBrain/223891.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223891/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223891/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223891/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223891/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223891",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223891/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223891/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223891/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:02:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223891",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223955": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223955/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223955/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223955/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223955/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223955.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223955/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223955/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223955/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223955/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223955/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223955/contributors",
+ "created_at": "2024-01-11T18:02:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223955/deployments",
+ "description": "Pyramidal neurons with mutated SCN2A gene (Nav1.2) (Ben-Shalom et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223955/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223955/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223955/forks",
+ "full_name": "OpenSourceBrain/223955",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223955/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223955/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223955/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223955.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/223955",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223955/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223955",
+ "id": 742076617,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223955/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223955/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223955/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223955/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223955/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223955/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223955/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223955/milestones{/number}",
+ "mirror_url": null,
+ "name": "223955",
+ "node_id": "R_kgDOLDswyQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223955/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223955/pulls{/number}",
+ "pushed_at": "2018-04-23T19:03:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223955/releases{/id}",
+ "size": 146,
+ "ssh_url": "git@github.com:OpenSourceBrain/223955.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223955/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223955/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223955/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223955/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223955",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223955/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223955/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223955/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:02:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223955",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/223962": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/223962/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/223962/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/223962/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/223962/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/223962.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/223962/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/223962/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/223962/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/223962/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/223962/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/223962/contributors",
+ "created_at": "2024-01-11T18:02:10Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/223962/deployments",
+ "description": "Model of CA1 activity during working memory task (Spera et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/223962/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/223962/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/223962/forks",
+ "full_name": "OpenSourceBrain/223962",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/223962/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/223962/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/223962/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/223962.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/223962",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/223962/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/223962",
+ "id": 742076632,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/223962/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/223962/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/223962/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/223962/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/223962/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/223962/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/223962/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/223962/milestones{/number}",
+ "mirror_url": null,
+ "name": "223962",
+ "node_id": "R_kgDOLDsw2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/223962/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/223962/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/223962/releases{/id}",
+ "size": 32,
+ "ssh_url": "git@github.com:OpenSourceBrain/223962.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/223962/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/223962/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/223962/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/223962/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/223962",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/223962/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/223962/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/223962/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:02:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/223962",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/224843": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/224843/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/224843/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/224843/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/224843/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/224843.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/224843/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/224843/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/224843/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/224843/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/224843/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/224843/contributors",
+ "created_at": "2024-01-11T18:02:12Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/224843/deployments",
+ "description": "Phase-locking analysis with transcranial magneto-acoustical stimulation (Yuan et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/224843/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/224843/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/224843/forks",
+ "full_name": "OpenSourceBrain/224843",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/224843/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/224843/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/224843/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/224843.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/224843",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/224843/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/224843",
+ "id": 742076644,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/224843/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/224843/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/224843/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/224843/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/224843/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/224843/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/224843/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/224843/milestones{/number}",
+ "mirror_url": null,
+ "name": "224843",
+ "node_id": "R_kgDOLDsw5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/224843/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/224843/pulls{/number}",
+ "pushed_at": "2023-12-23T03:53:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/224843/releases{/id}",
+ "size": 153,
+ "ssh_url": "git@github.com:OpenSourceBrain/224843.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/224843/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/224843/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/224843/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/224843/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/224843",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/224843/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/224843/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/224843/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:02:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/224843",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/224923": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/224923/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/224923/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/224923/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/224923/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/224923.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/224923/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/224923/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/224923/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/224923/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/224923/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/224923/contributors",
+ "created_at": "2024-01-11T18:02:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/224923/deployments",
+ "description": "Impedance spectrum in cortical tissue: implications for LFP signal propagation (Miceli et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/224923/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/224923/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/224923/forks",
+ "full_name": "OpenSourceBrain/224923",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/224923/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/224923/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/224923/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/224923.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/224923",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/224923/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/224923",
+ "id": 742076656,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/224923/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/224923/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/224923/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/224923/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/224923/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/224923/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/224923/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/224923/milestones{/number}",
+ "mirror_url": null,
+ "name": "224923",
+ "node_id": "R_kgDOLDsw8A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/224923/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/224923/pulls{/number}",
+ "pushed_at": "2019-05-31T04:58:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/224923/releases{/id}",
+ "size": 386,
+ "ssh_url": "git@github.com:OpenSourceBrain/224923.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/224923/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/224923/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/224923/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/224923/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/224923",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/224923/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/224923/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/224923/git/trees{/sha}",
+ "updated_at": "2024-01-11T18:02:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/224923",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/224998": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/224998/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/224998/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/224998/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/224998/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/224998.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/224998/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/224998/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/224998/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/224998/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/224998/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/224998/contributors",
+ "created_at": "2024-01-11T19:21:08Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/224998/deployments",
+ "description": "Sloppy morphological tuning in identified neurons of the crustacean STG (Otopalik et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/224998/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/224998/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/224998/forks",
+ "full_name": "OpenSourceBrain/224998",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/224998/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/224998/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/224998/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/224998.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/224998",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/224998/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/224998",
+ "id": 742107238,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/224998/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/224998/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/224998/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/224998/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/224998/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/224998/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/224998/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/224998/milestones{/number}",
+ "mirror_url": null,
+ "name": "224998",
+ "node_id": "R_kgDOLDuoZg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/224998/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/224998/pulls{/number}",
+ "pushed_at": "2023-12-23T03:53:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/224998/releases{/id}",
+ "size": 8435,
+ "ssh_url": "git@github.com:OpenSourceBrain/224998.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/224998/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/224998/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/224998/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/224998/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/224998",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/224998/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/224998/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/224998/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/224998",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225075": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225075/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225075/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225075/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225075/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225075.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225075/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225075/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225075/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225075/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225075/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225075/contributors",
+ "created_at": "2024-01-11T19:21:10Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225075/deployments",
+ "description": "A model of optimal learning with redundant synaptic connections (Hiratani & Fukai 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225075/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225075/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225075/forks",
+ "full_name": "OpenSourceBrain/225075",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225075/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225075/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225075/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225075.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225075/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225075",
+ "id": 742107249,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225075/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225075/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225075/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225075/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225075/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225075/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225075/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225075/milestones{/number}",
+ "mirror_url": null,
+ "name": "225075",
+ "node_id": "R_kgDOLDuocQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225075/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225075/pulls{/number}",
+ "pushed_at": "2018-07-30T15:22:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225075/releases{/id}",
+ "size": 145,
+ "ssh_url": "git@github.com:OpenSourceBrain/225075.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225075/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225075/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225075/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225075/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225075",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225075/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225075/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225075/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225075",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225080": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225080/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225080/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225080/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225080/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225080.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225080/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225080/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225080/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225080/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225080/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225080/contributors",
+ "created_at": "2024-01-11T19:21:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225080/deployments",
+ "description": "CA1 pyr cell: Inhibitory modulation of spatial selectivity+phase precession (Grienberger et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225080/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225080/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225080/forks",
+ "full_name": "OpenSourceBrain/225080",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225080/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225080/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225080/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225080.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/225080",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225080/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225080",
+ "id": 742107272,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225080/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225080/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225080/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225080/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225080/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225080/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225080/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225080/milestones{/number}",
+ "mirror_url": null,
+ "name": "225080",
+ "node_id": "R_kgDOLDuoiA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225080/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225080/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225080/releases{/id}",
+ "size": 760,
+ "ssh_url": "git@github.com:OpenSourceBrain/225080.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225080/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225080/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225080/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225080/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225080",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225080/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225080/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225080/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225080",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225086": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225086/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225086/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225086/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225086/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225086.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225086/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225086/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225086/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225086/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225086/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225086/contributors",
+ "created_at": "2024-01-11T19:21:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225086/deployments",
+ "description": "Na+ Signals in olfactory bulb neurons (granule cell model) (Ona-Jodar et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225086/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225086/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225086/forks",
+ "full_name": "OpenSourceBrain/225086",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225086/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225086/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225086/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225086.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/225086",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225086/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225086",
+ "id": 742107288,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225086/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225086/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225086/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225086/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225086/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225086/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225086/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225086/milestones{/number}",
+ "mirror_url": null,
+ "name": "225086",
+ "node_id": "R_kgDOLDuomA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225086/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225086/pulls{/number}",
+ "pushed_at": "2019-05-31T03:36:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225086/releases{/id}",
+ "size": 168,
+ "ssh_url": "git@github.com:OpenSourceBrain/225086.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225086/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225086/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225086/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225086/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225086",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225086/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225086/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225086/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225086",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225089": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225089/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225089/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225089/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225089/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225089.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225089/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225089/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225089/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225089/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225089/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225089/contributors",
+ "created_at": "2024-01-11T19:21:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225089/deployments",
+ "description": "Parallel STEPS: Large scale stochastic spatial reaction-diffusion simulat. (Chen & De Schutter 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225089/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225089/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225089/forks",
+ "full_name": "OpenSourceBrain/225089",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225089/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225089/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225089/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225089.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/225089",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225089/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225089",
+ "id": 742107297,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225089/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225089/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225089/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225089/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225089/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225089/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225089/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225089/milestones{/number}",
+ "mirror_url": null,
+ "name": "225089",
+ "node_id": "R_kgDOLDuooQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225089/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225089/pulls{/number}",
+ "pushed_at": "2019-05-31T03:24:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225089/releases{/id}",
+ "size": 66029,
+ "ssh_url": "git@github.com:OpenSourceBrain/225089.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225089/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225089/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225089/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225089/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225089",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225089/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225089/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225089/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225089",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225095": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225095/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225095/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225095/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225095/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225095.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225095/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225095/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225095/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225095/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225095/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225095/contributors",
+ "created_at": "2024-01-11T19:21:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225095/deployments",
+ "description": "COREM: configurable retina simulator (Mart\u00ednez-Ca\u00f1ada et al., 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225095/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225095/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225095/forks",
+ "full_name": "OpenSourceBrain/225095",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225095/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225095/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225095/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225095.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/225095",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225095/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225095",
+ "id": 742107308,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225095/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225095/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225095/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225095/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225095/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225095/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225095/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225095/milestones{/number}",
+ "mirror_url": null,
+ "name": "225095",
+ "node_id": "R_kgDOLDuorA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225095/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225095/pulls{/number}",
+ "pushed_at": "2018-04-23T19:04:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225095/releases{/id}",
+ "size": 3413,
+ "ssh_url": "git@github.com:OpenSourceBrain/225095.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225095/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225095/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225095/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225095/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225095",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225095/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225095/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225095/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225095",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225301": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225301/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225301/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225301/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225301/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225301.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225301/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225301/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225301/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225301/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225301/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225301/contributors",
+ "created_at": "2024-01-11T19:21:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225301/deployments",
+ "description": "A spiking NN for amplification of feature-selectivity with specific connectivity (Sadeh et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225301/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225301/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225301/forks",
+ "full_name": "OpenSourceBrain/225301",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225301/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225301/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225301/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225301.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/225301",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225301/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225301",
+ "id": 742107325,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225301/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225301/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225301/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225301/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225301/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225301/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225301/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225301/milestones{/number}",
+ "mirror_url": null,
+ "name": "225301",
+ "node_id": "R_kgDOLDuovQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225301/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225301/pulls{/number}",
+ "pushed_at": "2018-04-23T19:04:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225301/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/225301.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225301/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225301/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225301/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225301/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225301",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225301/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225301/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225301/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225301",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225311": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225311/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225311/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225311/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225311/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225311.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225311/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225311/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225311/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225311/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225311/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225311/contributors",
+ "created_at": "2024-01-11T19:21:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225311/deployments",
+ "description": "Effect of ionic diffusion on extracellular potentials (Halnes et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225311/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225311/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225311/forks",
+ "full_name": "OpenSourceBrain/225311",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225311/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225311/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225311/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225311.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/225311",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225311/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225311",
+ "id": 742107338,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225311/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225311/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225311/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225311/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225311/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225311/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225311/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225311/milestones{/number}",
+ "mirror_url": null,
+ "name": "225311",
+ "node_id": "R_kgDOLDuoyg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225311/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225311/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225311/releases{/id}",
+ "size": 422,
+ "ssh_url": "git@github.com:OpenSourceBrain/225311.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225311/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225311/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225311/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225311/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225311",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225311/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225311/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225311/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225311",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225428": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225428/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225428/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225428/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225428/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225428.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225428/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225428/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225428/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225428/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225428/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225428/contributors",
+ "created_at": "2024-01-11T19:21:24Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225428/deployments",
+ "description": "A comparison of mathematical models of mood in bipolar disorder (Cochran et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225428/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225428/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225428/forks",
+ "full_name": "OpenSourceBrain/225428",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225428/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225428/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225428/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225428.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/225428",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225428/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225428",
+ "id": 742107352,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225428/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225428/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225428/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225428/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225428/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225428/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225428/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225428/milestones{/number}",
+ "mirror_url": null,
+ "name": "225428",
+ "node_id": "R_kgDOLDuo2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225428/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225428/pulls{/number}",
+ "pushed_at": "2023-12-23T03:54:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225428/releases{/id}",
+ "size": 769,
+ "ssh_url": "git@github.com:OpenSourceBrain/225428.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225428/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225428/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225428/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225428/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225428",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225428/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225428/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225428/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225428",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225552": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225552/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225552/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225552/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225552/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225552.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225552/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225552/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225552/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225552/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225552/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225552/contributors",
+ "created_at": "2024-01-11T19:21:26Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225552/deployments",
+ "description": "Neuron-based control mechanisms for a robotic arm and hand (Singh et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225552/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225552/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225552/forks",
+ "full_name": "OpenSourceBrain/225552",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225552/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225552/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225552/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225552.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/225552",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225552/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225552",
+ "id": 742107371,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225552/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225552/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225552/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225552/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225552/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225552/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225552/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225552/milestones{/number}",
+ "mirror_url": null,
+ "name": "225552",
+ "node_id": "R_kgDOLDuo6w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225552/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225552/pulls{/number}",
+ "pushed_at": "2023-12-23T03:54:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225552/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/225552.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225552/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225552/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225552/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225552/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225552",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225552/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225552/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225552/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225552",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225583": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225583/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225583/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225583/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225583/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225583.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225583/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225583/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225583/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225583/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225583/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225583/contributors",
+ "created_at": "2024-01-11T19:21:28Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225583/deployments",
+ "description": "Collection of simulated data from a thalamocortical network model (Glabska, Chintaluri, Wojcik 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225583/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225583/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225583/forks",
+ "full_name": "OpenSourceBrain/225583",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225583/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225583/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225583/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225583.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/225583",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225583/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225583",
+ "id": 742107386,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225583/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225583/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225583/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225583/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225583/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225583/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225583/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225583/milestones{/number}",
+ "mirror_url": null,
+ "name": "225583",
+ "node_id": "R_kgDOLDuo-g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225583/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225583/pulls{/number}",
+ "pushed_at": "2023-12-23T03:54:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225583/releases{/id}",
+ "size": 328,
+ "ssh_url": "git@github.com:OpenSourceBrain/225583.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225583/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225583/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225583/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225583/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225583",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225583/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225583/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225583/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225583",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225818": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225818/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225818/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225818/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225818/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225818.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225818/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225818/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225818/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225818/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225818/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225818/contributors",
+ "created_at": "2024-01-11T19:21:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225818/deployments",
+ "description": "Reproducing infra-slow oscillations with dopaminergic modulation (Kobayashi et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225818/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225818/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225818/forks",
+ "full_name": "OpenSourceBrain/225818",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225818/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225818/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225818/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225818.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/225818",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225818/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225818",
+ "id": 742107392,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225818/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225818/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225818/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225818/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225818/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225818/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225818/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225818/milestones{/number}",
+ "mirror_url": null,
+ "name": "225818",
+ "node_id": "R_kgDOLDupAA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225818/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225818/pulls{/number}",
+ "pushed_at": "2019-05-31T02:18:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225818/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/225818.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225818/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225818/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225818/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225818/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225818",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225818/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225818/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225818/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225818",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225904": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225904/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225904/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225904/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225904/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225904.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225904/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225904/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225904/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225904/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225904/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225904/contributors",
+ "created_at": "2024-01-11T19:21:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225904/deployments",
+ "description": "High entrainment constrains synaptic depression in a globular bushy cell (Rudnicki & Hemmert 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225904/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225904/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225904/forks",
+ "full_name": "OpenSourceBrain/225904",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225904/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225904/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225904/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225904.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/225904",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225904/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225904",
+ "id": 742107401,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225904/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225904/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225904/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225904/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225904/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225904/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225904/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225904/milestones{/number}",
+ "mirror_url": null,
+ "name": "225904",
+ "node_id": "R_kgDOLDupCQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225904/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225904/pulls{/number}",
+ "pushed_at": "2019-05-31T03:36:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225904/releases{/id}",
+ "size": 113,
+ "ssh_url": "git@github.com:OpenSourceBrain/225904.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225904/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225904/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225904/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225904/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225904",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225904/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225904/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225904/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225904",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/225906": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/225906/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/225906/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/225906/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/225906/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/225906.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/225906/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/225906/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/225906/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/225906/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/225906/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/225906/contributors",
+ "created_at": "2024-01-11T19:21:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/225906/deployments",
+ "description": "CRH modulates excitatory transmission and network physiology in hippocampus (Gunn et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/225906/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/225906/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/225906/forks",
+ "full_name": "OpenSourceBrain/225906",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/225906/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/225906/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/225906/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/225906.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/225906",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/225906/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/225906",
+ "id": 742107413,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/225906/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/225906/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/225906/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/225906/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/225906/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/225906/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/225906/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/225906/milestones{/number}",
+ "mirror_url": null,
+ "name": "225906",
+ "node_id": "R_kgDOLDupFQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/225906/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/225906/pulls{/number}",
+ "pushed_at": "2019-05-31T03:30:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/225906/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/225906.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/225906/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/225906/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/225906/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/225906/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/225906",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/225906/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/225906/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/225906/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/225906",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226010": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226010/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226010/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226010/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226010/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226010.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226010/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226010/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226010/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226010/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226010/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226010/contributors",
+ "created_at": "2024-01-11T19:21:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226010/deployments",
+ "description": "Dopamine neuron of the vent. periaqu. gray and dors. raphe nucleus (vlPAG/DRN) (Dougalis et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226010/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226010/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226010/forks",
+ "full_name": "OpenSourceBrain/226010",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226010/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226010/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226010/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226010.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226010",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226010/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226010",
+ "id": 742107426,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226010/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226010/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226010/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226010/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226010/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226010/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226010/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226010/milestones{/number}",
+ "mirror_url": null,
+ "name": "226010",
+ "node_id": "R_kgDOLDupIg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226010/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226010/pulls{/number}",
+ "pushed_at": "2019-05-31T03:42:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226010/releases{/id}",
+ "size": 1752,
+ "ssh_url": "git@github.com:OpenSourceBrain/226010.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226010/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226010/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226010/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226010/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226010",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226010/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226010/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226010/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226010",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226074": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226074/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226074/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226074/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226074/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226074.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226074/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226074/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226074/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226074/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226074/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226074/contributors",
+ "created_at": "2024-01-11T19:21:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226074/deployments",
+ "description": "Mechanisms underlying different onset patterns of focal seizures (Wang Y et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226074/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226074/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226074/forks",
+ "full_name": "OpenSourceBrain/226074",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226074/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226074/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226074/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226074.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226074",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226074/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226074",
+ "id": 742107437,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226074/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226074/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226074/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226074/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226074/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226074/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226074/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226074/milestones{/number}",
+ "mirror_url": null,
+ "name": "226074",
+ "node_id": "R_kgDOLDupLQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226074/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226074/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226074/releases{/id}",
+ "size": 287,
+ "ssh_url": "git@github.com:OpenSourceBrain/226074.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226074/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226074/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226074/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226074/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226074",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226074/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226074/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226074/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226074",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226254": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226254/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226254/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226254/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226254/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226254.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226254/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226254/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226254/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226254/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226254/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226254/contributors",
+ "created_at": "2024-01-11T19:21:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226254/deployments",
+ "description": "VTA dopamine neuron (Tarfa, Evans, and Khaliq 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226254/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226254/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226254/forks",
+ "full_name": "OpenSourceBrain/226254",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226254/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226254/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226254/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226254.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226254",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226254/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226254",
+ "id": 742107461,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226254/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226254/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226254/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226254/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226254/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226254/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226254/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226254/milestones{/number}",
+ "mirror_url": null,
+ "name": "226254",
+ "node_id": "R_kgDOLDupRQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226254/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226254/pulls{/number}",
+ "pushed_at": "2019-05-31T02:33:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226254/releases{/id}",
+ "size": 19,
+ "ssh_url": "git@github.com:OpenSourceBrain/226254.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226254/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226254/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226254/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226254/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226254",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226254/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226254/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226254/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226254",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226364": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226364/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226364/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226364/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226364/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226364.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226364/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226364/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226364/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226364/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226364/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226364/contributors",
+ "created_at": "2024-01-11T19:21:43Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226364/deployments",
+ "description": "Optimal balance predicts/explains amplitude and decay time of iPSGs (Kim & Fiorillo 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226364/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226364/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226364/forks",
+ "full_name": "OpenSourceBrain/226364",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226364/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226364/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226364/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226364.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226364",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226364/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226364",
+ "id": 742107479,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226364/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226364/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226364/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226364/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226364/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226364/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226364/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226364/milestones{/number}",
+ "mirror_url": null,
+ "name": "226364",
+ "node_id": "R_kgDOLDupVw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226364/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226364/pulls{/number}",
+ "pushed_at": "2019-05-31T03:43:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226364/releases{/id}",
+ "size": 1254,
+ "ssh_url": "git@github.com:OpenSourceBrain/226364.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226364/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226364/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226364/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226364/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226364",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226364/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226364/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226364/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226364",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226401": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226401/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226401/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226401/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226401/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226401.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226401/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226401/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226401/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226401/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226401/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226401/contributors",
+ "created_at": "2024-01-11T19:21:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226401/deployments",
+ "description": "Principles governing the operation of synaptic inhibition in dendrites (Gidon & Segev 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226401/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226401/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226401/forks",
+ "full_name": "OpenSourceBrain/226401",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226401/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226401/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226401/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226401.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226401",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226401/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226401",
+ "id": 742107499,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226401/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226401/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226401/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226401/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226401/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226401/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226401/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226401/milestones{/number}",
+ "mirror_url": null,
+ "name": "226401",
+ "node_id": "R_kgDOLDupaw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226401/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226401/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226401/releases{/id}",
+ "size": 93,
+ "ssh_url": "git@github.com:OpenSourceBrain/226401.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226401/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226401/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226401/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226401/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226401",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226401/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226401/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226401/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226401",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226422": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226422/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226422/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226422/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226422/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226422.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226422/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226422/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226422/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226422/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226422/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226422/contributors",
+ "created_at": "2024-01-11T19:21:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226422/deployments",
+ "description": "Multi-timescale adaptive threshold model (Kobayashi et al 2009) (NEURON)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226422/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226422/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226422/forks",
+ "full_name": "OpenSourceBrain/226422",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226422/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226422/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226422/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226422.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/226422",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226422/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226422",
+ "id": 742107512,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226422/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226422/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226422/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226422/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226422/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226422/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226422/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226422/milestones{/number}",
+ "mirror_url": null,
+ "name": "226422",
+ "node_id": "R_kgDOLDupeA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226422/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226422/pulls{/number}",
+ "pushed_at": "2023-11-28T21:09:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226422/releases{/id}",
+ "size": 169,
+ "ssh_url": "git@github.com:OpenSourceBrain/226422.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226422/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226422/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226422/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226422/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226422",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226422/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226422/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226422/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226422",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226425": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226425/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226425/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226425/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226425/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226425.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226425/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226425/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226425/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226425/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226425/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226425/contributors",
+ "created_at": "2024-01-11T19:21:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226425/deployments",
+ "description": "Linking dynamics of the inhibitory network to the input structure (Komarov & Bazhenov 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226425/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226425/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226425/forks",
+ "full_name": "OpenSourceBrain/226425",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226425/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226425/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226425/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226425.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226425",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226425/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226425",
+ "id": 742107520,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226425/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226425/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226425/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226425/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226425/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226425/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226425/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226425/milestones{/number}",
+ "mirror_url": null,
+ "name": "226425",
+ "node_id": "R_kgDOLDupgA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226425/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226425/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226425/releases{/id}",
+ "size": 86,
+ "ssh_url": "git@github.com:OpenSourceBrain/226425.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226425/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226425/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226425/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226425/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226425",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226425/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226425/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226425/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226425",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226432": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226432/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226432/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226432/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226432/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226432.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226432/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226432/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226432/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226432/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226432/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226432/contributors",
+ "created_at": "2024-01-11T19:21:50Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226432/deployments",
+ "description": "Multi-timescale adaptive threshold model (Kobayashi et al 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226432/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226432/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226432/forks",
+ "full_name": "OpenSourceBrain/226432",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226432/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226432/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226432/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226432.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/226432",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226432/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226432",
+ "id": 742107538,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226432/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226432/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226432/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226432/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226432/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226432/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226432/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226432/milestones{/number}",
+ "mirror_url": null,
+ "name": "226432",
+ "node_id": "R_kgDOLDupkg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226432/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226432/pulls{/number}",
+ "pushed_at": "2023-12-23T03:54:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226432/releases{/id}",
+ "size": 75,
+ "ssh_url": "git@github.com:OpenSourceBrain/226432.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226432/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226432/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226432/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226432/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226432",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226432/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226432/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226432/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226432",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226471": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226471/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226471/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226471/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226471/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226471.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226471/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226471/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226471/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226471/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226471/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226471/contributors",
+ "created_at": "2024-01-11T19:21:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226471/deployments",
+ "description": "A model of antennal lobe of bee (Chen JY et al. 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226471/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226471/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226471/forks",
+ "full_name": "OpenSourceBrain/226471",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226471/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226471/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226471/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226471.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/226471",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226471/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226471",
+ "id": 742107553,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226471/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226471/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226471/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226471/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226471/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226471/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226471/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226471/milestones{/number}",
+ "mirror_url": null,
+ "name": "226471",
+ "node_id": "R_kgDOLDupoQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226471/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226471/pulls{/number}",
+ "pushed_at": "2018-04-23T19:06:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226471/releases{/id}",
+ "size": 14802,
+ "ssh_url": "git@github.com:OpenSourceBrain/226471.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226471/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226471/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226471/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226471/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226471",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226471/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226471/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226471/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226471",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226472": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226472/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226472/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226472/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226472/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226472.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226472/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226472/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226472/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226472/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226472/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226472/contributors",
+ "created_at": "2024-01-11T19:21:54Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226472/deployments",
+ "description": "Neural mass model of the sleeping cortex (Weigenand et al 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226472/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226472/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226472/forks",
+ "full_name": "OpenSourceBrain/226472",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226472/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226472/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226472/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226472.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226472",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226472/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226472",
+ "id": 742107568,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226472/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226472/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226472/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226472/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226472/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226472/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226472/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226472/milestones{/number}",
+ "mirror_url": null,
+ "name": "226472",
+ "node_id": "R_kgDOLDupsA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226472/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226472/pulls{/number}",
+ "pushed_at": "2019-11-21T20:11:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226472/releases{/id}",
+ "size": 80,
+ "ssh_url": "git@github.com:OpenSourceBrain/226472.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226472/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226472/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226472/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226472/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226472",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226472/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226472/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226472/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226472",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226473": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226473/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226473/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226473/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226473/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226473.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226473/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226473/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226473/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226473/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226473/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226473/contributors",
+ "created_at": "2024-01-11T19:21:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226473/deployments",
+ "description": "Neural mass model of spindle generation in the isolated thalamus (Schellenberger Costa et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226473/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226473/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226473/forks",
+ "full_name": "OpenSourceBrain/226473",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226473/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226473/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226473/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226473.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226473",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226473/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226473",
+ "id": 742107577,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226473/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226473/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226473/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226473/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226473/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226473/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226473/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226473/milestones{/number}",
+ "mirror_url": null,
+ "name": "226473",
+ "node_id": "R_kgDOLDupuQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226473/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226473/pulls{/number}",
+ "pushed_at": "2019-11-21T20:12:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226473/releases{/id}",
+ "size": 196,
+ "ssh_url": "git@github.com:OpenSourceBrain/226473.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226473/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226473/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226473/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226473/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226473",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226473/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226473/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226473/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:21:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226473",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226474": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226474/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226474/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226474/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226474/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226474.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226474/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226474/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226474/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226474/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226474/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226474/contributors",
+ "created_at": "2024-01-11T19:22:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226474/deployments",
+ "description": "Neural mass model of the sleeping thalamocortical system (Schellenberger Costa et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226474/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226474/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226474/forks",
+ "full_name": "OpenSourceBrain/226474",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226474/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226474/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226474/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226474.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226474",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226474/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226474",
+ "id": 742107597,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226474/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226474/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226474/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226474/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226474/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226474/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226474/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226474/milestones{/number}",
+ "mirror_url": null,
+ "name": "226474",
+ "node_id": "R_kgDOLDupzQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226474/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226474/pulls{/number}",
+ "pushed_at": "2019-11-21T20:12:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226474/releases{/id}",
+ "size": 116,
+ "ssh_url": "git@github.com:OpenSourceBrain/226474.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226474/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226474/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226474/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226474/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226474",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226474/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226474/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226474/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226474",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226475": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226475/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226475/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226475/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226475/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226475.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226475/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226475/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226475/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226475/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226475/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226475/contributors",
+ "created_at": "2024-01-11T19:22:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226475/deployments",
+ "description": "Neural mass model of the neocortex under sleep regulation (Costa et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226475/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226475/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226475/forks",
+ "full_name": "OpenSourceBrain/226475",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226475/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226475/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226475/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226475.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/226475",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226475/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226475",
+ "id": 742107605,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226475/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226475/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226475/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226475/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226475/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226475/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226475/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226475/milestones{/number}",
+ "mirror_url": null,
+ "name": "226475",
+ "node_id": "R_kgDOLDup1Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226475/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226475/pulls{/number}",
+ "pushed_at": "2019-11-21T20:13:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226475/releases{/id}",
+ "size": 78,
+ "ssh_url": "git@github.com:OpenSourceBrain/226475.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226475/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226475/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226475/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226475/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226475",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226475/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226475/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226475/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226475",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/226812": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/226812/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/226812/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/226812/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/226812/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/226812.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/226812/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/226812/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/226812/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/226812/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/226812/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/226812/contributors",
+ "created_at": "2024-01-11T19:22:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/226812/deployments",
+ "description": "5-neuron-model of neocortex for producing realistic extracellular AP shapes (Van Dijck et al. 2012)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/226812/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/226812/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/226812/forks",
+ "full_name": "OpenSourceBrain/226812",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/226812/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/226812/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/226812/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/226812.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/226812",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/226812/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/226812",
+ "id": 742107622,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/226812/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/226812/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/226812/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/226812/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/226812/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/226812/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/226812/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/226812/milestones{/number}",
+ "mirror_url": null,
+ "name": "226812",
+ "node_id": "R_kgDOLDup5g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/226812/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/226812/pulls{/number}",
+ "pushed_at": "2018-04-23T19:05:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/226812/releases{/id}",
+ "size": 1425,
+ "ssh_url": "git@github.com:OpenSourceBrain/226812.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/226812/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/226812/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/226812/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/226812/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/226812",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/226812/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/226812/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/226812/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/226812",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227005": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227005/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227005/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227005/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227005/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227005.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227005/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227005/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227005/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227005/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227005/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227005/contributors",
+ "created_at": "2024-01-11T19:22:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227005/deployments",
+ "description": "MCCAIS model (multicompartmental cooperative AIS) (\u00d6z et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227005/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227005/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227005/forks",
+ "full_name": "OpenSourceBrain/227005",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227005/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227005/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227005/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227005.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/227005",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227005/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227005",
+ "id": 742107633,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227005/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227005/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227005/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227005/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227005/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227005/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227005/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227005/milestones{/number}",
+ "mirror_url": null,
+ "name": "227005",
+ "node_id": "R_kgDOLDup8Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227005/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227005/pulls{/number}",
+ "pushed_at": "2019-05-31T02:51:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227005/releases{/id}",
+ "size": 49,
+ "ssh_url": "git@github.com:OpenSourceBrain/227005.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227005/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227005/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227005/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227005/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227005",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227005/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227005/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227005/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227005",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227087": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227087/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227087/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227087/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227087/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227087.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227087/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227087/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227087/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227087/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227087/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227087/contributors",
+ "created_at": "2024-01-11T19:22:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227087/deployments",
+ "description": "Hotspots of dendritic spine turnover facilitates new spines and NN sparsity (Frank et al 2018) ",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227087/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227087/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227087/forks",
+ "full_name": "OpenSourceBrain/227087",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227087/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227087/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227087/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227087.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/227087",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227087/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227087",
+ "id": 742107653,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227087/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227087/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227087/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227087/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227087/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227087/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227087/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227087/milestones{/number}",
+ "mirror_url": null,
+ "name": "227087",
+ "node_id": "R_kgDOLDuqBQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227087/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227087/pulls{/number}",
+ "pushed_at": "2019-05-31T03:42:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227087/releases{/id}",
+ "size": 1539,
+ "ssh_url": "git@github.com:OpenSourceBrain/227087.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227087/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227087/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227087/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227087/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227087",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227087/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227087/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227087/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227087",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227114": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227114/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227114/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227114/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227114/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227114.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227114/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227114/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227114/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227114/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227114/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227114/contributors",
+ "created_at": "2024-01-11T19:22:10Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227114/deployments",
+ "description": "Neuronify: An Educational Simulator for Neural Circuits (Dragly et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227114/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227114/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227114/forks",
+ "full_name": "OpenSourceBrain/227114",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227114/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227114/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227114/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227114.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/227114",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227114/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227114",
+ "id": 742107664,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227114/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227114/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227114/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227114/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227114/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227114/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227114/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227114/milestones{/number}",
+ "mirror_url": null,
+ "name": "227114",
+ "node_id": "R_kgDOLDuqEA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227114/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227114/pulls{/number}",
+ "pushed_at": "2023-12-23T03:54:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227114/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/227114.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227114/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227114/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227114/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227114/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227114",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227114/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227114/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227114/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227114",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227318": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227318/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227318/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227318/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227318/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227318.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227318/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227318/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227318/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227318/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227318/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227318/contributors",
+ "created_at": "2024-01-11T19:22:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227318/deployments",
+ "description": "Discrimination on behavioral time-scales mediated by reaction-diffusion in dendrites (Bhalla 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227318/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227318/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227318/forks",
+ "full_name": "OpenSourceBrain/227318",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227318/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227318/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227318/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227318.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227318/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227318",
+ "id": 742107677,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227318/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227318/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227318/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227318/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227318/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227318/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227318/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227318/milestones{/number}",
+ "mirror_url": null,
+ "name": "227318",
+ "node_id": "R_kgDOLDuqHQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227318/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227318/pulls{/number}",
+ "pushed_at": "2023-11-28T21:10:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227318/releases{/id}",
+ "size": 489,
+ "ssh_url": "git@github.com:OpenSourceBrain/227318.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227318/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227318/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227318/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227318/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227318",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227318/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227318/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227318/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227318",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227363": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227363/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227363/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227363/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227363/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227363.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227363/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227363/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227363/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227363/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227363/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227363/contributors",
+ "created_at": "2024-01-11T19:22:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227363/deployments",
+ "description": "Cerebellar granular layer (Maex and De Schutter 1998)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227363/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227363/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227363/forks",
+ "full_name": "OpenSourceBrain/227363",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227363/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227363/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227363/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227363.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/227363",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227363/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227363",
+ "id": 742107690,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227363/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227363/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227363/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227363/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227363/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227363/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227363/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227363/milestones{/number}",
+ "mirror_url": null,
+ "name": "227363",
+ "node_id": "R_kgDOLDuqKg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227363/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227363/pulls{/number}",
+ "pushed_at": "2019-05-31T02:11:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227363/releases{/id}",
+ "size": 2404,
+ "ssh_url": "git@github.com:OpenSourceBrain/227363.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227363/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227363/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227363/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227363/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227363",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227363/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227363/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227363/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227363",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227577": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227577/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227577/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227577/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227577/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227577.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227577/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227577/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227577/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227577/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227577/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227577/contributors",
+ "created_at": "2024-01-11T19:22:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227577/deployments",
+ "description": "Pallidostriatal projections promote beta oscillations (Corbit, Whalen, et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227577/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227577/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227577/forks",
+ "full_name": "OpenSourceBrain/227577",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227577/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227577/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227577/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227577.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/227577",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227577/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227577",
+ "id": 742107700,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227577/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227577/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227577/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227577/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227577/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227577/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227577/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227577/milestones{/number}",
+ "mirror_url": null,
+ "name": "227577",
+ "node_id": "R_kgDOLDuqNA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227577/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227577/pulls{/number}",
+ "pushed_at": "2022-02-18T16:05:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227577/releases{/id}",
+ "size": 50,
+ "ssh_url": "git@github.com:OpenSourceBrain/227577.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227577/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227577/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227577/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227577/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227577",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227577/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227577/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227577/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227577",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227677": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227677/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227677/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227677/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227677/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227677.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227677/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227677/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227677/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227677/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227677/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227677/contributors",
+ "created_at": "2024-01-11T19:22:19Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227677/deployments",
+ "description": "A neural mass model of cross frequency coupling (Chehelcheraghi et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227677/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227677/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227677/forks",
+ "full_name": "OpenSourceBrain/227677",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227677/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227677/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227677/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227677.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/227677",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227677/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227677",
+ "id": 742107728,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227677/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227677/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227677/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227677/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227677/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227677/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227677/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227677/milestones{/number}",
+ "mirror_url": null,
+ "name": "227677",
+ "node_id": "R_kgDOLDuqUA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227677/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227677/pulls{/number}",
+ "pushed_at": "2023-12-23T03:55:18Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227677/releases{/id}",
+ "size": 13310,
+ "ssh_url": "git@github.com:OpenSourceBrain/227677.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227677/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227677/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227677/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227677/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227677",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227677/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227677/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227677/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227677",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227678": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227678/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227678/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227678/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227678/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227678.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227678/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227678/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227678/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227678/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227678/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227678/contributors",
+ "created_at": "2024-01-11T19:22:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227678/deployments",
+ "description": "Model for K-ATP mediated bursting in mSNc DA neurons (Knowlton et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227678/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227678/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227678/forks",
+ "full_name": "OpenSourceBrain/227678",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227678/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227678/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227678/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227678.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/227678",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227678/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227678",
+ "id": 742107739,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227678/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227678/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227678/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227678/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227678/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227678/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227678/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227678/milestones{/number}",
+ "mirror_url": null,
+ "name": "227678",
+ "node_id": "R_kgDOLDuqWw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227678/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227678/pulls{/number}",
+ "pushed_at": "2018-04-23T19:06:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227678/releases{/id}",
+ "size": 118,
+ "ssh_url": "git@github.com:OpenSourceBrain/227678.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227678/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227678/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227678/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227678/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227678",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227678/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227678/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227678/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227678",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227972": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227972/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227972/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227972/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227972/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227972.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227972/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227972/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227972/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227972/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227972/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227972/contributors",
+ "created_at": "2024-01-11T19:22:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227972/deployments",
+ "description": "Models for cortical UP-DOWN states in a bistable inhibitory-stabilized network (Jercog et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227972/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227972/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227972/forks",
+ "full_name": "OpenSourceBrain/227972",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227972/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227972/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227972/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227972.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/227972",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227972/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227972",
+ "id": 742107748,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227972/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227972/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227972/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227972/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227972/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227972/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227972/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227972/milestones{/number}",
+ "mirror_url": null,
+ "name": "227972",
+ "node_id": "R_kgDOLDuqZA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227972/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227972/pulls{/number}",
+ "pushed_at": "2019-05-31T05:00:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227972/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/227972.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227972/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227972/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227972/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227972/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227972",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227972/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227972/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227972/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227972",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/227978": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/227978/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/227978/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/227978/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/227978/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/227978.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/227978/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/227978/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/227978/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/227978/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/227978/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/227978/contributors",
+ "created_at": "2024-01-11T19:22:25Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/227978/deployments",
+ "description": "Phosphoinositide-Dependent Signaling in Sympathetic Neurons (SCG) (Kruse et al. 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/227978/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/227978/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/227978/forks",
+ "full_name": "OpenSourceBrain/227978",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/227978/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/227978/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/227978/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/227978.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/227978",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/227978/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/227978",
+ "id": 742107761,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/227978/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/227978/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/227978/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/227978/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/227978/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/227978/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/227978/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/227978/milestones{/number}",
+ "mirror_url": null,
+ "name": "227978",
+ "node_id": "R_kgDOLDuqcQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/227978/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/227978/pulls{/number}",
+ "pushed_at": "2023-12-23T03:55:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/227978/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/227978.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/227978/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/227978/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/227978/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/227978/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/227978",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/227978/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/227978/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/227978/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/227978",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/228337": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/228337/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/228337/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/228337/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/228337/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/228337.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/228337/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/228337/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/228337/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/228337/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/228337/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/228337/contributors",
+ "created_at": "2024-01-11T19:22:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/228337/deployments",
+ "description": "Nicotinic control of dopamine release in nucleus accumbens (Maex et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/228337/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/228337/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/228337/forks",
+ "full_name": "OpenSourceBrain/228337",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/228337/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/228337/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/228337/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/228337.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/228337",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/228337/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/228337",
+ "id": 742107776,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/228337/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/228337/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/228337/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/228337/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/228337/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/228337/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/228337/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/228337/milestones{/number}",
+ "mirror_url": null,
+ "name": "228337",
+ "node_id": "R_kgDOLDuqgA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/228337/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/228337/pulls{/number}",
+ "pushed_at": "2022-02-27T19:29:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/228337/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/228337.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/228337/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/228337/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/228337/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/228337/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/228337",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/228337/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/228337/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/228337/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/228337",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/228373": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/228373/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/228373/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/228373/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/228373/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/228373.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/228373/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/228373/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/228373/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/228373/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/228373/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/228373/contributors",
+ "created_at": "2024-01-11T19:22:29Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/228373/deployments",
+ "description": "Human seizures couple across spatial scales through travelling wave dynamics (Martinet et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/228373/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/228373/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/228373/forks",
+ "full_name": "OpenSourceBrain/228373",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/228373/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/228373/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/228373/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/228373.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/228373",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/228373/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/228373",
+ "id": 742107791,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/228373/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/228373/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/228373/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/228373/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/228373/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/228373/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/228373/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/228373/milestones{/number}",
+ "mirror_url": null,
+ "name": "228373",
+ "node_id": "R_kgDOLDuqjw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/228373/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/228373/pulls{/number}",
+ "pushed_at": "2023-12-23T03:55:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/228373/releases{/id}",
+ "size": 290,
+ "ssh_url": "git@github.com:OpenSourceBrain/228373.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/228373/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/228373/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/228373/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/228373/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/228373",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/228373/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/228373/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/228373/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/228373",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/228596": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/228596/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/228596/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/228596/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/228596/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/228596.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/228596/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/228596/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/228596/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/228596/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/228596/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/228596/contributors",
+ "created_at": "2024-01-11T19:22:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/228596/deployments",
+ "description": "L4 cortical barrel NN model receiving thalamic input during whisking or touch (Gutnisky et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/228596/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/228596/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/228596/forks",
+ "full_name": "OpenSourceBrain/228596",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/228596/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/228596/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/228596/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/228596.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/228596",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/228596/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/228596",
+ "id": 742107803,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/228596/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/228596/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/228596/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/228596/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/228596/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/228596/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/228596/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/228596/milestones{/number}",
+ "mirror_url": null,
+ "name": "228596",
+ "node_id": "R_kgDOLDuqmw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/228596/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/228596/pulls{/number}",
+ "pushed_at": "2019-05-31T02:58:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/228596/releases{/id}",
+ "size": 120,
+ "ssh_url": "git@github.com:OpenSourceBrain/228596.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/228596/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/228596/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/228596/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/228596/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/228596",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/228596/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/228596/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/228596/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/228596",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/228599": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/228599/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/228599/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/228599/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/228599/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/228599.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/228599/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/228599/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/228599/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/228599/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/228599/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/228599/contributors",
+ "created_at": "2024-01-11T19:22:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/228599/deployments",
+ "description": "Firing patterns of CA3 hippocampal neurons (Soldado-Magraner et al. 2019)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/228599/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/228599/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/228599/forks",
+ "full_name": "OpenSourceBrain/228599",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/228599/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/228599/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/228599/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/228599.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/228599",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/228599/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/228599",
+ "id": 742107816,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/228599/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/228599/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/228599/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/228599/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/228599/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/228599/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/228599/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/228599/milestones{/number}",
+ "mirror_url": null,
+ "name": "228599",
+ "node_id": "R_kgDOLDuqqA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/228599/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/228599/pulls{/number}",
+ "pushed_at": "2022-06-21T23:22:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/228599/releases{/id}",
+ "size": 50,
+ "ssh_url": "git@github.com:OpenSourceBrain/228599.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/228599/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/228599/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/228599/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/228599/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/228599",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/228599/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/228599/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/228599/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/228599",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/228604": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/228604/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/228604/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/228604/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/228604/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/228604.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/228604/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/228604/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/228604/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/228604/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/228604/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/228604/contributors",
+ "created_at": "2024-01-11T19:22:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/228604/deployments",
+ "description": "Theory and simulation of integrate-and-fire neurons driven by shot noise (Droste & Lindner 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/228604/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/228604/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/228604/forks",
+ "full_name": "OpenSourceBrain/228604",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/228604/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/228604/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/228604/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/228604.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/228604",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/228604/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/228604",
+ "id": 742107828,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/228604/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/228604/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/228604/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/228604/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/228604/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/228604/languages",
+ "license": {
+ "key": "bsd-3-clause",
+ "name": "BSD 3-Clause \"New\" or \"Revised\" License",
+ "node_id": "MDc6TGljZW5zZTU=",
+ "spdx_id": "BSD-3-Clause",
+ "url": "https://api.github.com/licenses/bsd-3-clause"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/228604/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/228604/milestones{/number}",
+ "mirror_url": null,
+ "name": "228604",
+ "node_id": "R_kgDOLDuqtA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/228604/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/228604/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/228604/releases{/id}",
+ "size": 199,
+ "ssh_url": "git@github.com:OpenSourceBrain/228604.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/228604/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/228604/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/228604/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/228604/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/228604",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/228604/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/228604/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/228604/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/228604",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/229276": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/229276/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/229276/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/229276/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/229276/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/229276.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/229276/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/229276/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/229276/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/229276/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/229276/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/229276/contributors",
+ "created_at": "2024-01-11T19:22:37Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/229276/deployments",
+ "description": "Mirror Neuron (Antunes et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/229276/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/229276/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/229276/forks",
+ "full_name": "OpenSourceBrain/229276",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/229276/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/229276/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/229276/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/229276.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/229276",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/229276/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/229276",
+ "id": 742107839,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/229276/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/229276/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/229276/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/229276/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/229276/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/229276/languages",
+ "license": {
+ "key": "other",
+ "name": "Other",
+ "node_id": "MDc6TGljZW5zZTA=",
+ "spdx_id": "NOASSERTION",
+ "url": null
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/229276/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/229276/milestones{/number}",
+ "mirror_url": null,
+ "name": "229276",
+ "node_id": "R_kgDOLDuqvw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/229276/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/229276/pulls{/number}",
+ "pushed_at": "2023-11-28T21:10:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/229276/releases{/id}",
+ "size": 561,
+ "ssh_url": "git@github.com:OpenSourceBrain/229276.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/229276/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/229276/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/229276/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/229276/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/229276",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/229276/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/229276/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/229276/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/229276",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/229278": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/229278/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/229278/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/229278/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/229278/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/229278.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/229278/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/229278/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/229278/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/229278/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/229278/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/229278/contributors",
+ "created_at": "2024-01-11T19:22:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/229278/deployments",
+ "description": "Hierarchical Gaussian Filter (HGF) model of conditioned hallucinations task (Powers et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/229278/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/229278/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/229278/forks",
+ "full_name": "OpenSourceBrain/229278",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/229278/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/229278/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/229278/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/229278.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/229278/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/229278",
+ "id": 742107847,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/229278/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/229278/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/229278/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/229278/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/229278/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/229278/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/229278/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/229278/milestones{/number}",
+ "mirror_url": null,
+ "name": "229278",
+ "node_id": "R_kgDOLDuqxw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/229278/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/229278/pulls{/number}",
+ "pushed_at": "2018-12-18T21:37:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/229278/releases{/id}",
+ "size": 37856,
+ "ssh_url": "git@github.com:OpenSourceBrain/229278.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/229278/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/229278/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/229278/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/229278/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/229278",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/229278/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/229278/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/229278/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/229278",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/229279": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/229279/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/229279/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/229279/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/229279/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/229279.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/229279/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/229279/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/229279/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/229279/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/229279/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/229279/contributors",
+ "created_at": "2024-01-11T19:22:41Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/229279/deployments",
+ "description": "Robust transmission in the inhibitory Purkinje Cell to Cerebellar Nuclei pathway (Abbasi et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/229279/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/229279/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/229279/forks",
+ "full_name": "OpenSourceBrain/229279",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/229279/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/229279/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/229279/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/229279.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/229279",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/229279/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/229279",
+ "id": 742107855,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/229279/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/229279/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/229279/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/229279/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/229279/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/229279/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/229279/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/229279/milestones{/number}",
+ "mirror_url": null,
+ "name": "229279",
+ "node_id": "R_kgDOLDuqzw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/229279/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/229279/pulls{/number}",
+ "pushed_at": "2019-05-31T03:32:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/229279/releases{/id}",
+ "size": 36614,
+ "ssh_url": "git@github.com:OpenSourceBrain/229279.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/229279/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/229279/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/229279/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/229279/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/229279",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/229279/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/229279/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/229279/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/229279",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/229580": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/229580/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/229580/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/229580/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/229580/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/229580.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/229580/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/229580/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/229580/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/229580/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/229580/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/229580/contributors",
+ "created_at": "2024-01-11T19:22:44Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/229580/deployments",
+ "description": "Different roles for inhibition in the rhythm-generating respiratory network (Harris et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/229580/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/229580/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/229580/forks",
+ "full_name": "OpenSourceBrain/229580",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/229580/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/229580/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/229580/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/229580.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/229580",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/229580/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/229580",
+ "id": 742107868,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/229580/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/229580/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/229580/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/229580/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/229580/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/229580/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/229580/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/229580/milestones{/number}",
+ "mirror_url": null,
+ "name": "229580",
+ "node_id": "R_kgDOLDuq3A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/229580/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/229580/pulls{/number}",
+ "pushed_at": "2023-12-23T03:55:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/229580/releases{/id}",
+ "size": 444,
+ "ssh_url": "git@github.com:OpenSourceBrain/229580.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/229580/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/229580/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/229580/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/229580/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/229580",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/229580/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/229580/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/229580/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/229580",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/229585": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/229585/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/229585/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/229585/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/229585/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/229585.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/229585/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/229585/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/229585/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/229585/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/229585/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/229585/contributors",
+ "created_at": "2024-01-11T19:22:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/229585/deployments",
+ "description": "A detailed Purkinje cell model (Masoli et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/229585/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/229585/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/229585/forks",
+ "full_name": "OpenSourceBrain/229585",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/229585/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/229585/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/229585/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/229585.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/229585",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/229585/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/229585",
+ "id": 742107876,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/229585/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/229585/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/229585/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/229585/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/229585/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/229585/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/229585/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/229585/milestones{/number}",
+ "mirror_url": null,
+ "name": "229585",
+ "node_id": "R_kgDOLDuq5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/229585/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/229585/pulls{/number}",
+ "pushed_at": "2023-11-28T21:12:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/229585/releases{/id}",
+ "size": 112,
+ "ssh_url": "git@github.com:OpenSourceBrain/229585.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/229585/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/229585/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/229585/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/229585/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/229585",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/229585/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/229585/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/229585/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/229585",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/229640": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/229640/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/229640/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/229640/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/229640/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/229640.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/229640/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/229640/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/229640/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/229640/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/229640/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/229640/contributors",
+ "created_at": "2024-01-11T19:22:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/229640/deployments",
+ "description": "Respiratory control model with brainstem CPG and sensory feedback (Diekman, Thomas, and Wilson 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/229640/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/229640/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/229640/forks",
+ "full_name": "OpenSourceBrain/229640",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/229640/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/229640/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/229640/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/229640.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/229640",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/229640/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/229640",
+ "id": 742107891,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/229640/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/229640/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/229640/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/229640/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/229640/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/229640/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/229640/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/229640/milestones{/number}",
+ "mirror_url": null,
+ "name": "229640",
+ "node_id": "R_kgDOLDuq8w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/229640/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/229640/pulls{/number}",
+ "pushed_at": "2023-11-28T21:13:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/229640/releases{/id}",
+ "size": 494,
+ "ssh_url": "git@github.com:OpenSourceBrain/229640.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/229640/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/229640/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/229640/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/229640/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/229640",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/229640/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/229640/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/229640/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/229640",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/229750": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/229750/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/229750/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/229750/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/229750/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/229750.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/229750/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/229750/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/229750/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/229750/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/229750/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/229750/contributors",
+ "created_at": "2024-01-11T19:22:52Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/229750/deployments",
+ "description": "Distance-dependent inhibition in the hippocampus (Str\u00fcber et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/229750/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/229750/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/229750/forks",
+ "full_name": "OpenSourceBrain/229750",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/229750/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/229750/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/229750/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/229750.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/229750",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/229750/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/229750",
+ "id": 742107913,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/229750/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/229750/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/229750/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/229750/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/229750/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/229750/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/229750/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/229750/milestones{/number}",
+ "mirror_url": null,
+ "name": "229750",
+ "node_id": "R_kgDOLDurCQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/229750/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/229750/pulls{/number}",
+ "pushed_at": "2023-07-08T17:27:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/229750/releases{/id}",
+ "size": 25,
+ "ssh_url": "git@github.com:OpenSourceBrain/229750.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/229750/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/229750/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/229750/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/229750/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/229750",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/229750/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/229750/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/229750/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:52Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/229750",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230046": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230046/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230046/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230046/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230046/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230046.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230046/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230046/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230046/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230046/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230046/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230046/contributors",
+ "created_at": "2024-01-11T19:22:54Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230046/deployments",
+ "description": "The Virtual Mouse Brain (TVMB) (Melozzi et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230046/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230046/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230046/forks",
+ "full_name": "OpenSourceBrain/230046",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230046/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230046/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230046/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230046.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/230046",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230046/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230046",
+ "id": 742107926,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230046/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230046/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230046/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230046/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230046/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230046/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230046/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230046/milestones{/number}",
+ "mirror_url": null,
+ "name": "230046",
+ "node_id": "R_kgDOLDurFg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230046/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230046/pulls{/number}",
+ "pushed_at": "2023-12-23T03:56:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230046/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/230046.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230046/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230046/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230046/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230046/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230046",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230046/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230046/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230046/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:54Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230046",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230137": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230137/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230137/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230137/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230137/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230137.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230137/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230137/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230137/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230137/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230137/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230137/contributors",
+ "created_at": "2024-01-11T19:22:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230137/deployments",
+ "description": "A single kinetic model for all human voltage-gated sodium channels (Balbi et al, 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230137/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230137/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230137/forks",
+ "full_name": "OpenSourceBrain/230137",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230137/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230137/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230137/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230137.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/230137",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230137/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230137",
+ "id": 742107944,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230137/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230137/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230137/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230137/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230137/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230137/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230137/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230137/milestones{/number}",
+ "mirror_url": null,
+ "name": "230137",
+ "node_id": "R_kgDOLDurKA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230137/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230137/pulls{/number}",
+ "pushed_at": "2023-11-28T21:13:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230137/releases{/id}",
+ "size": 84,
+ "ssh_url": "git@github.com:OpenSourceBrain/230137.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230137/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230137/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230137/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230137/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230137",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230137/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230137/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230137/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:56Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230137",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230138": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230138/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230138/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230138/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230138/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230138.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230138/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230138/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230138/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230138/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230138/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230138/contributors",
+ "created_at": "2024-01-11T19:22:58Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230138/deployments",
+ "description": "Optimal spatiotemporal spike pattern detection by STDP (Masquelier 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230138/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230138/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230138/forks",
+ "full_name": "OpenSourceBrain/230138",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230138/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230138/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230138/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230138.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/230138",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230138/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230138",
+ "id": 742107957,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230138/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230138/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230138/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230138/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230138/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230138/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230138/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230138/milestones{/number}",
+ "mirror_url": null,
+ "name": "230138",
+ "node_id": "R_kgDOLDurNQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230138/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230138/pulls{/number}",
+ "pushed_at": "2019-05-31T03:35:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230138/releases{/id}",
+ "size": 18,
+ "ssh_url": "git@github.com:OpenSourceBrain/230138.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230138/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230138/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230138/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230138/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230138",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230138/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230138/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230138/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:22:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230138",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230324": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230324/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230324/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230324/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230324/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230324.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230324/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230324/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230324/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230324/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230324/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230324/contributors",
+ "created_at": "2024-01-11T19:23:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230324/deployments",
+ "description": "Gap junction plasticity as a mechanism to regulate network-wide oscillations (Pernelle et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230324/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230324/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230324/forks",
+ "full_name": "OpenSourceBrain/230324",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230324/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230324/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230324/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230324.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/230324",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230324/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230324",
+ "id": 742107967,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230324/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230324/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230324/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230324/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230324/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230324/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230324/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230324/milestones{/number}",
+ "mirror_url": null,
+ "name": "230324",
+ "node_id": "R_kgDOLDurPw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230324/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230324/pulls{/number}",
+ "pushed_at": "2022-11-22T01:59:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230324/releases{/id}",
+ "size": 176,
+ "ssh_url": "git@github.com:OpenSourceBrain/230324.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230324/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230324/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230324/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230324/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230324",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230324/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230324/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230324/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230324",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230326": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230326/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230326/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230326/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230326/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230326.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230326/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230326/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230326/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230326/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230326/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230326/contributors",
+ "created_at": "2024-01-11T19:23:03Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230326/deployments",
+ "description": "Cortical Layer 5b pyr. cell with [Na+]i mechanisms, from Hay et al 2011 (Zylbertal et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230326/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230326/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230326/forks",
+ "full_name": "OpenSourceBrain/230326",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230326/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230326/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230326/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230326.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/230326",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230326/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230326",
+ "id": 742107986,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230326/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230326/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230326/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230326/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230326/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230326/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230326/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230326/milestones{/number}",
+ "mirror_url": null,
+ "name": "230326",
+ "node_id": "R_kgDOLDurUg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230326/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230326/pulls{/number}",
+ "pushed_at": "2019-10-11T20:18:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230326/releases{/id}",
+ "size": 827,
+ "ssh_url": "git@github.com:OpenSourceBrain/230326.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230326/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230326/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230326/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230326/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230326",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230326/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230326/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230326/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230326",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230329": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230329/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230329/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230329/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230329/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230329.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230329/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230329/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230329/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230329/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230329/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230329/contributors",
+ "created_at": "2024-01-11T19:23:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230329/deployments",
+ "description": "Dendritic properties control energy efficiency of APs in cortical pyramidal cells (Yi et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230329/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230329/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230329/forks",
+ "full_name": "OpenSourceBrain/230329",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230329/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230329/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230329/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230329.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/230329",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230329/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230329",
+ "id": 742107991,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230329/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230329/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230329/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230329/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230329/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230329/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230329/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230329/milestones{/number}",
+ "mirror_url": null,
+ "name": "230329",
+ "node_id": "R_kgDOLDurVw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230329/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230329/pulls{/number}",
+ "pushed_at": "2019-05-31T03:46:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230329/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/230329.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230329/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230329/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230329/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230329/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230329",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230329/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230329/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230329/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230329",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230400": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230400/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230400/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230400/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230400/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230400.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230400/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230400/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230400/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230400/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230400/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230400/contributors",
+ "created_at": "2024-01-11T19:23:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230400/deployments",
+ "description": "Feature integration drives probabilistic behavior in Fly escape response (von Reyn et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230400/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230400/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230400/forks",
+ "full_name": "OpenSourceBrain/230400",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230400/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230400/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230400/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230400.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/230400",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230400/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230400",
+ "id": 742108004,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230400/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230400/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230400/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230400/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230400/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230400/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230400/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230400/milestones{/number}",
+ "mirror_url": null,
+ "name": "230400",
+ "node_id": "R_kgDOLDurZA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230400/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230400/pulls{/number}",
+ "pushed_at": "2019-05-31T04:26:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230400/releases{/id}",
+ "size": 214,
+ "ssh_url": "git@github.com:OpenSourceBrain/230400.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230400/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230400/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230400/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230400/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230400",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230400/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230400/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230400/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230400",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230562": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230562/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230562/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230562/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230562/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230562.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230562/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230562/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230562/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230562/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230562/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230562/contributors",
+ "created_at": "2024-01-11T19:23:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230562/deployments",
+ "description": "Hyperbolic model (Daneshzand et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230562/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230562/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230562/forks",
+ "full_name": "OpenSourceBrain/230562",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230562/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230562/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230562/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230562.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/230562",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230562/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230562",
+ "id": 742108018,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230562/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230562/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230562/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230562/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230562/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230562/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230562/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230562/milestones{/number}",
+ "mirror_url": null,
+ "name": "230562",
+ "node_id": "R_kgDOLDurcg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230562/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230562/pulls{/number}",
+ "pushed_at": "2019-05-31T04:53:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230562/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/230562.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230562/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230562/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230562/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230562/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230562",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230562/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230562/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230562/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230562",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230578": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230578/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230578/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230578/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230578/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230578.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230578/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230578/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230578/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230578/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230578/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230578/contributors",
+ "created_at": "2024-01-11T19:23:11Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230578/deployments",
+ "description": "Dendrites enable a robust mechanism for neuronal stimulus selectivity (Caze et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230578/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230578/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230578/forks",
+ "full_name": "OpenSourceBrain/230578",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230578/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230578/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230578/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230578.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/230578",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230578/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230578",
+ "id": 742108029,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230578/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230578/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230578/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230578/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230578/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230578/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230578/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230578/milestones{/number}",
+ "mirror_url": null,
+ "name": "230578",
+ "node_id": "R_kgDOLDurfQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230578/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230578/pulls{/number}",
+ "pushed_at": "2023-12-23T03:56:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230578/releases{/id}",
+ "size": 911,
+ "ssh_url": "git@github.com:OpenSourceBrain/230578.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230578/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230578/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230578/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230578/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230578",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230578/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230578/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230578/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230578",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230811": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230811/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230811/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230811/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230811/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230811.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230811/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230811/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230811/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230811/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230811/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230811/contributors",
+ "created_at": "2024-01-11T19:23:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230811/deployments",
+ "description": "L5 PFC pyramidal neurons (Papoutsi et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230811/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230811/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230811/forks",
+ "full_name": "OpenSourceBrain/230811",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230811/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230811/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230811/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230811.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/230811",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230811/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230811",
+ "id": 742108047,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230811/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230811/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230811/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230811/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230811/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230811/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230811/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230811/milestones{/number}",
+ "mirror_url": null,
+ "name": "230811",
+ "node_id": "R_kgDOLDurjw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230811/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230811/pulls{/number}",
+ "pushed_at": "2018-04-23T19:07:27Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230811/releases{/id}",
+ "size": 367,
+ "ssh_url": "git@github.com:OpenSourceBrain/230811.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230811/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230811/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230811/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230811/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230811",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230811/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230811/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230811/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230811",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230861": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230861/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230861/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230861/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230861/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230861.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230861/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230861/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230861/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230861/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230861/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230861/contributors",
+ "created_at": "2024-01-11T19:23:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230861/deployments",
+ "description": "Computational analysis of NN activity and spatial reach of sharp wave-ripples (Canakci et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230861/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230861/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230861/forks",
+ "full_name": "OpenSourceBrain/230861",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230861/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230861/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230861/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230861.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/230861",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230861/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230861",
+ "id": 742108056,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230861/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230861/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230861/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230861/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230861/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230861/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230861/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230861/milestones{/number}",
+ "mirror_url": null,
+ "name": "230861",
+ "node_id": "R_kgDOLDurmA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230861/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230861/pulls{/number}",
+ "pushed_at": "2019-05-31T03:16:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230861/releases{/id}",
+ "size": 61,
+ "ssh_url": "git@github.com:OpenSourceBrain/230861.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230861/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230861/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230861/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230861/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230861",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230861/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230861/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230861/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230861",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230888": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230888/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230888/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230888/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230888/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230888.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230888/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230888/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230888/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230888/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230888/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230888/contributors",
+ "created_at": "2024-01-11T19:23:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230888/deployments",
+ "description": "The cannula artifact (Chandler & Hodgkin 1965)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230888/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230888/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230888/forks",
+ "full_name": "OpenSourceBrain/230888",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230888/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230888/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230888/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230888.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/230888",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230888/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230888",
+ "id": 742108070,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230888/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230888/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230888/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230888/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230888/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230888/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230888/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230888/milestones{/number}",
+ "mirror_url": null,
+ "name": "230888",
+ "node_id": "R_kgDOLDurpg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230888/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230888/pulls{/number}",
+ "pushed_at": "2019-05-31T03:25:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230888/releases{/id}",
+ "size": 35,
+ "ssh_url": "git@github.com:OpenSourceBrain/230888.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230888/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230888/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230888/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230888/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230888",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230888/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230888/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230888/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230888",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/230929": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/230929/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/230929/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/230929/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/230929/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/230929.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/230929/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/230929/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/230929/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/230929/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/230929/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/230929/contributors",
+ "created_at": "2024-01-11T19:23:19Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/230929/deployments",
+ "description": "MATLAB for brain and cognitive scientists (Cohen 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/230929/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/230929/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/230929/forks",
+ "full_name": "OpenSourceBrain/230929",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/230929/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/230929/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/230929/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/230929.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/230929",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/230929/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/230929",
+ "id": 742108086,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/230929/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/230929/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/230929/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/230929/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/230929/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/230929/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/230929/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/230929/milestones{/number}",
+ "mirror_url": null,
+ "name": "230929",
+ "node_id": "R_kgDOLDurtg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/230929/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/230929/pulls{/number}",
+ "pushed_at": "2023-12-23T03:56:29Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/230929/releases{/id}",
+ "size": 209,
+ "ssh_url": "git@github.com:OpenSourceBrain/230929.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/230929/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/230929/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/230929/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/230929/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/230929",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/230929/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/230929/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/230929/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/230929",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231105": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231105/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231105/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231105/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231105/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231105.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231105/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231105/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231105/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231105/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231105/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231105/contributors",
+ "created_at": "2024-01-11T19:23:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231105/deployments",
+ "description": "Conductance-based model of Layer-4 in the barrel cortex (Argaman et Golomb 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231105/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231105/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231105/forks",
+ "full_name": "OpenSourceBrain/231105",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231105/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231105/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231105/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231105.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231105",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231105/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231105",
+ "id": 742108097,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231105/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231105/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231105/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231105/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231105/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231105/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231105/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231105/milestones{/number}",
+ "mirror_url": null,
+ "name": "231105",
+ "node_id": "R_kgDOLDurwQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231105/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231105/pulls{/number}",
+ "pushed_at": "2019-05-31T02:07:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231105/releases{/id}",
+ "size": 391,
+ "ssh_url": "git@github.com:OpenSourceBrain/231105.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231105/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231105/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231105/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231105/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231105",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231105/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231105/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231105/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231105",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231185": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231185/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231185/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231185/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231185/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231185.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231185/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231185/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231185/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231185/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231185/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231185/contributors",
+ "created_at": "2024-01-11T19:23:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231185/deployments",
+ "description": "Orientation preference in L23 V1 pyramidal neurons (Park et al 2019)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231185/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231185/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231185/forks",
+ "full_name": "OpenSourceBrain/231185",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231185/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231185/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231185/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231185.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231185",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231185/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231185",
+ "id": 742108109,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231185/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231185/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231185/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231185/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231185/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231185/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231185/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231185/milestones{/number}",
+ "mirror_url": null,
+ "name": "231185",
+ "node_id": "R_kgDOLDurzQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231185/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231185/pulls{/number}",
+ "pushed_at": "2019-12-03T21:46:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231185/releases{/id}",
+ "size": 43,
+ "ssh_url": "git@github.com:OpenSourceBrain/231185.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231185/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231185/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231185/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231185/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231185",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231185/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231185/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231185/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231185",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231238": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231238/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231238/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231238/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231238/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231238.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231238/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231238/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231238/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231238/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231238/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231238/contributors",
+ "created_at": "2024-01-11T19:23:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231238/deployments",
+ "description": "CN bushy, stellate neurons (Rothman, Manis 2003) (Brian 2)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231238/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231238/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231238/forks",
+ "full_name": "OpenSourceBrain/231238",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231238/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231238/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231238/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231238.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231238",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231238/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231238",
+ "id": 742108119,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231238/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231238/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231238/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231238/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231238/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231238/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231238/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231238/milestones{/number}",
+ "mirror_url": null,
+ "name": "231238",
+ "node_id": "R_kgDOLDur1w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231238/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231238/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231238/releases{/id}",
+ "size": 35,
+ "ssh_url": "git@github.com:OpenSourceBrain/231238.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231238/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231238/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231238/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231238/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231238",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231238/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231238/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231238/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231238",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231392": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231392/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231392/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231392/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231392/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231392.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231392/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231392/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231392/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231392/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231392/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231392/contributors",
+ "created_at": "2024-01-11T19:23:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231392/deployments",
+ "description": "Development of modular activity of grid cells (Urdapilleta et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231392/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231392/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231392/forks",
+ "full_name": "OpenSourceBrain/231392",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231392/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231392/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231392/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231392.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231392",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231392/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231392",
+ "id": 742108132,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231392/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231392/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231392/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231392/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231392/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231392/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231392/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231392/milestones{/number}",
+ "mirror_url": null,
+ "name": "231392",
+ "node_id": "R_kgDOLDur5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231392/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231392/pulls{/number}",
+ "pushed_at": "2019-05-31T03:28:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231392/releases{/id}",
+ "size": 2184,
+ "ssh_url": "git@github.com:OpenSourceBrain/231392.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231392/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231392/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231392/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231392/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231392",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231392/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231392/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231392/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231392",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231416": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231416/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231416/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231416/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231416/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231416.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231416/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231416/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231416/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231416/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231416/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231416/contributors",
+ "created_at": "2024-01-11T19:23:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231416/deployments",
+ "description": "Specific inhibition of dendritic plateau potential in striatal projection neurons (Du et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231416/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231416/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231416/forks",
+ "full_name": "OpenSourceBrain/231416",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231416/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231416/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231416/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231416.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231416",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231416/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231416",
+ "id": 742108141,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231416/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231416/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231416/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231416/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231416/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231416/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231416/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231416/milestones{/number}",
+ "mirror_url": null,
+ "name": "231416",
+ "node_id": "R_kgDOLDur7Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231416/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231416/pulls{/number}",
+ "pushed_at": "2019-05-31T02:52:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231416/releases{/id}",
+ "size": 207,
+ "ssh_url": "git@github.com:OpenSourceBrain/231416.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231416/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231416/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231416/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231416/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231416",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231416/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231416/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231416/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231416",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231427": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231427/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231427/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231427/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231427/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231427.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231427/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231427/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231427/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231427/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231427/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231427/contributors",
+ "created_at": "2024-01-11T19:23:30Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231427/deployments",
+ "description": "Shaping NMDA spikes by timed synaptic inhibition on L5PC (Doron et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231427/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231427/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231427/forks",
+ "full_name": "OpenSourceBrain/231427",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231427/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231427/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231427/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231427.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231427",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231427/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231427",
+ "id": 742108148,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231427/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231427/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231427/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231427/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231427/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231427/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231427/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231427/milestones{/number}",
+ "mirror_url": null,
+ "name": "231427",
+ "node_id": "R_kgDOLDur9A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231427/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231427/pulls{/number}",
+ "pushed_at": "2023-11-28T21:14:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231427/releases{/id}",
+ "size": 18457,
+ "ssh_url": "git@github.com:OpenSourceBrain/231427.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231427/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231427/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231427/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231427/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231427",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231427/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231427/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231427/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231427",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231814": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231814/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231814/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231814/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231814/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231814.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231814/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231814/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231814/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231814/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231814/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231814/contributors",
+ "created_at": "2024-01-11T19:23:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231814/deployments",
+ "description": "Model for concentration invariant odor coding based on primacy hypothesis (Wilson et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231814/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231814/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231814/forks",
+ "full_name": "OpenSourceBrain/231814",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231814/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231814/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231814/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231814.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231814",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231814/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231814",
+ "id": 742108157,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231814/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231814/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231814/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231814/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231814/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231814/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231814/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231814/milestones{/number}",
+ "mirror_url": null,
+ "name": "231814",
+ "node_id": "R_kgDOLDur_Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231814/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231814/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231814/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/231814.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231814/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231814/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231814/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231814/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231814",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231814/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231814/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231814/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231814",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231815": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231815/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231815/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231815/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231815/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231815.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231815/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231815/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231815/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231815/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231815/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231815/contributors",
+ "created_at": "2024-01-11T19:23:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231815/deployments",
+ "description": "Vertical system (VS) fly cells with biophysics (Dan et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231815/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231815/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231815/forks",
+ "full_name": "OpenSourceBrain/231815",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231815/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231815/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231815/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231815.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/231815",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231815/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231815",
+ "id": 742108165,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231815/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231815/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231815/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231815/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231815/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231815/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231815/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231815/milestones{/number}",
+ "mirror_url": null,
+ "name": "231815",
+ "node_id": "R_kgDOLDusBQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231815/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231815/pulls{/number}",
+ "pushed_at": "2020-03-08T15:12:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231815/releases{/id}",
+ "size": 120,
+ "ssh_url": "git@github.com:OpenSourceBrain/231815.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231815/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231815/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231815/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231815/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231815",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231815/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231815/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231815/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231815",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231818": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231818/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231818/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231818/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231818/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231818.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231818/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231818/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231818/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231818/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231818/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231818/contributors",
+ "created_at": "2024-01-11T19:23:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231818/deployments",
+ "description": "GC model (Beining et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231818/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231818/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231818/forks",
+ "full_name": "OpenSourceBrain/231818",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231818/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231818/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231818/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231818.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231818/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231818",
+ "id": 742108174,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231818/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231818/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231818/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231818/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231818/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231818/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231818/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231818/milestones{/number}",
+ "mirror_url": null,
+ "name": "231818",
+ "node_id": "R_kgDOLDusDg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231818/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231818/pulls{/number}",
+ "pushed_at": "2018-07-11T20:52:37Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231818/releases{/id}",
+ "size": 6463,
+ "ssh_url": "git@github.com:OpenSourceBrain/231818.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231818/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231818/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231818/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231818/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231818",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231818/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231818/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231818/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231818",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231849": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231849/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231849/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231849/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231849/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231849.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231849/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231849/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231849/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231849/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231849/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231849/contributors",
+ "created_at": "2024-01-11T19:23:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231849/deployments",
+ "description": "The neuro-electronic junction (planar and engulfed electrodes) (Massobrio et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231849/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231849/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231849/forks",
+ "full_name": "OpenSourceBrain/231849",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231849/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231849/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231849/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231849.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231849",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231849/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231849",
+ "id": 742108189,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231849/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231849/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231849/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231849/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231849/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231849/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231849/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231849/milestones{/number}",
+ "mirror_url": null,
+ "name": "231849",
+ "node_id": "R_kgDOLDusHQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231849/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231849/pulls{/number}",
+ "pushed_at": "2019-05-31T05:08:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231849/releases{/id}",
+ "size": 28,
+ "ssh_url": "git@github.com:OpenSourceBrain/231849.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231849/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231849/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231849/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231849/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231849",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231849/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231849/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231849/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231849",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231859": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231859/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231859/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231859/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231859/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231859.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231859/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231859/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231859/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231859/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231859/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231859/contributors",
+ "created_at": "2024-01-11T19:23:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231859/deployments",
+ "description": "Modelling the effects of short and random proto-neural elongations (de Wiljes et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231859/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231859/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231859/forks",
+ "full_name": "OpenSourceBrain/231859",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231859/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231859/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231859/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231859.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231859",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231859/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231859",
+ "id": 742108202,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231859/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231859/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231859/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231859/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231859/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231859/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231859/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231859/milestones{/number}",
+ "mirror_url": null,
+ "name": "231859",
+ "node_id": "R_kgDOLDusKg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231859/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231859/pulls{/number}",
+ "pushed_at": "2019-05-31T04:25:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231859/releases{/id}",
+ "size": 30,
+ "ssh_url": "git@github.com:OpenSourceBrain/231859.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231859/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231859/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231859/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231859/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231859",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231859/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231859/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231859/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231859",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/231862": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/231862/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/231862/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/231862/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/231862/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/231862.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/231862/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/231862/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/231862/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/231862/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/231862/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/231862/contributors",
+ "created_at": "2024-01-11T19:23:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/231862/deployments",
+ "description": "Mature and young adult-born dentate granule cell models (T2N interface) (Beining et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/231862/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/231862/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/231862/forks",
+ "full_name": "OpenSourceBrain/231862",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/231862/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/231862/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/231862/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/231862.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/231862",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/231862/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/231862",
+ "id": 742108215,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/231862/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/231862/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/231862/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/231862/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/231862/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/231862/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/231862/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/231862/milestones{/number}",
+ "mirror_url": null,
+ "name": "231862",
+ "node_id": "R_kgDOLDusNw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/231862/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/231862/pulls{/number}",
+ "pushed_at": "2019-09-04T22:25:30Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/231862/releases{/id}",
+ "size": 122277,
+ "ssh_url": "git@github.com:OpenSourceBrain/231862.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/231862/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/231862/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/231862/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/231862/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/231862",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/231862/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/231862/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/231862/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/231862",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232023": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232023/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232023/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232023/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232023/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232023.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232023/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232023/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232023/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232023/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232023/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232023/contributors",
+ "created_at": "2024-01-11T19:23:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232023/deployments",
+ "description": "Model of the cerebellar granular network (Sudhakar et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232023/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232023/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232023/forks",
+ "full_name": "OpenSourceBrain/232023",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232023/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232023/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232023/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232023.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/232023",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232023/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232023",
+ "id": 742108228,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232023/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232023/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232023/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232023/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232023/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232023/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232023/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232023/milestones{/number}",
+ "mirror_url": null,
+ "name": "232023",
+ "node_id": "R_kgDOLDusRA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232023/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232023/pulls{/number}",
+ "pushed_at": "2023-11-28T21:14:51Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232023/releases{/id}",
+ "size": 621,
+ "ssh_url": "git@github.com:OpenSourceBrain/232023.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232023/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232023/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232023/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232023/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232023",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232023/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232023/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232023/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232023",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232074": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232074/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232074/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232074/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232074/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232074.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232074/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232074/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232074/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232074/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232074/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232074/contributors",
+ "created_at": "2024-01-11T19:23:46Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232074/deployments",
+ "description": "Behavioral time scale synaptic plasticity underlies CA1 place fields (Bittner et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232074/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232074/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232074/forks",
+ "full_name": "OpenSourceBrain/232074",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232074/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232074/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232074/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232074.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/232074",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232074/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232074",
+ "id": 742108246,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232074/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232074/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232074/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232074/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232074/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232074/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232074/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232074/milestones{/number}",
+ "mirror_url": null,
+ "name": "232074",
+ "node_id": "R_kgDOLDusVg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232074/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232074/pulls{/number}",
+ "pushed_at": "2023-12-23T03:56:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232074/releases{/id}",
+ "size": 18448,
+ "ssh_url": "git@github.com:OpenSourceBrain/232074.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232074/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232074/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232074/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232074/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232074",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232074/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232074/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232074/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232074",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232094": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232094/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232094/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232094/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232094/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232094.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232094/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232094/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232094/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232094/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232094/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232094/contributors",
+ "created_at": "2024-01-11T19:23:49Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232094/deployments",
+ "description": "Dipolar extracellular potentials generated by axonal projections (McColgan et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232094/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232094/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232094/forks",
+ "full_name": "OpenSourceBrain/232094",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232094/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232094/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232094/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232094.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/232094",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232094/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232094",
+ "id": 742108262,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232094/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232094/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232094/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232094/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232094/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232094/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232094/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232094/milestones{/number}",
+ "mirror_url": null,
+ "name": "232094",
+ "node_id": "R_kgDOLDusZg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232094/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232094/pulls{/number}",
+ "pushed_at": "2023-12-23T03:57:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232094/releases{/id}",
+ "size": 145,
+ "ssh_url": "git@github.com:OpenSourceBrain/232094.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232094/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232094/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232094/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232094/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232094",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232094/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232094/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232094/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232094",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232096": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232096/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232096/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232096/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232096/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232096.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232096/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232096/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232096/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232096/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232096/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232096/contributors",
+ "created_at": "2024-01-11T19:23:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232096/deployments",
+ "description": "Statistical Long-term Synaptic Plasticity (statLTSP) (Costa et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232096/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232096/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232096/forks",
+ "full_name": "OpenSourceBrain/232096",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232096/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232096/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232096/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232096.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232096/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232096",
+ "id": 742108280,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232096/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232096/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232096/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232096/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232096/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232096/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232096/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232096/milestones{/number}",
+ "mirror_url": null,
+ "name": "232096",
+ "node_id": "R_kgDOLDuseA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232096/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232096/pulls{/number}",
+ "pushed_at": "2018-06-12T14:08:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232096/releases{/id}",
+ "size": 235,
+ "ssh_url": "git@github.com:OpenSourceBrain/232096.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232096/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232096/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232096/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232096/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232096",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232096/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232096/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232096/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232096",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232097": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232097/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232097/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232097/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232097/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232097.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232097/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232097/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232097/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232097/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232097/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232097/contributors",
+ "created_at": "2024-01-11T19:23:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232097/deployments",
+ "description": "2D model of olfactory bulb gamma oscillations (Li and Cleland 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232097/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232097/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232097/forks",
+ "full_name": "OpenSourceBrain/232097",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232097/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232097/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232097/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232097.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/232097",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232097/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232097",
+ "id": 742108292,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232097/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232097/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232097/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232097/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232097/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232097/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232097/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232097/milestones{/number}",
+ "mirror_url": null,
+ "name": "232097",
+ "node_id": "R_kgDOLDushA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232097/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232097/pulls{/number}",
+ "pushed_at": "2023-11-28T21:14:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232097/releases{/id}",
+ "size": 70,
+ "ssh_url": "git@github.com:OpenSourceBrain/232097.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232097/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232097/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232097/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232097/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232097",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232097/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232097/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232097/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232097",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232813": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232813/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232813/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232813/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232813/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232813.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232813/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232813/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232813/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232813/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232813/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232813/contributors",
+ "created_at": "2024-01-11T19:23:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232813/deployments",
+ "description": "Zebrafish Mauthner-cell model (Watanabe et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232813/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232813/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232813/forks",
+ "full_name": "OpenSourceBrain/232813",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232813/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232813/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232813/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232813.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/232813",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232813/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232813",
+ "id": 742108303,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232813/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232813/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232813/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232813/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232813/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232813/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232813/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232813/milestones{/number}",
+ "mirror_url": null,
+ "name": "232813",
+ "node_id": "R_kgDOLDusjw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232813/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232813/pulls{/number}",
+ "pushed_at": "2018-04-23T19:07:48Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232813/releases{/id}",
+ "size": 115,
+ "ssh_url": "git@github.com:OpenSourceBrain/232813.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232813/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232813/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232813/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232813/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232813",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232813/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232813/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232813/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232813",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232855": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232855/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232855/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232855/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232855/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232855.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232855/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232855/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232855/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232855/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232855/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232855/contributors",
+ "created_at": "2024-01-11T19:23:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232855/deployments",
+ "description": "Electrical activity of the suprachiasmatic nuclei (Stinchcombe et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232855/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232855/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232855/forks",
+ "full_name": "OpenSourceBrain/232855",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232855/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232855/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232855/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232855.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/232855",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232855/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232855",
+ "id": 742108312,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232855/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232855/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232855/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232855/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232855/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232855/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232855/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232855/milestones{/number}",
+ "mirror_url": null,
+ "name": "232855",
+ "node_id": "R_kgDOLDusmA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232855/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232855/pulls{/number}",
+ "pushed_at": "2019-05-31T03:38:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232855/releases{/id}",
+ "size": 6,
+ "ssh_url": "git@github.com:OpenSourceBrain/232855.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232855/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232855/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232855/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232855/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232855",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232855/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232855/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232855/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232855",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232875": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232875/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232875/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232875/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232875/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232875.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232875/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232875/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232875/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232875/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232875/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232875/contributors",
+ "created_at": "2024-01-11T19:23:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232875/deployments",
+ "description": "Basal ganglia motor function and the inverse kinematics calculation (Salimi-Badr et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232875/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232875/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232875/forks",
+ "full_name": "OpenSourceBrain/232875",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232875/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232875/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232875/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232875.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/232875",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232875/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232875",
+ "id": 742108324,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232875/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232875/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232875/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232875/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232875/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232875/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232875/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232875/milestones{/number}",
+ "mirror_url": null,
+ "name": "232875",
+ "node_id": "R_kgDOLDuspA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232875/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232875/pulls{/number}",
+ "pushed_at": "2019-05-31T02:57:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232875/releases{/id}",
+ "size": 237,
+ "ssh_url": "git@github.com:OpenSourceBrain/232875.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232875/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232875/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232875/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232875/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232875",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232875/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232875/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232875/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:23:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232875",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232876": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232876/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232876/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232876/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232876/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232876.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232876/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232876/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232876/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232876/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232876/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232876/contributors",
+ "created_at": "2024-01-11T19:24:02Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232876/deployments",
+ "description": "Thalamocortical Relay cell under current clamp in high-conductance state (Zeldenrust et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232876/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232876/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232876/forks",
+ "full_name": "OpenSourceBrain/232876",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232876/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232876/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232876/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232876.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/232876",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232876/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232876",
+ "id": 742108340,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232876/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232876/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232876/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232876/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232876/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232876/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232876/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232876/milestones{/number}",
+ "mirror_url": null,
+ "name": "232876",
+ "node_id": "R_kgDOLDustA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232876/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232876/pulls{/number}",
+ "pushed_at": "2023-11-28T21:15:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232876/releases{/id}",
+ "size": 18957,
+ "ssh_url": "git@github.com:OpenSourceBrain/232876.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232876/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232876/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232876/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232876/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232876",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232876/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232876/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232876/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232876",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232913": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232913/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232913/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232913/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232913/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232913.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232913/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232913/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232913/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232913/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232913/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232913/contributors",
+ "created_at": "2024-01-11T19:24:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232913/deployments",
+ "description": "Smoothing of, and parameter estimation from, noisy biophysical recordings (Huys & Paninski 2009)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232913/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232913/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232913/forks",
+ "full_name": "OpenSourceBrain/232913",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232913/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232913/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232913/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232913.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/232913",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232913/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232913",
+ "id": 742108352,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232913/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232913/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232913/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232913/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232913/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232913/languages",
+ "license": {
+ "key": "gpl-2.0",
+ "name": "GNU General Public License v2.0",
+ "node_id": "MDc6TGljZW5zZTg=",
+ "spdx_id": "GPL-2.0",
+ "url": "https://api.github.com/licenses/gpl-2.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232913/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232913/milestones{/number}",
+ "mirror_url": null,
+ "name": "232913",
+ "node_id": "R_kgDOLDuswA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232913/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232913/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232913/releases{/id}",
+ "size": 11,
+ "ssh_url": "git@github.com:OpenSourceBrain/232913.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232913/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232913/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232913/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232913/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232913",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232913/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232913/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232913/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232913",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232914": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232914/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232914/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232914/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232914/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232914.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232914/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232914/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232914/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232914/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232914/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232914/contributors",
+ "created_at": "2024-01-11T19:24:06Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232914/deployments",
+ "description": "Modeling dendritic spikes and plasticity (Bono and Clopath 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232914/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232914/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232914/forks",
+ "full_name": "OpenSourceBrain/232914",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232914/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232914/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232914/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232914.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232914/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232914",
+ "id": 742108365,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232914/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232914/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232914/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232914/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232914/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232914/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232914/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232914/milestones{/number}",
+ "mirror_url": null,
+ "name": "232914",
+ "node_id": "R_kgDOLDuszQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232914/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232914/pulls{/number}",
+ "pushed_at": "2019-03-20T13:06:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232914/releases{/id}",
+ "size": 86,
+ "ssh_url": "git@github.com:OpenSourceBrain/232914.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232914/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232914/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232914/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232914/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232914",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232914/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232914/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232914/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232914",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/232956": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/232956/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/232956/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/232956/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/232956/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/232956.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/232956/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/232956/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/232956/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/232956/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/232956/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/232956/contributors",
+ "created_at": "2024-01-11T19:24:08Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/232956/deployments",
+ "description": "A mathematical model of a neurovascular unit (Dormanns et al 2015, 2016) (Farrs & David 2011)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/232956/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/232956/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/232956/forks",
+ "full_name": "OpenSourceBrain/232956",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/232956/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/232956/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/232956/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/232956.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/232956",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/232956/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/232956",
+ "id": 742108376,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/232956/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/232956/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/232956/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/232956/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/232956/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/232956/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/232956/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/232956/milestones{/number}",
+ "mirror_url": null,
+ "name": "232956",
+ "node_id": "R_kgDOLDus2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/232956/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/232956/pulls{/number}",
+ "pushed_at": "2019-05-31T04:35:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/232956/releases{/id}",
+ "size": 18,
+ "ssh_url": "git@github.com:OpenSourceBrain/232956.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/232956/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/232956/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/232956/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/232956/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/232956",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/232956/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/232956/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/232956/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:08Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/232956",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/233396": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/233396/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/233396/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/233396/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/233396/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/233396.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/233396/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/233396/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/233396/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/233396/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/233396/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/233396/contributors",
+ "created_at": "2024-01-11T19:24:10Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/233396/deployments",
+ "description": "Sequential neuromodulation of Hebbian plasticity in reward-based navigation (Brzosko et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/233396/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/233396/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/233396/forks",
+ "full_name": "OpenSourceBrain/233396",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/233396/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/233396/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/233396/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/233396.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/233396/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/233396",
+ "id": 742108388,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/233396/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/233396/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/233396/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/233396/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/233396/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/233396/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/233396/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/233396/milestones{/number}",
+ "mirror_url": null,
+ "name": "233396",
+ "node_id": "R_kgDOLDus5A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/233396/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/233396/pulls{/number}",
+ "pushed_at": "2018-09-18T20:31:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/233396/releases{/id}",
+ "size": 33,
+ "ssh_url": "git@github.com:OpenSourceBrain/233396.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/233396/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/233396/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/233396/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/233396/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/233396",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/233396/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/233396/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/233396/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:10Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/233396",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/233509": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/233509/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/233509/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/233509/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/233509/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/233509.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/233509/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/233509/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/233509/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/233509/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/233509/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/233509/contributors",
+ "created_at": "2024-01-11T19:24:12Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/233509/deployments",
+ "description": "A unified thalamic model of multiple distinct oscillations (Li, Henriquez and Fr\u00f6hlich 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/233509/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/233509/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/233509/forks",
+ "full_name": "OpenSourceBrain/233509",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/233509/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/233509/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/233509/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/233509.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/233509",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/233509/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/233509",
+ "id": 742108398,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/233509/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/233509/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/233509/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/233509/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/233509/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/233509/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/233509/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/233509/milestones{/number}",
+ "mirror_url": null,
+ "name": "233509",
+ "node_id": "R_kgDOLDus7g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/233509/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/233509/pulls{/number}",
+ "pushed_at": "2018-04-23T19:09:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/233509/releases{/id}",
+ "size": 1468,
+ "ssh_url": "git@github.com:OpenSourceBrain/233509.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/233509/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/233509/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/233509/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/233509/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/233509",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/233509/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/233509/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/233509/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:12Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/233509",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/234097": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/234097/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/234097/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/234097/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/234097/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/234097.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/234097/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/234097/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/234097/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/234097/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/234097/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/234097/contributors",
+ "created_at": "2024-01-11T19:24:14Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/234097/deployments",
+ "description": "Hebbian learning in a random network for PFC modeling (Lindsay, et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/234097/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/234097/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/234097/forks",
+ "full_name": "OpenSourceBrain/234097",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/234097/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/234097/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/234097/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/234097.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/234097",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/234097/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/234097",
+ "id": 742108405,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/234097/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/234097/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/234097/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/234097/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/234097/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/234097/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/234097/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/234097/milestones{/number}",
+ "mirror_url": null,
+ "name": "234097",
+ "node_id": "R_kgDOLDus9Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/234097/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/234097/pulls{/number}",
+ "pushed_at": "2019-05-31T02:18:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/234097/releases{/id}",
+ "size": 32,
+ "ssh_url": "git@github.com:OpenSourceBrain/234097.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/234097/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/234097/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/234097/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/234097/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/234097",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/234097/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/234097/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/234097/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:14Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/234097",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/234101": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/234101/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/234101/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/234101/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/234101/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/234101.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/234101/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/234101/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/234101/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/234101/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/234101/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/234101/contributors",
+ "created_at": "2024-01-11T19:24:16Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/234101/deployments",
+ "description": "Spinal circuits controlling limb coordination and gaits in quadrupeds (Danner et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/234101/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/234101/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/234101/forks",
+ "full_name": "OpenSourceBrain/234101",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/234101/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/234101/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/234101/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/234101.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/234101",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/234101/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/234101",
+ "id": 742108415,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/234101/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/234101/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/234101/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/234101/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/234101/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/234101/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/234101/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/234101/milestones{/number}",
+ "mirror_url": null,
+ "name": "234101",
+ "node_id": "R_kgDOLDus_w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/234101/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/234101/pulls{/number}",
+ "pushed_at": "2023-11-28T21:16:01Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/234101/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/234101.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/234101/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/234101/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/234101/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/234101/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/234101",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/234101/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/234101/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/234101/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:16Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/234101",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/234111": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/234111/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/234111/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/234111/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/234111/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/234111.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/234111/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/234111/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/234111/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/234111/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/234111/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/234111/contributors",
+ "created_at": "2024-01-11T19:24:18Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/234111/deployments",
+ "description": "Calculating the consequences of left-shifted Nav channel activity in sick cells (Joos et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/234111/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/234111/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/234111/forks",
+ "full_name": "OpenSourceBrain/234111",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/234111/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/234111/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/234111/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/234111.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/234111",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/234111/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/234111",
+ "id": 742108424,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/234111/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/234111/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/234111/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/234111/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/234111/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/234111/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/234111/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/234111/milestones{/number}",
+ "mirror_url": null,
+ "name": "234111",
+ "node_id": "R_kgDOLDutCA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/234111/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/234111/pulls{/number}",
+ "pushed_at": "2020-04-22T16:32:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/234111/releases{/id}",
+ "size": 666,
+ "ssh_url": "git@github.com:OpenSourceBrain/234111.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/234111/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/234111/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/234111/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/234111/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/234111",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/234111/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/234111/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/234111/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/234111",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/234118": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/234118/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/234118/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/234118/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/234118/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/234118.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/234118/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/234118/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/234118/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/234118/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/234118/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/234118/contributors",
+ "created_at": "2024-01-11T19:24:20Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/234118/deployments",
+ "description": "A spiking neural network model of the Lateral Geniculate Nucleus (Sen-Bhattacharya et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/234118/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/234118/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/234118/forks",
+ "full_name": "OpenSourceBrain/234118",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/234118/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/234118/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/234118/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/234118.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/234118",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/234118/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/234118",
+ "id": 742108436,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/234118/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/234118/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/234118/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/234118/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/234118/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/234118/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/234118/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/234118/milestones{/number}",
+ "mirror_url": null,
+ "name": "234118",
+ "node_id": "R_kgDOLDutFA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/234118/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/234118/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/234118/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/234118.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/234118/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/234118/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/234118/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/234118/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/234118",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/234118/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/234118/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/234118/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/234118",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/234233": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/234233/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/234233/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/234233/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/234233/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/234233.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/234233/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/234233/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/234233/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/234233/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/234233/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/234233/contributors",
+ "created_at": "2024-01-11T19:24:22Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/234233/deployments",
+ "description": "Knox implementation of Destexhe 1998 spike and wave oscillation model (Knox et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/234233/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/234233/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/234233/forks",
+ "full_name": "OpenSourceBrain/234233",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/234233/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/234233/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/234233/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/234233.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/234233",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/234233/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/234233",
+ "id": 742108446,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/234233/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/234233/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/234233/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/234233/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/234233/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/234233/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/234233/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/234233/milestones{/number}",
+ "mirror_url": null,
+ "name": "234233",
+ "node_id": "R_kgDOLDutHg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/234233/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/234233/pulls{/number}",
+ "pushed_at": "2019-05-31T03:19:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/234233/releases{/id}",
+ "size": 1433,
+ "ssh_url": "git@github.com:OpenSourceBrain/234233.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/234233/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/234233/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/234233/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/234233/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/234233",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/234233/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/234233/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/234233/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/234233",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/234241": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/234241/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/234241/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/234241/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/234241/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/234241.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/234241/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/234241/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/234241/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/234241/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/234241/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/234241/contributors",
+ "created_at": "2024-01-11T19:24:24Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/234241/deployments",
+ "description": "Spike-timing dependent inhibitory plasticity for gating bAPs (Wilmes et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/234241/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/234241/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/234241/forks",
+ "full_name": "OpenSourceBrain/234241",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/234241/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/234241/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/234241/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/234241.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/234241",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/234241/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/234241",
+ "id": 742108459,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/234241/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/234241/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/234241/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/234241/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/234241/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/234241/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/234241/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/234241/milestones{/number}",
+ "mirror_url": null,
+ "name": "234241",
+ "node_id": "R_kgDOLDutKw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/234241/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/234241/pulls{/number}",
+ "pushed_at": "2018-04-23T19:09:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/234241/releases{/id}",
+ "size": 211,
+ "ssh_url": "git@github.com:OpenSourceBrain/234241.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/234241/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/234241/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/234241/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/234241/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/234241",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/234241/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/234241/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/234241/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/234241",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/234313": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/234313/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/234313/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/234313/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/234313/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/234313.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/234313/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/234313/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/234313/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/234313/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/234313/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/234313/contributors",
+ "created_at": "2024-01-11T19:24:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/234313/deployments",
+ "description": "Basal Ganglia motor-circuit for kinematic planning of arm movements (Salimi-Badr et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/234313/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/234313/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/234313/forks",
+ "full_name": "OpenSourceBrain/234313",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/234313/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/234313/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/234313/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/234313.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/234313",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/234313/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/234313",
+ "id": 742108483,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/234313/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/234313/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/234313/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/234313/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/234313/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/234313/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/234313/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/234313/milestones{/number}",
+ "mirror_url": null,
+ "name": "234313",
+ "node_id": "R_kgDOLDutQw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/234313/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/234313/pulls{/number}",
+ "pushed_at": "2018-04-23T19:10:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/234313/releases{/id}",
+ "size": 112,
+ "ssh_url": "git@github.com:OpenSourceBrain/234313.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/234313/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/234313/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/234313/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/234313/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/234313",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/234313/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/234313/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/234313/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/234313",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/234992": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/234992/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/234992/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/234992/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/234992/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/234992.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/234992/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/234992/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/234992/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/234992/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/234992/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/234992/contributors",
+ "created_at": "2024-01-11T19:24:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/234992/deployments",
+ "description": "Mesoscopic dynamics from AdEx recurrent networks (Zerlaut et al., JCNS 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/234992/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/234992/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/234992/forks",
+ "full_name": "OpenSourceBrain/234992",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/234992/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/234992/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/234992/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/234992.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/234992",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/234992/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/234992",
+ "id": 742108497,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/234992/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/234992/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/234992/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/234992/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/234992/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/234992/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/234992/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/234992/milestones{/number}",
+ "mirror_url": null,
+ "name": "234992",
+ "node_id": "R_kgDOLDutUQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/234992/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/234992/pulls{/number}",
+ "pushed_at": "2019-05-31T03:43:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/234992/releases{/id}",
+ "size": 9270,
+ "ssh_url": "git@github.com:OpenSourceBrain/234992.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/234992/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/234992/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/234992/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/234992/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/234992",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/234992/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/234992/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/234992/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/234992",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235002": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235002/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235002/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235002/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235002/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235002.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235002/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235002/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235002/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235002/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235002/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235002/contributors",
+ "created_at": "2024-01-11T19:24:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235002/deployments",
+ "description": "A computational approach/model to explore NMDA receptors functions (Keller et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235002/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235002/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235002/forks",
+ "full_name": "OpenSourceBrain/235002",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235002/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235002/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235002/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235002.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/235002",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235002/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235002",
+ "id": 742108509,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235002/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235002/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235002/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235002/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235002/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235002/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235002/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235002/milestones{/number}",
+ "mirror_url": null,
+ "name": "235002",
+ "node_id": "R_kgDOLDutXQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235002/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235002/pulls{/number}",
+ "pushed_at": "2018-04-23T19:10:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235002/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/235002.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235002/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235002/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235002/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235002/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235002",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235002/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235002/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235002/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235002",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235052": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235052/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235052/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235052/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235052/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235052.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235052/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235052/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235052/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235052/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235052/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235052/contributors",
+ "created_at": "2024-01-11T19:24:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235052/deployments",
+ "description": "Paradoxical effect of fAHP amplitude on gain in dentate gyrus granule cells (Jaffe & Brenner 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235052/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235052/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235052/forks",
+ "full_name": "OpenSourceBrain/235052",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235052/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235052/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235052/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235052.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235052",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235052/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235052",
+ "id": 742108521,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235052/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235052/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235052/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235052/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235052/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235052/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235052/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235052/milestones{/number}",
+ "mirror_url": null,
+ "name": "235052",
+ "node_id": "R_kgDOLDutaQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235052/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235052/pulls{/number}",
+ "pushed_at": "2019-05-31T03:44:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235052/releases{/id}",
+ "size": 45,
+ "ssh_url": "git@github.com:OpenSourceBrain/235052.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235052/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235052/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235052/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235052/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235052",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235052/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235052/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235052/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235052",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235053": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235053/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235053/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235053/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235053/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235053.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235053/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235053/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235053/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235053/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235053/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235053/contributors",
+ "created_at": "2024-01-11T19:24:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235053/deployments",
+ "description": "Sparse connectivity is required for decorrelation, pattern separation (Cayco-Gajic et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235053/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235053/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235053/forks",
+ "full_name": "OpenSourceBrain/235053",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235053/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235053/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235053/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235053.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235053",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235053/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235053",
+ "id": 742108535,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235053/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235053/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235053/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235053/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235053/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235053/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235053/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235053/milestones{/number}",
+ "mirror_url": null,
+ "name": "235053",
+ "node_id": "R_kgDOLDutdw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235053/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235053/pulls{/number}",
+ "pushed_at": "2019-05-31T03:47:33Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235053/releases{/id}",
+ "size": 16947,
+ "ssh_url": "git@github.com:OpenSourceBrain/235053.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235053/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235053/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235053/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235053/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235053",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235053/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235053/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235053/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235053",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235054": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235054/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235054/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235054/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235054/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235054.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235054/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235054/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235054/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235054/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235054/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235054/contributors",
+ "created_at": "2024-01-11T19:24:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235054/deployments",
+ "description": "Perfect Integrate and fire with noisy adaptation or fractional noise (Richard et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235054/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235054/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235054/forks",
+ "full_name": "OpenSourceBrain/235054",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235054/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235054/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235054/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235054.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235054",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235054/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235054",
+ "id": 742108546,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235054/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235054/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235054/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235054/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235054/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235054/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235054/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235054/milestones{/number}",
+ "mirror_url": null,
+ "name": "235054",
+ "node_id": "R_kgDOLDutgg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235054/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235054/pulls{/number}",
+ "pushed_at": "2019-05-31T03:35:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235054/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/235054.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235054/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235054/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235054/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235054/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235054",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235054/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235054/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235054/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235054",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235123": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235123/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235123/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235123/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235123/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235123.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235123/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235123/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235123/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235123/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235123/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235123/contributors",
+ "created_at": "2024-01-11T19:24:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235123/deployments",
+ "description": "Neuromorphic muscle spindle model (Vannucci et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235123/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235123/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235123/forks",
+ "full_name": "OpenSourceBrain/235123",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235123/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235123/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235123/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235123.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235123",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235123/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235123",
+ "id": 742108554,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235123/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235123/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235123/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235123/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235123/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235123/languages",
+ "license": {
+ "key": "gpl-2.0",
+ "name": "GNU General Public License v2.0",
+ "node_id": "MDc6TGljZW5zZTg=",
+ "spdx_id": "GPL-2.0",
+ "url": "https://api.github.com/licenses/gpl-2.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235123/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235123/milestones{/number}",
+ "mirror_url": null,
+ "name": "235123",
+ "node_id": "R_kgDOLDutig",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235123/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235123/pulls{/number}",
+ "pushed_at": "2019-05-31T03:28:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235123/releases{/id}",
+ "size": 57,
+ "ssh_url": "git@github.com:OpenSourceBrain/235123.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235123/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235123/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235123/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235123/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235123",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235123/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235123/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235123/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235123",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235138": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235138/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235138/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235138/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235138/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235138.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235138/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235138/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235138/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235138/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235138/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235138/contributors",
+ "created_at": "2024-01-11T19:24:40Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235138/deployments",
+ "description": "Robust modulation of integrate-and-fire models (Van Pottelbergh et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235138/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235138/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235138/forks",
+ "full_name": "OpenSourceBrain/235138",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235138/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235138/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235138/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235138.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235138",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235138/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235138",
+ "id": 742108573,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235138/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235138/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235138/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235138/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235138/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235138/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235138/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235138/milestones{/number}",
+ "mirror_url": null,
+ "name": "235138",
+ "node_id": "R_kgDOLDutnQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235138/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235138/pulls{/number}",
+ "pushed_at": "2019-05-31T03:15:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235138/releases{/id}",
+ "size": 3,
+ "ssh_url": "git@github.com:OpenSourceBrain/235138.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235138/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235138/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235138/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235138/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235138",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235138/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235138/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235138/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235138",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235320": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235320/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235320/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235320/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235320/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235320.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235320/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235320/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235320/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235320/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235320/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235320/contributors",
+ "created_at": "2024-01-11T19:24:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235320/deployments",
+ "description": "Role of the AIS in the control of spontaneous frequency of dopaminergic neurons (Meza et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235320/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235320/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235320/forks",
+ "full_name": "OpenSourceBrain/235320",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235320/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235320/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235320/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235320.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235320",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235320/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235320",
+ "id": 742108584,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235320/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235320/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235320/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235320/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235320/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235320/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235320/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235320/milestones{/number}",
+ "mirror_url": null,
+ "name": "235320",
+ "node_id": "R_kgDOLDutqA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235320/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235320/pulls{/number}",
+ "pushed_at": "2019-05-31T03:33:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235320/releases{/id}",
+ "size": 64,
+ "ssh_url": "git@github.com:OpenSourceBrain/235320.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235320/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235320/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235320/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235320/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235320",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235320/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235320/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235320/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235320",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235376": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235376/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235376/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235376/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235376/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235376.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235376/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235376/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235376/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235376/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235376/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235376/contributors",
+ "created_at": "2024-01-11T19:24:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235376/deployments",
+ "description": "Model of cerebellar parallel fiber-Purkinje cell LTD and LTP (Gallimore et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235376/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235376/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235376/forks",
+ "full_name": "OpenSourceBrain/235376",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235376/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235376/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235376/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235376.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/235376",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235376/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235376",
+ "id": 742108600,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235376/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235376/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235376/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235376/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235376/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235376/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235376/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235376/milestones{/number}",
+ "mirror_url": null,
+ "name": "235376",
+ "node_id": "R_kgDOLDutuA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235376/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235376/pulls{/number}",
+ "pushed_at": "2018-04-23T19:11:21Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235376/releases{/id}",
+ "size": 60,
+ "ssh_url": "git@github.com:OpenSourceBrain/235376.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235376/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235376/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235376/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235376/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235376",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235376/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235376/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235376/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235376",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235377": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235377/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235377/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235377/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235377/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235377.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235377/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235377/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235377/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235377/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235377/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235377/contributors",
+ "created_at": "2024-01-11T19:24:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235377/deployments",
+ "description": "A model for recurrent spreading depolarizations (Conte et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235377/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235377/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235377/forks",
+ "full_name": "OpenSourceBrain/235377",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235377/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235377/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235377/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235377.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235377",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235377/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235377",
+ "id": 742108610,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235377/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235377/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235377/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235377/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235377/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235377/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235377/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235377/milestones{/number}",
+ "mirror_url": null,
+ "name": "235377",
+ "node_id": "R_kgDOLDutwg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235377/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235377/pulls{/number}",
+ "pushed_at": "2019-05-31T02:07:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235377/releases{/id}",
+ "size": 226,
+ "ssh_url": "git@github.com:OpenSourceBrain/235377.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235377/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235377/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235377/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235377/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235377",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235377/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235377/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235377/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235377",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235561": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235561/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235561/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235561/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235561/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235561.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235561/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235561/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235561/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235561/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235561/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235561/contributors",
+ "created_at": "2024-01-11T19:24:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235561/deployments",
+ "description": "The origin of different spike and wave-like events (Hall et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235561/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235561/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235561/forks",
+ "full_name": "OpenSourceBrain/235561",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235561/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235561/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235561/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235561.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235561",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235561/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235561",
+ "id": 742108620,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235561/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235561/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235561/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235561/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235561/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235561/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235561/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235561/milestones{/number}",
+ "mirror_url": null,
+ "name": "235561",
+ "node_id": "R_kgDOLDutzA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235561/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235561/pulls{/number}",
+ "pushed_at": "2019-05-31T02:49:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235561/releases{/id}",
+ "size": 979,
+ "ssh_url": "git@github.com:OpenSourceBrain/235561.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235561/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235561/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235561/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235561/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235561",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235561/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235561/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235561/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235561",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235768": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235768/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235768/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235768/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235768/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235768.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235768/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235768/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235768/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235768/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235768/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235768/contributors",
+ "created_at": "2024-01-11T19:24:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235768/deployments",
+ "description": "Unbalanced peptidergic inhibition in superficial cortex underlies seizure activity (Hall et al 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235768/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235768/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235768/forks",
+ "full_name": "OpenSourceBrain/235768",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235768/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235768/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235768/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235768.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235768",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235768/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235768",
+ "id": 742108632,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235768/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235768/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235768/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235768/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235768/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235768/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235768/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235768/milestones{/number}",
+ "mirror_url": null,
+ "name": "235768",
+ "node_id": "R_kgDOLDut2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235768/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235768/pulls{/number}",
+ "pushed_at": "2019-05-31T04:55:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235768/releases{/id}",
+ "size": 1593,
+ "ssh_url": "git@github.com:OpenSourceBrain/235768.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235768/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235768/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235768/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235768/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235768",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235768/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235768/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235768/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235768",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235769": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235769/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235769/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235769/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235769/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235769.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235769/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235769/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235769/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235769/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235769/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235769/contributors",
+ "created_at": "2024-01-11T19:24:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235769/deployments",
+ "description": "A model of slow motor unit (Kim, 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235769/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235769/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235769/forks",
+ "full_name": "OpenSourceBrain/235769",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235769/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235769/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235769/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235769.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/235769",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235769/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235769",
+ "id": 742108648,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235769/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235769/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235769/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235769/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235769/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235769/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235769/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235769/milestones{/number}",
+ "mirror_url": null,
+ "name": "235769",
+ "node_id": "R_kgDOLDut6A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235769/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235769/pulls{/number}",
+ "pushed_at": "2023-11-28T21:18:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235769/releases{/id}",
+ "size": 113,
+ "ssh_url": "git@github.com:OpenSourceBrain/235769.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235769/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235769/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235769/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235769/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235769",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235769/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235769/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235769/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235769",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/235774": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/235774/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/235774/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/235774/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/235774/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/235774.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/235774/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/235774/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/235774/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/235774/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/235774/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/235774/contributors",
+ "created_at": "2024-01-11T19:24:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/235774/deployments",
+ "description": "The role of glutamate in neuronal ion homeostasis: spreading depolarization (Hubel et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/235774/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/235774/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/235774/forks",
+ "full_name": "OpenSourceBrain/235774",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/235774/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/235774/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/235774/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/235774.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/235774",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/235774/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/235774",
+ "id": 742108659,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/235774/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/235774/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/235774/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/235774/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/235774/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/235774/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/235774/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/235774/milestones{/number}",
+ "mirror_url": null,
+ "name": "235774",
+ "node_id": "R_kgDOLDut8w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/235774/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/235774/pulls{/number}",
+ "pushed_at": "2022-02-18T16:07:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/235774/releases{/id}",
+ "size": 23,
+ "ssh_url": "git@github.com:OpenSourceBrain/235774.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/235774/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/235774/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/235774/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/235774/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/235774",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/235774/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/235774/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/235774/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/235774",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/236306": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/236306/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/236306/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/236306/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/236306/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/236306.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/236306/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/236306/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/236306/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/236306/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/236306/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/236306/contributors",
+ "created_at": "2024-01-11T19:24:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/236306/deployments",
+ "description": "Cortical oscillations and the basal ganglia (Fountas & Shanahan 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/236306/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/236306/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/236306/forks",
+ "full_name": "OpenSourceBrain/236306",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/236306/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/236306/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/236306/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/236306.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/236306",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/236306/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/236306",
+ "id": 742108672,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/236306/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/236306/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/236306/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/236306/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/236306/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/236306/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/236306/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/236306/milestones{/number}",
+ "mirror_url": null,
+ "name": "236306",
+ "node_id": "R_kgDOLDuuAA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/236306/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/236306/pulls{/number}",
+ "pushed_at": "2019-05-31T04:28:44Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/236306/releases{/id}",
+ "size": 43,
+ "ssh_url": "git@github.com:OpenSourceBrain/236306.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/236306/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/236306/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/236306/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/236306/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/236306",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/236306/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/236306/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/236306/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/236306",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/236310": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/236310/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/236310/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/236310/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/236310/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/236310.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/236310/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/236310/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/236310/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/236310/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/236310/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/236310/contributors",
+ "created_at": "2024-01-11T19:24:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/236310/deployments",
+ "description": "Electrotonic transform and EPSCs for WT and Q175+/- spiny projection neurons (Goodliffe et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/236310/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/236310/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/236310/forks",
+ "full_name": "OpenSourceBrain/236310",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/236310/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/236310/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/236310/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/236310.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/236310/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/236310",
+ "id": 742108684,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/236310/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/236310/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/236310/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/236310/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/236310/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/236310/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/236310/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/236310/milestones{/number}",
+ "mirror_url": null,
+ "name": "236310",
+ "node_id": "R_kgDOLDuuDA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/236310/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/236310/pulls{/number}",
+ "pushed_at": "2023-11-28T21:21:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/236310/releases{/id}",
+ "size": 124,
+ "ssh_url": "git@github.com:OpenSourceBrain/236310.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/236310/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/236310/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/236310/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/236310/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/236310",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/236310/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/236310/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/236310/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:24:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/236310",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/236429": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/236429/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/236429/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/236429/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/236429/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/236429.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/236429/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/236429/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/236429/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/236429/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/236429/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/236429/contributors",
+ "created_at": "2024-01-11T19:25:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/236429/deployments",
+ "description": "2 Distinct Classes of L2 and L3 Pyramidal Neurons in Human Temporal Cortex (Deitcher et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/236429/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/236429/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/236429/forks",
+ "full_name": "OpenSourceBrain/236429",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/236429/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/236429/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/236429/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/236429.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/236429/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/236429",
+ "id": 742108692,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/236429/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/236429/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/236429/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/236429/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/236429/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/236429/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/236429/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/236429/milestones{/number}",
+ "mirror_url": null,
+ "name": "236429",
+ "node_id": "R_kgDOLDuuFA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/236429/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/236429/pulls{/number}",
+ "pushed_at": "2018-09-13T17:56:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/236429/releases{/id}",
+ "size": 1046,
+ "ssh_url": "git@github.com:OpenSourceBrain/236429.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/236429/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/236429/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/236429/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/236429/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/236429",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/236429/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/236429/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/236429/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/236429",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/236439": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/236439/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/236439/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/236439/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/236439/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/236439.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/236439/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/236439/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/236439/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/236439/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/236439/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/236439/contributors",
+ "created_at": "2024-01-11T19:25:03Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/236439/deployments",
+ "description": "Differential interactions between Notch and ID factors control neurogenesis (Boareto et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/236439/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/236439/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/236439/forks",
+ "full_name": "OpenSourceBrain/236439",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/236439/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/236439/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/236439/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/236439.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/236439",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/236439/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/236439",
+ "id": 742108705,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/236439/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/236439/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/236439/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/236439/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/236439/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/236439/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/236439/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/236439/milestones{/number}",
+ "mirror_url": null,
+ "name": "236439",
+ "node_id": "R_kgDOLDuuIQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/236439/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/236439/pulls{/number}",
+ "pushed_at": "2023-12-23T03:57:24Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/236439/releases{/id}",
+ "size": 3543,
+ "ssh_url": "git@github.com:OpenSourceBrain/236439.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/236439/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/236439/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/236439/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/236439/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/236439",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/236439/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/236439/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/236439/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/236439",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/236446": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/236446/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/236446/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/236446/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/236446/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/236446.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/236446/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/236446/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/236446/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/236446/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/236446/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/236446/contributors",
+ "created_at": "2024-01-11T19:25:05Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/236446/deployments",
+ "description": "PyRhO: A multiscale optogenetics simulation platform (Evans et al 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/236446/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/236446/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/236446/forks",
+ "full_name": "OpenSourceBrain/236446",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/236446/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/236446/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/236446/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/236446.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/236446",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/236446/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/236446",
+ "id": 742108715,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/236446/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/236446/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/236446/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/236446/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/236446/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/236446/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/236446/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/236446/milestones{/number}",
+ "mirror_url": null,
+ "name": "236446",
+ "node_id": "R_kgDOLDuuKw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/236446/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/236446/pulls{/number}",
+ "pushed_at": "2023-12-23T03:57:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/236446/releases{/id}",
+ "size": 1839,
+ "ssh_url": "git@github.com:OpenSourceBrain/236446.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/236446/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/236446/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/236446/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/236446/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/236446",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/236446/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/236446/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/236446/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/236446",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237160": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237160/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237160/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237160/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237160/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237160.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237160/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237160/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237160/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237160/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237160/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237160/contributors",
+ "created_at": "2024-01-11T19:25:07Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237160/deployments",
+ "description": "NeuroManager: a workflow analysis based simulation management engine (Stockton & Santamaria 2015)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237160/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237160/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237160/forks",
+ "full_name": "OpenSourceBrain/237160",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237160/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237160/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237160/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237160.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/237160",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237160/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237160",
+ "id": 742108725,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237160/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237160/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237160/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237160/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237160/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237160/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237160/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237160/milestones{/number}",
+ "mirror_url": null,
+ "name": "237160",
+ "node_id": "R_kgDOLDuuNQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237160/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237160/pulls{/number}",
+ "pushed_at": "2023-12-23T03:57:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237160/releases{/id}",
+ "size": 2897,
+ "ssh_url": "git@github.com:OpenSourceBrain/237160.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237160/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237160/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237160/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237160/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237160",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237160/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237160/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237160/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237160",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237323": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237323/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237323/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237323/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237323/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237323.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237323/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237323/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237323/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237323/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237323/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237323/contributors",
+ "created_at": "2024-01-11T19:25:09Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237323/deployments",
+ "description": "Effects of Guanfacine and Phenylephrine on a model of working memory (Duggins et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237323/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237323/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237323/forks",
+ "full_name": "OpenSourceBrain/237323",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237323/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237323/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237323/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237323.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/237323",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237323/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237323",
+ "id": 742108742,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237323/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237323/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237323/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237323/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237323/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237323/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237323/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237323/milestones{/number}",
+ "mirror_url": null,
+ "name": "237323",
+ "node_id": "R_kgDOLDuuRg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237323/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237323/pulls{/number}",
+ "pushed_at": "2023-12-23T03:58:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237323/releases{/id}",
+ "size": 3428,
+ "ssh_url": "git@github.com:OpenSourceBrain/237323.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237323/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237323/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237323/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237323/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237323",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237323/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237323/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237323/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237323",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237326": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237326/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237326/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237326/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237326/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237326.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237326/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237326/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237326/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237326/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237326/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237326/contributors",
+ "created_at": "2024-01-11T19:25:11Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237326/deployments",
+ "description": "Active dendritic integration in robust and precise grid cell firing (Schmidt-Hieber et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237326/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237326/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237326/forks",
+ "full_name": "OpenSourceBrain/237326",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237326/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237326/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237326/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237326.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/237326",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237326/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237326",
+ "id": 742108754,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237326/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237326/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237326/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237326/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237326/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237326/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237326/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237326/milestones{/number}",
+ "mirror_url": null,
+ "name": "237326",
+ "node_id": "R_kgDOLDuuUg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237326/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237326/pulls{/number}",
+ "pushed_at": "2023-12-23T03:58:22Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237326/releases{/id}",
+ "size": 117,
+ "ssh_url": "git@github.com:OpenSourceBrain/237326.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237326/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237326/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237326/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237326/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237326",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237326/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237326/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237326/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237326",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237348": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237348/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237348/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237348/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237348/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237348.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237348/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237348/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237348/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237348/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237348/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237348/contributors",
+ "created_at": "2024-01-11T19:25:13Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237348/deployments",
+ "description": "Synaptic damage underlies EEG abnormalities in postanoxic encephalopathy (Ruijter et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237348/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237348/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237348/forks",
+ "full_name": "OpenSourceBrain/237348",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237348/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237348/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237348/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237348.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/237348",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237348/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237348",
+ "id": 742108764,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237348/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237348/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237348/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237348/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237348/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237348/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237348/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237348/milestones{/number}",
+ "mirror_url": null,
+ "name": "237348",
+ "node_id": "R_kgDOLDuuXA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237348/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237348/pulls{/number}",
+ "pushed_at": "2023-12-23T03:58:32Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237348/releases{/id}",
+ "size": 20,
+ "ssh_url": "git@github.com:OpenSourceBrain/237348.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237348/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237348/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237348/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237348/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237348",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237348/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237348/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237348/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237348",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237466": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237466/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237466/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237466/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237466/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237466.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237466/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237466/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237466/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237466/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237466/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237466/contributors",
+ "created_at": "2024-01-11T19:25:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237466/deployments",
+ "description": "A systems model of Parkinson\u2019s disease using biochemical systems theory (Sasidharakurup et al. 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237466/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237466/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237466/forks",
+ "full_name": "OpenSourceBrain/237466",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237466/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237466/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237466/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237466.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/237466",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237466/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237466",
+ "id": 742108785,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237466/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237466/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237466/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237466/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237466/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237466/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237466/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237466/milestones{/number}",
+ "mirror_url": null,
+ "name": "237466",
+ "node_id": "R_kgDOLDuucQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237466/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237466/pulls{/number}",
+ "pushed_at": "2019-05-31T03:21:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237466/releases{/id}",
+ "size": 8,
+ "ssh_url": "git@github.com:OpenSourceBrain/237466.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237466/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237466/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237466/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237466/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237466",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237466/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237466/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237466/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237466",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237469": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237469/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237469/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237469/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237469/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237469.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237469/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237469/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237469/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237469/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237469/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237469/contributors",
+ "created_at": "2024-01-11T19:25:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237469/deployments",
+ "description": "SCZ-associated variant effects on L5 pyr cell NN activity and delta osc. (Maki-Marttunen et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237469/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237469/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237469/forks",
+ "full_name": "OpenSourceBrain/237469",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237469/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237469/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237469/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237469.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/237469",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237469/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237469",
+ "id": 742108797,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237469/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237469/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237469/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237469/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237469/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237469/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237469/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237469/milestones{/number}",
+ "mirror_url": null,
+ "name": "237469",
+ "node_id": "R_kgDOLDuufQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237469/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237469/pulls{/number}",
+ "pushed_at": "2023-11-28T21:21:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237469/releases{/id}",
+ "size": 1319,
+ "ssh_url": "git@github.com:OpenSourceBrain/237469.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237469/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237469/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237469/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237469/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237469",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237469/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237469/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237469/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237469",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237555": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237555/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237555/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237555/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237555/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237555.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237555/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237555/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237555/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237555/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237555/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237555/contributors",
+ "created_at": "2024-01-11T19:25:19Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237555/deployments",
+ "description": "Heterosynaptic Spike-Timing-Dependent Plasticity (Hiratani & Fukai 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237555/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237555/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237555/forks",
+ "full_name": "OpenSourceBrain/237555",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237555/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237555/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237555/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237555.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/237555",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237555/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237555",
+ "id": 742108813,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237555/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237555/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237555/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237555/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237555/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237555/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237555/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237555/milestones{/number}",
+ "mirror_url": null,
+ "name": "237555",
+ "node_id": "R_kgDOLDuujQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237555/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237555/pulls{/number}",
+ "pushed_at": "2023-12-23T03:58:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237555/releases{/id}",
+ "size": 74,
+ "ssh_url": "git@github.com:OpenSourceBrain/237555.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237555/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237555/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237555/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237555/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237555",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237555/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237555/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237555/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237555",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237594": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237594/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237594/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237594/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237594/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237594.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237594/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237594/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237594/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237594/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237594/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237594/contributors",
+ "created_at": "2024-01-11T19:25:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237594/deployments",
+ "description": "Stochastic layer V pyramidal neuron: interpulse interval coding and noise (Singh & Levy 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237594/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237594/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237594/forks",
+ "full_name": "OpenSourceBrain/237594",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237594/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237594/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237594/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237594.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/237594",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237594/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237594",
+ "id": 742108827,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237594/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237594/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237594/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237594/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237594/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237594/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237594/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237594/milestones{/number}",
+ "mirror_url": null,
+ "name": "237594",
+ "node_id": "R_kgDOLDuumw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237594/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237594/pulls{/number}",
+ "pushed_at": "2019-05-31T04:51:46Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237594/releases{/id}",
+ "size": 84,
+ "ssh_url": "git@github.com:OpenSourceBrain/237594.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237594/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237594/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237594/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237594/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237594",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237594/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237594/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237594/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237594",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237595": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237595/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237595/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237595/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237595/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237595.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237595/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237595/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237595/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237595/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237595/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237595/contributors",
+ "created_at": "2024-01-11T19:25:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237595/deployments",
+ "description": "Fast Spiking Basket cells (Tzilivaki et al 2019)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237595/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237595/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237595/forks",
+ "full_name": "OpenSourceBrain/237595",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237595/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237595/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237595/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237595.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/237595",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237595/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237595",
+ "id": 742108839,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237595/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237595/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237595/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237595/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237595/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237595/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237595/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237595/milestones{/number}",
+ "mirror_url": null,
+ "name": "237595",
+ "node_id": "R_kgDOLDuupw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237595/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237595/pulls{/number}",
+ "pushed_at": "2023-11-28T21:22:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237595/releases{/id}",
+ "size": 5063,
+ "ssh_url": "git@github.com:OpenSourceBrain/237595.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237595/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237595/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237595/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237595/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237595",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237595/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237595/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237595/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237595",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237604": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237604/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237604/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237604/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237604/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237604.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237604/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237604/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237604/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237604/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237604/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237604/contributors",
+ "created_at": "2024-01-11T19:25:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237604/deployments",
+ "description": "A model of neurovascular coupling and the BOLD response (Mathias et al 2017, Kenny et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237604/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237604/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237604/forks",
+ "full_name": "OpenSourceBrain/237604",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237604/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237604/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237604/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237604.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/237604",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237604/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237604",
+ "id": 742108850,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237604/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237604/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237604/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237604/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237604/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237604/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237604/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237604/milestones{/number}",
+ "mirror_url": null,
+ "name": "237604",
+ "node_id": "R_kgDOLDuusg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237604/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237604/pulls{/number}",
+ "pushed_at": "2019-05-31T02:39:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237604/releases{/id}",
+ "size": 10556,
+ "ssh_url": "git@github.com:OpenSourceBrain/237604.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237604/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237604/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237604/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237604/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237604",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237604/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237604/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237604/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237604",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237653": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237653/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237653/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237653/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237653/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237653.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237653/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237653/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237653/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237653/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237653/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237653/contributors",
+ "created_at": "2024-01-11T19:25:27Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237653/deployments",
+ "description": "Striatal D1R medium spiny neuron, including a subcellular DA cascade (Lindroos et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237653/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237653/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237653/forks",
+ "full_name": "OpenSourceBrain/237653",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237653/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237653/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237653/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237653.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.science/237653",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237653/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237653",
+ "id": 742108858,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237653/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237653/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237653/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237653/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237653/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237653/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237653/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237653/milestones{/number}",
+ "mirror_url": null,
+ "name": "237653",
+ "node_id": "R_kgDOLDuuug",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237653/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237653/pulls{/number}",
+ "pushed_at": "2023-11-28T21:22:31Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237653/releases{/id}",
+ "size": 4889,
+ "ssh_url": "git@github.com:OpenSourceBrain/237653.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237653/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237653/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237653/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237653/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237653",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237653/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237653/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237653/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237653",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237685": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237685/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237685/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237685/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237685/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237685.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237685/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237685/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237685/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237685/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237685/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237685/contributors",
+ "created_at": "2024-01-11T19:25:29Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237685/deployments",
+ "description": "State-dependent rhythmogenesis in a half-center locomotor CPG (Ausborn et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237685/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237685/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237685/forks",
+ "full_name": "OpenSourceBrain/237685",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237685/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237685/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237685/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237685.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/237685",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237685/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237685",
+ "id": 742108871,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237685/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237685/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237685/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237685/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237685/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237685/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237685/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237685/milestones{/number}",
+ "mirror_url": null,
+ "name": "237685",
+ "node_id": "R_kgDOLDuuxw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237685/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237685/pulls{/number}",
+ "pushed_at": "2023-12-23T03:58:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237685/releases{/id}",
+ "size": 3443,
+ "ssh_url": "git@github.com:OpenSourceBrain/237685.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237685/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237685/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237685/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237685/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237685",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237685/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237685/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237685/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237685",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237727": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237727/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237727/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237727/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237727/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237727.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237727/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237727/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237727/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237727/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237727/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237727/contributors",
+ "created_at": "2024-01-11T19:25:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237727/deployments",
+ "description": "Perceptual judgments via sensory-motor interaction assisted by cortical GABA (Hoshino et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237727/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237727/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237727/forks",
+ "full_name": "OpenSourceBrain/237727",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237727/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237727/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237727/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237727.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/237727",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237727/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237727",
+ "id": 742108889,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237727/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237727/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237727/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237727/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237727/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237727/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237727/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237727/milestones{/number}",
+ "mirror_url": null,
+ "name": "237727",
+ "node_id": "R_kgDOLDuu2Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237727/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237727/pulls{/number}",
+ "pushed_at": "2019-05-31T03:42:26Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237727/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/237727.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237727/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237727/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237727/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237727/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237727",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237727/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237727/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237727/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237727",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/237728": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/237728/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/237728/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/237728/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/237728/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/237728.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/237728/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/237728/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/237728/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/237728/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/237728/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/237728/contributors",
+ "created_at": "2024-01-11T19:25:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/237728/deployments",
+ "description": "Single excitatory axons form clustered synapses onto CA1 pyramidal cell dendrites (Bloss et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/237728/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/237728/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/237728/forks",
+ "full_name": "OpenSourceBrain/237728",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/237728/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/237728/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/237728/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/237728.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/237728",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/237728/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/237728",
+ "id": 742108901,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/237728/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/237728/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/237728/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/237728/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/237728/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/237728/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/237728/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/237728/milestones{/number}",
+ "mirror_url": null,
+ "name": "237728",
+ "node_id": "R_kgDOLDuu5Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/237728/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/237728/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:28Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/237728/releases{/id}",
+ "size": 284,
+ "ssh_url": "git@github.com:OpenSourceBrain/237728.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/237728/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/237728/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/237728/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/237728/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/237728",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/237728/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/237728/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/237728/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/237728",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238332": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238332/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238332/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238332/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238332/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238332.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238332/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238332/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238332/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238332/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238332/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238332/contributors",
+ "created_at": "2024-01-11T19:25:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238332/deployments",
+ "description": "Model of the Xenopus tadpole swimming spinal network (Roberts et al. 2014)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238332/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238332/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238332/forks",
+ "full_name": "OpenSourceBrain/238332",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238332/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238332/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238332/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238332.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/238332",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238332/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238332",
+ "id": 742108918,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238332/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238332/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238332/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238332/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238332/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238332/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238332/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238332/milestones{/number}",
+ "mirror_url": null,
+ "name": "238332",
+ "node_id": "R_kgDOLDuu9g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238332/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238332/pulls{/number}",
+ "pushed_at": "2023-11-28T21:22:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238332/releases{/id}",
+ "size": 3774,
+ "ssh_url": "git@github.com:OpenSourceBrain/238332.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238332/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238332/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238332/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238332/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238332",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238332/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238332/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238332/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:36Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238332",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238338": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238338/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238338/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238338/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238338/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238338.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238338/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238338/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238338/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238338/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238338/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238338/contributors",
+ "created_at": "2024-01-11T19:25:38Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238338/deployments",
+ "description": "Synchronized oscillations of clock gene expression in the choroid plexus (Myung et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238338/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238338/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238338/forks",
+ "full_name": "OpenSourceBrain/238338",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238338/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238338/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238338/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238338.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/238338",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238338/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238338",
+ "id": 742108934,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238338/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238338/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238338/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238338/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238338/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238338/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238338/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238338/milestones{/number}",
+ "mirror_url": null,
+ "name": "238338",
+ "node_id": "R_kgDOLDuvBg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238338/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238338/pulls{/number}",
+ "pushed_at": "2019-05-31T04:54:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238338/releases{/id}",
+ "size": 322,
+ "ssh_url": "git@github.com:OpenSourceBrain/238338.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238338/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238338/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238338/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238338/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238338",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238338/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238338/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238338/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:38Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238338",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238347": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238347/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238347/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238347/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238347/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238347.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238347/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238347/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238347/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238347/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238347/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238347/contributors",
+ "created_at": "2024-01-11T19:25:40Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238347/deployments",
+ "description": "Comprehensive models of human cortical pyramidal neurons (Eyal et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238347/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238347/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238347/forks",
+ "full_name": "OpenSourceBrain/238347",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238347/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238347/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238347/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238347.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/238347",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238347/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238347",
+ "id": 742108953,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238347/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238347/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238347/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238347/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238347/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238347/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238347/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238347/milestones{/number}",
+ "mirror_url": null,
+ "name": "238347",
+ "node_id": "R_kgDOLDuvGQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238347/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238347/pulls{/number}",
+ "pushed_at": "2023-12-23T03:58:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238347/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/238347.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238347/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238347/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238347/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238347/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238347",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238347/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238347/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238347/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:40Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238347",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238449": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238449/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238449/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238449/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238449/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238449.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238449/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238449/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238449/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238449/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238449/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238449/contributors",
+ "created_at": "2024-01-11T19:25:42Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238449/deployments",
+ "description": "Generating neuron geometries for detailed 3D simulations using AnaMorph (Morschel et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238449/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238449/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238449/forks",
+ "full_name": "OpenSourceBrain/238449",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238449/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238449/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238449/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238449.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/238449",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238449/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238449",
+ "id": 742108965,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238449/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238449/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238449/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238449/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238449/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238449/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238449/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238449/milestones{/number}",
+ "mirror_url": null,
+ "name": "238449",
+ "node_id": "R_kgDOLDuvJQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238449/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238449/pulls{/number}",
+ "pushed_at": "2023-12-23T03:59:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238449/releases{/id}",
+ "size": 375,
+ "ssh_url": "git@github.com:OpenSourceBrain/238449.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238449/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238449/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238449/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238449/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238449",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238449/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238449/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238449/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:42Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238449",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238892": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238892/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238892/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238892/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238892/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238892.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238892/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238892/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238892/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238892/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238892/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238892/contributors",
+ "created_at": "2024-01-11T19:25:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238892/deployments",
+ "description": "Using NEURON for reaction-diffusion modeling of extracellular dynamics (Newton et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238892/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238892/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238892/forks",
+ "full_name": "OpenSourceBrain/238892",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238892/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238892/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238892/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238892.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/238892",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238892/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238892",
+ "id": 742108977,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238892/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238892/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238892/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238892/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238892/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238892/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238892/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238892/milestones{/number}",
+ "mirror_url": null,
+ "name": "238892",
+ "node_id": "R_kgDOLDuvMQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238892/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238892/pulls{/number}",
+ "pushed_at": "2019-05-31T05:08:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238892/releases{/id}",
+ "size": 9,
+ "ssh_url": "git@github.com:OpenSourceBrain/238892.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238892/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238892/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238892/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238892/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238892",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238892/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238892/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238892/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:44Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238892",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238911": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238911/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238911/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238911/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238911/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238911.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238911/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238911/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238911/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238911/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238911/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238911/contributors",
+ "created_at": "2024-01-11T19:25:45Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238911/deployments",
+ "description": "Neuromuscular network model of gut motility (Barth et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238911/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238911/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238911/forks",
+ "full_name": "OpenSourceBrain/238911",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238911/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238911/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238911/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238911.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238911/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238911",
+ "id": 742108984,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238911/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238911/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238911/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238911/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238911/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238911/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238911/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238911/milestones{/number}",
+ "mirror_url": null,
+ "name": "238911",
+ "node_id": "R_kgDOLDuvOA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238911/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238911/pulls{/number}",
+ "pushed_at": "2022-04-26T01:30:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238911/releases{/id}",
+ "size": 109,
+ "ssh_url": "git@github.com:OpenSourceBrain/238911.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238911/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238911/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238911/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238911/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238911",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238911/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238911/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238911/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:46Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238911",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238912": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238912/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238912/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238912/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238912/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238912.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238912/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238912/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238912/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238912/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238912/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238912/contributors",
+ "created_at": "2024-01-11T19:25:47Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238912/deployments",
+ "description": "A state-space model to quantify common input to motor neurons (Feeney et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238912/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238912/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238912/forks",
+ "full_name": "OpenSourceBrain/238912",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238912/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238912/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238912/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238912.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238912/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238912",
+ "id": 742108998,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238912/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238912/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238912/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238912/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238912/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238912/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238912/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238912/milestones{/number}",
+ "mirror_url": null,
+ "name": "238912",
+ "node_id": "R_kgDOLDuvRg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238912/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238912/pulls{/number}",
+ "pushed_at": "2019-02-18T22:54:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238912/releases{/id}",
+ "size": 276,
+ "ssh_url": "git@github.com:OpenSourceBrain/238912.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238912/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238912/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238912/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238912/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238912",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238912/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238912/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238912/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:48Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238912",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238916": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238916/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238916/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238916/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238916/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238916.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238916/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238916/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238916/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238916/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238916/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238916/contributors",
+ "created_at": "2024-01-11T19:25:49Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238916/deployments",
+ "description": "Morphological determinants of dendritic arborization neurons in Drosophila larva (Nanda et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238916/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238916/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238916/forks",
+ "full_name": "OpenSourceBrain/238916",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238916/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238916/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238916/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238916.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/238916",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238916/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238916",
+ "id": 742109012,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238916/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238916/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238916/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238916/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238916/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238916/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238916/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238916/milestones{/number}",
+ "mirror_url": null,
+ "name": "238916",
+ "node_id": "R_kgDOLDuvVA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238916/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238916/pulls{/number}",
+ "pushed_at": "2020-07-29T23:09:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238916/releases{/id}",
+ "size": 224,
+ "ssh_url": "git@github.com:OpenSourceBrain/238916.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238916/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238916/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238916/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238916/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238916",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238916/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238916/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238916/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238916",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238920": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238920/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238920/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238920/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238920/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238920.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238920/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238920/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238920/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238920/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238920/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238920/contributors",
+ "created_at": "2024-01-11T19:25:51Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238920/deployments",
+ "description": "LFP signature of monosynaptic thalamocortical connection (Hagen et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238920/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238920/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238920/forks",
+ "full_name": "OpenSourceBrain/238920",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238920/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238920/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238920/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238920.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/238920",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238920/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238920",
+ "id": 742109024,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238920/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238920/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238920/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238920/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238920/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238920/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238920/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238920/milestones{/number}",
+ "mirror_url": null,
+ "name": "238920",
+ "node_id": "R_kgDOLDuvYA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238920/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238920/pulls{/number}",
+ "pushed_at": "2023-12-23T03:59:25Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238920/releases{/id}",
+ "size": 4002,
+ "ssh_url": "git@github.com:OpenSourceBrain/238920.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238920/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238920/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238920/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238920/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238920",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238920/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238920/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238920/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238920",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238959": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238959/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238959/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238959/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238959/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238959.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238959/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238959/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238959/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238959/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238959/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238959/contributors",
+ "created_at": "2024-01-11T19:25:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238959/deployments",
+ "description": "Short Term Depression, Presynaptic Inhib., Neuron Diversity Roles in Antennal Lobe (Wei & Lo 2020)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238959/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238959/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238959/forks",
+ "full_name": "OpenSourceBrain/238959",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238959/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238959/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238959/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238959.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/238959",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238959/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238959",
+ "id": 742109044,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238959/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238959/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238959/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238959/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238959/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238959/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238959/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238959/milestones{/number}",
+ "mirror_url": null,
+ "name": "238959",
+ "node_id": "R_kgDOLDuvdA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238959/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238959/pulls{/number}",
+ "pushed_at": "2023-11-28T21:22:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238959/releases{/id}",
+ "size": 26,
+ "ssh_url": "git@github.com:OpenSourceBrain/238959.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238959/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238959/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238959/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238959/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238959",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238959/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238959/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238959/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238959",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/238985": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/238985/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/238985/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/238985/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/238985/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/238985.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/238985/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/238985/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/238985/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/238985/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/238985/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/238985/contributors",
+ "created_at": "2024-01-11T19:25:55Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/238985/deployments",
+ "description": "Optimal synaptic assignment for locomotory behavior in C. elegans (Rakowski & Karbowski 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/238985/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/238985/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/238985/forks",
+ "full_name": "OpenSourceBrain/238985",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/238985/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/238985/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/238985/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/238985.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/238985",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/238985/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/238985",
+ "id": 742109055,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/238985/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/238985/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/238985/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/238985/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/238985/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/238985/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/238985/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/238985/milestones{/number}",
+ "mirror_url": null,
+ "name": "238985",
+ "node_id": "R_kgDOLDuvfw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/238985/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/238985/pulls{/number}",
+ "pushed_at": "2023-12-23T05:53:36Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/238985/releases{/id}",
+ "size": 1041,
+ "ssh_url": "git@github.com:OpenSourceBrain/238985.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/238985/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/238985/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/238985/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/238985/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/238985",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/238985/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/238985/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/238985/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/238985",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239003": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239003/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239003/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239003/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239003/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239003.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239003/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239003/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239003/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239003/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239003/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239003/contributors",
+ "created_at": "2024-01-11T19:25:57Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239003/deployments",
+ "description": "Logarithmic distributions prove that intrinsic learning is Hebbian (Scheler 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239003/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239003/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239003/forks",
+ "full_name": "OpenSourceBrain/239003",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239003/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239003/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239003/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239003.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239003",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239003/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239003",
+ "id": 742109065,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239003/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239003/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239003/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239003/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239003/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239003/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239003/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239003/milestones{/number}",
+ "mirror_url": null,
+ "name": "239003",
+ "node_id": "R_kgDOLDuviQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239003/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239003/pulls{/number}",
+ "pushed_at": "2019-05-31T02:38:06Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239003/releases{/id}",
+ "size": 695,
+ "ssh_url": "git@github.com:OpenSourceBrain/239003.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239003/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239003/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239003/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239003/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239003",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239003/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239003/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239003/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:25:58Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239003",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239006": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239006/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239006/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239006/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239006/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239006.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239006/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239006/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239006/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239006/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239006/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239006/contributors",
+ "created_at": "2024-01-11T19:26:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239006/deployments",
+ "description": "Extracellular stimulation of myelinated axon (Reilly 2016)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239006/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239006/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239006/forks",
+ "full_name": "OpenSourceBrain/239006",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239006/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239006/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239006/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239006.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/239006",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239006/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239006",
+ "id": 742109086,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239006/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239006/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239006/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239006/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239006/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239006/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239006/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239006/milestones{/number}",
+ "mirror_url": null,
+ "name": "239006",
+ "node_id": "R_kgDOLDuvng",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239006/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239006/pulls{/number}",
+ "pushed_at": "2018-04-23T19:12:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239006/releases{/id}",
+ "size": 97,
+ "ssh_url": "git@github.com:OpenSourceBrain/239006.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239006/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239006/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239006/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239006/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239006",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239006/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239006/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239006/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:00Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239006",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239039": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239039/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239039/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239039/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239039/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239039.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239039/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239039/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239039/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239039/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239039/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239039/contributors",
+ "created_at": "2024-01-11T19:26:01Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239039/deployments",
+ "description": "Locational influence of dendritic PIC on input-output properties of spinal motoneurons (Kim 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239039/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239039/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239039/forks",
+ "full_name": "OpenSourceBrain/239039",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239039/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239039/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239039/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239039.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/239039",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239039/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239039",
+ "id": 742109101,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239039/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239039/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239039/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239039/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239039/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239039/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239039/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239039/milestones{/number}",
+ "mirror_url": null,
+ "name": "239039",
+ "node_id": "R_kgDOLDuvrQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239039/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239039/pulls{/number}",
+ "pushed_at": "2018-04-23T19:12:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239039/releases{/id}",
+ "size": 99,
+ "ssh_url": "git@github.com:OpenSourceBrain/239039.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239039/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239039/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239039/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239039/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239039",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239039/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239039/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239039/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:02Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239039",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239072": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239072/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239072/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239072/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239072/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239072.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239072/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239072/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239072/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239072/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239072/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239072/contributors",
+ "created_at": "2024-01-11T19:26:04Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239072/deployments",
+ "description": "Analytical modelling of temperature effects on an AMPA-type synapse (Kufel & Wojcik 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239072/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239072/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239072/forks",
+ "full_name": "OpenSourceBrain/239072",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239072/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239072/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239072/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239072.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239072",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239072/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239072",
+ "id": 742109112,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239072/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239072/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239072/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239072/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239072/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239072/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239072/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239072/milestones{/number}",
+ "mirror_url": null,
+ "name": "239072",
+ "node_id": "R_kgDOLDuvuA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239072/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239072/pulls{/number}",
+ "pushed_at": "2019-05-31T03:26:20Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239072/releases{/id}",
+ "size": 170,
+ "ssh_url": "git@github.com:OpenSourceBrain/239072.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239072/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239072/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239072/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239072/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239072",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239072/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239072/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239072/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:04Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239072",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239103": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239103/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239103/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239103/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239103/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239103.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239103/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239103/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239103/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239103/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239103/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239103/contributors",
+ "created_at": "2024-01-11T19:26:06Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239103/deployments",
+ "description": "Evolving simple models of diverse dynamics in hippocampal neuron types (Venkadesh et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239103/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239103/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239103/forks",
+ "full_name": "OpenSourceBrain/239103",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239103/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239103/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239103/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239103.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/239103",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239103/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239103",
+ "id": 742109128,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239103/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239103/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239103/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239103/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239103/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239103/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239103/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239103/milestones{/number}",
+ "mirror_url": null,
+ "name": "239103",
+ "node_id": "R_kgDOLDuvyA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239103/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239103/pulls{/number}",
+ "pushed_at": "2023-12-23T04:14:42Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239103/releases{/id}",
+ "size": 14617,
+ "ssh_url": "git@github.com:OpenSourceBrain/239103.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239103/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239103/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239103/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239103/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239103",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239103/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239103/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239103/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:06Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239103",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239145": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239145/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239145/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239145/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239145/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239145.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239145/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239145/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239145/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239145/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239145/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239145/contributors",
+ "created_at": "2024-01-11T19:26:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239145/deployments",
+ "description": "Sensory-evoked responses of L5 pyramidal tract neurons (Egger et al 2020)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239145/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239145/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239145/forks",
+ "full_name": "OpenSourceBrain/239145",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239145/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239145/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239145/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239145.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239145",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239145/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239145",
+ "id": 742109139,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239145/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239145/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239145/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239145/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239145/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239145/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239145/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239145/milestones{/number}",
+ "mirror_url": null,
+ "name": "239145",
+ "node_id": "R_kgDOLDuv0w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239145/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239145/pulls{/number}",
+ "pushed_at": "2019-12-11T22:51:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239145/releases{/id}",
+ "size": 17848,
+ "ssh_url": "git@github.com:OpenSourceBrain/239145.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239145/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239145/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239145/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239145/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239145",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239145/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239145/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239145/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239145",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239146": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239146/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239146/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239146/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239146/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239146.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239146/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239146/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239146/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239146/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239146/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239146/contributors",
+ "created_at": "2024-01-11T19:26:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239146/deployments",
+ "description": "A neuronal circuit simulator for non Monte Carlo analysis of neuronal noise (Kilinc & Demir 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239146/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239146/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239146/forks",
+ "full_name": "OpenSourceBrain/239146",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239146/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239146/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239146/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239146.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239146",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239146/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239146",
+ "id": 742109149,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239146/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239146/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239146/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239146/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239146/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239146/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239146/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239146/milestones{/number}",
+ "mirror_url": null,
+ "name": "239146",
+ "node_id": "R_kgDOLDuv3Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239146/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239146/pulls{/number}",
+ "pushed_at": "2023-11-28T21:22:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239146/releases{/id}",
+ "size": 66,
+ "ssh_url": "git@github.com:OpenSourceBrain/239146.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239146/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239146/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239146/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239146/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239146",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239146/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239146/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239146/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239146",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239161": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239161/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239161/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239161/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239161/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239161.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239161/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239161/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239161/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239161/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239161/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239161/contributors",
+ "created_at": "2024-01-11T19:26:13Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239161/deployments",
+ "description": "DynaSim: a MATLAB toolbox for neural modeling and simulation (Sherfey et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239161/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239161/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239161/forks",
+ "full_name": "OpenSourceBrain/239161",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239161/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239161/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239161/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239161.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/239161",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239161/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239161",
+ "id": 742109160,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239161/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239161/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239161/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239161/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239161/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239161/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239161/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239161/milestones{/number}",
+ "mirror_url": null,
+ "name": "239161",
+ "node_id": "R_kgDOLDuv6A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239161/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239161/pulls{/number}",
+ "pushed_at": "2023-12-23T04:14:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239161/releases{/id}",
+ "size": 856,
+ "ssh_url": "git@github.com:OpenSourceBrain/239161.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239161/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239161/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239161/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239161/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239161",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239161/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239161/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239161/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239161",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239177": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239177/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239177/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239177/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239177/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239177.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239177/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239177/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239177/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239177/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239177/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239177/contributors",
+ "created_at": "2024-01-11T19:26:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239177/deployments",
+ "description": "Phase response theory in sparsely + strongly connected inhibitory NNs (Tikidji-Hamburyan et al 2019)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239177/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239177/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239177/forks",
+ "full_name": "OpenSourceBrain/239177",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239177/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239177/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239177/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239177.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239177",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239177/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239177",
+ "id": 742109176,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239177/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239177/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239177/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239177/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239177/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239177/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239177/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239177/milestones{/number}",
+ "mirror_url": null,
+ "name": "239177",
+ "node_id": "R_kgDOLDuv-A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239177/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239177/pulls{/number}",
+ "pushed_at": "2023-11-28T21:23:54Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239177/releases{/id}",
+ "size": 48627,
+ "ssh_url": "git@github.com:OpenSourceBrain/239177.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239177/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239177/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239177/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239177/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239177",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239177/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239177/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239177/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239177",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239388": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239388/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239388/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239388/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239388/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239388.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239388/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239388/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239388/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239388/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239388/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239388/contributors",
+ "created_at": "2024-01-11T19:26:17Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239388/deployments",
+ "description": "Brain Dynamics Toolbox (Heitmann & Breakspear 2016, 2017, 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239388/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239388/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239388/forks",
+ "full_name": "OpenSourceBrain/239388",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239388/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239388/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239388/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239388.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/239388",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239388/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239388",
+ "id": 742109193,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239388/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239388/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239388/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239388/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239388/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239388/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239388/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239388/milestones{/number}",
+ "mirror_url": null,
+ "name": "239388",
+ "node_id": "R_kgDOLDuwCQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239388/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239388/pulls{/number}",
+ "pushed_at": "2023-12-23T04:15:19Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239388/releases{/id}",
+ "size": 16491,
+ "ssh_url": "git@github.com:OpenSourceBrain/239388.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239388/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239388/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239388/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239388/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239388",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239388/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239388/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239388/git/trees{/sha}",
+ "updated_at": "2024-01-11T19:26:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239388",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239413": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239413/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239413/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239413/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239413/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239413.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239413/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239413/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239413/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239413/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239413/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239413/contributors",
+ "created_at": "2024-01-11T20:06:05Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239413/deployments",
+ "description": "Vibration-sensitive Honeybee interneurons (Ai et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239413/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239413/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239413/forks",
+ "full_name": "OpenSourceBrain/239413",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239413/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239413/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239413/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239413.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/239413",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239413/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239413",
+ "id": 742123108,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239413/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239413/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239413/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239413/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239413/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239413/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239413/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239413/milestones{/number}",
+ "mirror_url": null,
+ "name": "239413",
+ "node_id": "R_kgDOLDvmZA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239413/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239413/pulls{/number}",
+ "pushed_at": "2023-12-23T04:55:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239413/releases{/id}",
+ "size": 41,
+ "ssh_url": "git@github.com:OpenSourceBrain/239413.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239413/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239413/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239413/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239413/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239413",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239413/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239413/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239413/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239413",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239418": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239418/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239418/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239418/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239418/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239418.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239418/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239418/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239418/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239418/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239418/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239418/contributors",
+ "created_at": "2024-01-11T20:06:07Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239418/deployments",
+ "description": "NN for proto-object based contour integration and figure-ground segregation (Hu & Niebur 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239418/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239418/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239418/forks",
+ "full_name": "OpenSourceBrain/239418",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239418/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239418/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239418/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239418.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/239418",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239418/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239418",
+ "id": 742123124,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239418/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239418/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239418/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239418/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239418/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239418/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239418/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239418/milestones{/number}",
+ "mirror_url": null,
+ "name": "239418",
+ "node_id": "R_kgDOLDvmdA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239418/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239418/pulls{/number}",
+ "pushed_at": "2023-12-23T04:34:43Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239418/releases{/id}",
+ "size": 0,
+ "ssh_url": "git@github.com:OpenSourceBrain/239418.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239418/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239418/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239418/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239418/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239418",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239418/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239418/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239418/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239418",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239421": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239421/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239421/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239421/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239421/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239421.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239421/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239421/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239421/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239421/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239421/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239421/contributors",
+ "created_at": "2024-01-11T20:06:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239421/deployments",
+ "description": "Purkinje cell: Synaptic activation predicts voltage control of burst-pause (Masoli & D'Angelo 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239421/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239421/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239421/forks",
+ "full_name": "OpenSourceBrain/239421",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239421/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239421/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239421/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239421.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239421",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239421/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239421",
+ "id": 742123136,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239421/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239421/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239421/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239421/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239421/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239421/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239421/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239421/milestones{/number}",
+ "mirror_url": null,
+ "name": "239421",
+ "node_id": "R_kgDOLDvmgA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239421/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239421/pulls{/number}",
+ "pushed_at": "2020-04-20T11:45:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239421/releases{/id}",
+ "size": 91,
+ "ssh_url": "git@github.com:OpenSourceBrain/239421.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239421/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239421/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239421/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239421/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239421",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239421/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239421/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239421/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239421",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239427": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239427/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239427/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239427/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239427/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239427.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239427/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239427/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239427/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239427/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239427/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239427/contributors",
+ "created_at": "2024-01-11T20:06:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239427/deployments",
+ "description": "Feedforward network undergoing Up-state-mediated plasticity (Gonzalez-Rueda et al. 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239427/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239427/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239427/forks",
+ "full_name": "OpenSourceBrain/239427",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239427/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239427/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239427/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239427.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239427",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239427/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239427",
+ "id": 742123150,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239427/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239427/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239427/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239427/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239427/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239427/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239427/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239427/milestones{/number}",
+ "mirror_url": null,
+ "name": "239427",
+ "node_id": "R_kgDOLDvmjg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239427/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239427/pulls{/number}",
+ "pushed_at": "2019-05-31T04:34:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239427/releases{/id}",
+ "size": 1272,
+ "ssh_url": "git@github.com:OpenSourceBrain/239427.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239427/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239427/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239427/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239427/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239427",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239427/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239427/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239427/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239427",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239435": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239435/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239435/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239435/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239435/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239435.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239435/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239435/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239435/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239435/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239435/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239435/contributors",
+ "created_at": "2024-01-11T20:06:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239435/deployments",
+ "description": "Drosophila T4 neuron (Gruntman et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239435/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239435/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239435/forks",
+ "full_name": "OpenSourceBrain/239435",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239435/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239435/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239435/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239435.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239435",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239435/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239435",
+ "id": 742123165,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239435/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239435/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239435/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239435/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239435/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239435/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239435/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239435/milestones{/number}",
+ "mirror_url": null,
+ "name": "239435",
+ "node_id": "R_kgDOLDvmnQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239435/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239435/pulls{/number}",
+ "pushed_at": "2023-11-28T21:23:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239435/releases{/id}",
+ "size": 41,
+ "ssh_url": "git@github.com:OpenSourceBrain/239435.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239435/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239435/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239435/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239435/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239435",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239435/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239435/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239435/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239435",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239530": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239530/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239530/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239530/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239530/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239530.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239530/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239530/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239530/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239530/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239530/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239530/contributors",
+ "created_at": "2024-01-11T20:06:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239530/deployments",
+ "description": "A basal ganglia model of aberrant learning (Ursino et al. 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239530/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239530/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239530/forks",
+ "full_name": "OpenSourceBrain/239530",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239530/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239530/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239530/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239530.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239530/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239530",
+ "id": 742123179,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239530/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239530/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239530/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239530/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239530/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239530/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239530/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239530/milestones{/number}",
+ "mirror_url": null,
+ "name": "239530",
+ "node_id": "R_kgDOLDvmqw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239530/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239530/pulls{/number}",
+ "pushed_at": "2018-06-07T21:31:23Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239530/releases{/id}",
+ "size": 252,
+ "ssh_url": "git@github.com:OpenSourceBrain/239530.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239530/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239530/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239530/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239530/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239530",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239530/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239530/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239530/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239530",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239535": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239535/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239535/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239535/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239535/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239535.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239535/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239535/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239535/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239535/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239535/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239535/contributors",
+ "created_at": "2024-01-11T20:06:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239535/deployments",
+ "description": "PyMUS: A Python based Motor Unit Simulator (Kim & Kim 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239535/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239535/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239535/forks",
+ "full_name": "OpenSourceBrain/239535",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239535/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239535/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239535/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239535.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239535",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239535/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239535",
+ "id": 742123198,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239535/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239535/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239535/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239535/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239535/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239535/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239535/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239535/milestones{/number}",
+ "mirror_url": null,
+ "name": "239535",
+ "node_id": "R_kgDOLDvmvg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239535/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239535/pulls{/number}",
+ "pushed_at": "2019-05-31T03:40:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239535/releases{/id}",
+ "size": 3465,
+ "ssh_url": "git@github.com:OpenSourceBrain/239535.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239535/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239535/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239535/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239535/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239535",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239535/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239535/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239535/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:18Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239535",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239540": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239540/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239540/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239540/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239540/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239540.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239540/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239540/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239540/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239540/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239540/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239540/contributors",
+ "created_at": "2024-01-11T20:06:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239540/deployments",
+ "description": "Computational endophenotypes in addiction (Fiore et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239540/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239540/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239540/forks",
+ "full_name": "OpenSourceBrain/239540",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239540/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239540/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239540/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239540.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239540/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239540",
+ "id": 742123208,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239540/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239540/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239540/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239540/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239540/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239540/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239540/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239540/milestones{/number}",
+ "mirror_url": null,
+ "name": "239540",
+ "node_id": "R_kgDOLDvmyA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239540/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239540/pulls{/number}",
+ "pushed_at": "2018-07-10T21:10:49Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239540/releases{/id}",
+ "size": 64,
+ "ssh_url": "git@github.com:OpenSourceBrain/239540.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239540/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239540/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239540/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239540/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239540",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239540/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239540/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239540/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:20Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239540",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239541": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239541/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239541/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239541/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239541/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239541.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239541/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239541/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239541/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239541/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239541/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239541/contributors",
+ "created_at": "2024-01-11T20:06:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239541/deployments",
+ "description": "PKMZ synthesis and AMPAR regulation in late long-term synaptic potentiation (Helfer & Shultz 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239541/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239541/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239541/forks",
+ "full_name": "OpenSourceBrain/239541",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239541/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239541/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239541/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239541.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239541",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239541/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239541",
+ "id": 742123221,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239541/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239541/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239541/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239541/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239541/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239541/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239541/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239541/milestones{/number}",
+ "mirror_url": null,
+ "name": "239541",
+ "node_id": "R_kgDOLDvm1Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239541/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239541/pulls{/number}",
+ "pushed_at": "2019-05-31T05:02:10Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239541/releases{/id}",
+ "size": 94,
+ "ssh_url": "git@github.com:OpenSourceBrain/239541.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239541/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239541/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239541/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239541/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239541",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239541/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239541/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239541/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:22Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239541",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239582": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239582/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239582/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239582/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239582/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239582.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239582/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239582/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239582/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239582/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239582/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239582/contributors",
+ "created_at": "2024-01-11T20:06:23Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239582/deployments",
+ "description": "Motoneuron pool input-output function (Powers & Heckman 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239582/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239582/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239582/forks",
+ "full_name": "OpenSourceBrain/239582",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239582/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239582/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239582/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239582.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/239582",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239582/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239582",
+ "id": 742123233,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239582/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239582/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239582/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239582/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239582/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239582/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239582/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239582/milestones{/number}",
+ "mirror_url": null,
+ "name": "239582",
+ "node_id": "R_kgDOLDvm4Q",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239582/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239582/pulls{/number}",
+ "pushed_at": "2023-11-28T21:24:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239582/releases{/id}",
+ "size": 71,
+ "ssh_url": "git@github.com:OpenSourceBrain/239582.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239582/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239582/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239582/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239582/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239582",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239582/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239582/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239582/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:24Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239582",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239741": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239741/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239741/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239741/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239741/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239741.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239741/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239741/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239741/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239741/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239741/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239741/contributors",
+ "created_at": "2024-01-11T20:06:26Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239741/deployments",
+ "description": "Adjusted regularization of cortical covariance (Vinci et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239741/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239741/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239741/forks",
+ "full_name": "OpenSourceBrain/239741",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239741/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239741/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239741/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239741.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239741",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239741/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239741",
+ "id": 742123250,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239741/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239741/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239741/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239741/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239741/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239741/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239741/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239741/milestones{/number}",
+ "mirror_url": null,
+ "name": "239741",
+ "node_id": "R_kgDOLDvm8g",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239741/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239741/pulls{/number}",
+ "pushed_at": "2023-11-28T21:24:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239741/releases{/id}",
+ "size": 7,
+ "ssh_url": "git@github.com:OpenSourceBrain/239741.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239741/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239741/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239741/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239741/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239741",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239741/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239741/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239741/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:26Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239741",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239744": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239744/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239744/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239744/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239744/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239744.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239744/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239744/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239744/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239744/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239744/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239744/contributors",
+ "created_at": "2024-01-11T20:06:28Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239744/deployments",
+ "description": "Signaling pathways In D1R containing striatal spiny projection neurons (Blackwell et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239744/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239744/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239744/forks",
+ "full_name": "OpenSourceBrain/239744",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239744/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239744/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239744/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239744.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239744/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239744",
+ "id": 742123264,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239744/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239744/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239744/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239744/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239744/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239744/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239744/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239744/milestones{/number}",
+ "mirror_url": null,
+ "name": "239744",
+ "node_id": "R_kgDOLDvnAA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239744/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239744/pulls{/number}",
+ "pushed_at": "2018-11-20T19:25:17Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239744/releases{/id}",
+ "size": 716,
+ "ssh_url": "git@github.com:OpenSourceBrain/239744.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239744/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239744/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239744/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239744/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239744",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239744/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239744/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239744/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:28Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239744",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/239878": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/239878/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/239878/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/239878/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/239878/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/239878.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/239878/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/239878/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/239878/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/239878/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/239878/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/239878/contributors",
+ "created_at": "2024-01-11T20:06:30Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/239878/deployments",
+ "description": "Cortical feedback alters visual response properties of dLGN relay cells (Mart\u00ednez-Ca\u00f1ada et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/239878/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/239878/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/239878/forks",
+ "full_name": "OpenSourceBrain/239878",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/239878/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/239878/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/239878/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/239878.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/239878",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/239878/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/239878",
+ "id": 742123285,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/239878/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/239878/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/239878/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/239878/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/239878/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/239878/languages",
+ "license": {
+ "key": "gpl-3.0",
+ "name": "GNU General Public License v3.0",
+ "node_id": "MDc6TGljZW5zZTk=",
+ "spdx_id": "GPL-3.0",
+ "url": "https://api.github.com/licenses/gpl-3.0"
+ },
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/239878/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/239878/milestones{/number}",
+ "mirror_url": null,
+ "name": "239878",
+ "node_id": "R_kgDOLDvnFQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/239878/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/239878/pulls{/number}",
+ "pushed_at": "2019-05-31T03:19:04Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/239878/releases{/id}",
+ "size": 157,
+ "ssh_url": "git@github.com:OpenSourceBrain/239878.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/239878/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/239878/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/239878/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/239878/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/239878",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/239878/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/239878/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/239878/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:30Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/239878",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/240116": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/240116/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/240116/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/240116/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/240116/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/240116.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/240116/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/240116/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/240116/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/240116/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/240116/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/240116/contributors",
+ "created_at": "2024-01-11T20:06:32Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/240116/deployments",
+ "description": "Parallel odor processing by mitral and middle tufted cells in the OB (Cavarretta et al 2016, 2018) http://modeldb.yale.edu/240116 ",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/240116/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/240116/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/240116/forks",
+ "full_name": "OpenSourceBrain/240116",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/240116/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/240116/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/240116/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/240116.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/240116/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/240116",
+ "id": 742123296,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/240116/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/240116/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/240116/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/240116/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/240116/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/240116/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/240116/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/240116/milestones{/number}",
+ "mirror_url": null,
+ "name": "240116",
+ "node_id": "R_kgDOLDvnIA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/240116/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/240116/pulls{/number}",
+ "pushed_at": "2023-11-28T21:24:12Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/240116/releases{/id}",
+ "size": 4033,
+ "ssh_url": "git@github.com:OpenSourceBrain/240116.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/240116/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/240116/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/240116/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/240116/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/240116",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/240116/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/240116/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/240116/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:32Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/240116",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/240364": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/240364/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/240364/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/240364/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/240364/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/240364.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/240364/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/240364/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/240364/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/240364/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/240364/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/240364/contributors",
+ "created_at": "2024-01-11T20:06:34Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/240364/deployments",
+ "description": "External Tufted Cell Model (Ryan Viertel, Alla Borisyuk 2019)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/240364/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/240364/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/240364/forks",
+ "full_name": "OpenSourceBrain/240364",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/240364/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/240364/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/240364/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/240364.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/240364/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/240364",
+ "id": 742123304,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/240364/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/240364/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/240364/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/240364/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/240364/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/240364/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/240364/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/240364/milestones{/number}",
+ "mirror_url": null,
+ "name": "240364",
+ "node_id": "R_kgDOLDvnKA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/240364/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/240364/pulls{/number}",
+ "pushed_at": "2019-01-07T20:05:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/240364/releases{/id}",
+ "size": 68,
+ "ssh_url": "git@github.com:OpenSourceBrain/240364.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/240364/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/240364/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/240364/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/240364/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/240364",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/240364/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/240364/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/240364/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:34Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/240364",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/240369": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/240369/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/240369/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/240369/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/240369/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/240369.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/240369/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/240369/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/240369/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/240369/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/240369/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/240369/contributors",
+ "created_at": "2024-01-11T20:06:36Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/240369/deployments",
+ "description": "First-Spike-Based Visual Categorization Using Reward-Modulated STDP (Mozafari et al. 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/240369/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/240369/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/240369/forks",
+ "full_name": "OpenSourceBrain/240369",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/240369/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/240369/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/240369/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/240369.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/240369",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/240369/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/240369",
+ "id": 742123313,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/240369/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/240369/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/240369/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/240369/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/240369/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/240369/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/240369/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/240369/milestones{/number}",
+ "mirror_url": null,
+ "name": "240369",
+ "node_id": "R_kgDOLDvnMQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/240369/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/240369/pulls{/number}",
+ "pushed_at": "2019-05-31T03:46:38Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/240369/releases{/id}",
+ "size": 14349,
+ "ssh_url": "git@github.com:OpenSourceBrain/240369.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/240369/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/240369/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/240369/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/240369/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/240369",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/240369/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/240369/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/240369/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:37Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/240369",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/240382": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/240382/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/240382/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/240382/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/240382/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/240382.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/240382/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/240382/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/240382/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/240382/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/240382/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/240382/contributors",
+ "created_at": "2024-01-11T20:06:39Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/240382/deployments",
+ "description": "Effect of cortical D1 receptor sensitivity on working memory maintenance (Reneaux & Gupta 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/240382/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/240382/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/240382/forks",
+ "full_name": "OpenSourceBrain/240382",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/240382/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/240382/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/240382/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/240382.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/240382",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/240382/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/240382",
+ "id": 742123326,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/240382/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/240382/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/240382/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/240382/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/240382/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/240382/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/240382/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/240382/milestones{/number}",
+ "mirror_url": null,
+ "name": "240382",
+ "node_id": "R_kgDOLDvnPg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/240382/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/240382/pulls{/number}",
+ "pushed_at": "2019-05-31T03:46:45Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/240382/releases{/id}",
+ "size": 4,
+ "ssh_url": "git@github.com:OpenSourceBrain/240382.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/240382/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/240382/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/240382/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/240382/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/240382",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/240382/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/240382/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/240382/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:39Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/240382",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/240954": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/240954/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/240954/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/240954/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/240954/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/240954.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/240954/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/240954/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/240954/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/240954/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/240954/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/240954/contributors",
+ "created_at": "2024-01-11T20:06:41Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/240954/deployments",
+ "description": "MDD: the role of glutamate dysfunction on Cingulo-Frontal NN dynamics (Ramirez-Mahaluf et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/240954/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/240954/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/240954/forks",
+ "full_name": "OpenSourceBrain/240954",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/240954/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/240954/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/240954/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/240954.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/240954",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/240954/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/240954",
+ "id": 742123333,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/240954/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/240954/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/240954/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/240954/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/240954/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/240954/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/240954/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/240954/milestones{/number}",
+ "mirror_url": null,
+ "name": "240954",
+ "node_id": "R_kgDOLDvnRQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/240954/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/240954/pulls{/number}",
+ "pushed_at": "2023-12-23T04:34:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/240954/releases{/id}",
+ "size": 2266,
+ "ssh_url": "git@github.com:OpenSourceBrain/240954.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/240954/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/240954/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/240954/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/240954/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/240954",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/240954/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/240954/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/240954/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:41Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/240954",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/240957": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/240957/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/240957/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/240957/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/240957/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/240957.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/240957/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/240957/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/240957/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/240957/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/240957/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/240957/contributors",
+ "created_at": "2024-01-11T20:06:42Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/240957/deployments",
+ "description": "Extracellular fields for a three-dimensional network of cells using NEURON (Appukuttan et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/240957/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/240957/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/240957/forks",
+ "full_name": "OpenSourceBrain/240957",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/240957/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/240957/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/240957/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/240957.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/240957/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/240957",
+ "id": 742123345,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/240957/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/240957/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/240957/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/240957/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/240957/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/240957/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/240957/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/240957/milestones{/number}",
+ "mirror_url": null,
+ "name": "240957",
+ "node_id": "R_kgDOLDvnUQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/240957/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/240957/pulls{/number}",
+ "pushed_at": "2018-06-05T15:10:13Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/240957/releases{/id}",
+ "size": 149,
+ "ssh_url": "git@github.com:OpenSourceBrain/240957.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/240957/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/240957/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/240957/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/240957/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/240957",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/240957/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/240957/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/240957/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:43Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/240957",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/240960": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/240960/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/240960/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/240960/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/240960/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/240960.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/240960/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/240960/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/240960/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/240960/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/240960/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/240960/contributors",
+ "created_at": "2024-01-11T20:06:44Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/240960/deployments",
+ "description": "CA1 pyramidal neuron: Persistent Na current mediates steep synaptic amplification (Hsu et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/240960/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/240960/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/240960/forks",
+ "full_name": "OpenSourceBrain/240960",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/240960/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/240960/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/240960/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/240960.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/240960/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/240960",
+ "id": 742123361,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/240960/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/240960/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/240960/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/240960/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/240960/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/240960/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/240960/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/240960/milestones{/number}",
+ "mirror_url": null,
+ "name": "240960",
+ "node_id": "R_kgDOLDvnYQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/240960/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/240960/pulls{/number}",
+ "pushed_at": "2018-06-15T20:46:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/240960/releases{/id}",
+ "size": 3390,
+ "ssh_url": "git@github.com:OpenSourceBrain/240960.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/240960/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/240960/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/240960/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/240960/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/240960",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/240960/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/240960/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/240960/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:45Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/240960",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/240961": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/240961/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/240961/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/240961/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/240961/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/240961.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/240961/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/240961/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/240961/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/240961/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/240961/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/240961/contributors",
+ "created_at": "2024-01-11T20:06:46Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/240961/deployments",
+ "description": "Actions of Rotenone on ionic currents and MEPPs in Mouse Hippocampal Neurons (Huang et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/240961/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/240961/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/240961/forks",
+ "full_name": "OpenSourceBrain/240961",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/240961/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/240961/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/240961/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/240961.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/240961/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/240961",
+ "id": 742123377,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/240961/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/240961/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/240961/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/240961/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/240961/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/240961/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/240961/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/240961/milestones{/number}",
+ "mirror_url": null,
+ "name": "240961",
+ "node_id": "R_kgDOLDvncQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/240961/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/240961/pulls{/number}",
+ "pushed_at": "2018-07-11T15:29:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/240961/releases{/id}",
+ "size": 866,
+ "ssh_url": "git@github.com:OpenSourceBrain/240961.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/240961/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/240961/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/240961/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/240961/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/240961",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/240961/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/240961/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/240961/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:47Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/240961",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/241160": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/241160/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/241160/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/241160/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/241160/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/241160.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/241160/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/241160/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/241160/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/241160/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/241160/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/241160/contributors",
+ "created_at": "2024-01-11T20:06:48Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/241160/deployments",
+ "description": "AP initiation, propagation, and cortical invasion in a Layer 5 pyramidal cell (Anderson et 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/241160/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/241160/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/241160/forks",
+ "full_name": "OpenSourceBrain/241160",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/241160/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/241160/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/241160/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/241160.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/241160/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/241160",
+ "id": 742123393,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/241160/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/241160/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/241160/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/241160/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/241160/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/241160/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/241160/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/241160/milestones{/number}",
+ "mirror_url": null,
+ "name": "241160",
+ "node_id": "R_kgDOLDvngQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/241160/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/241160/pulls{/number}",
+ "pushed_at": "2018-05-23T22:25:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/241160/releases{/id}",
+ "size": 8278,
+ "ssh_url": "git@github.com:OpenSourceBrain/241160.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/241160/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/241160/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/241160/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/241160/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/241160",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/241160/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/241160/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/241160/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:49Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/241160",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/241165": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/241165/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/241165/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/241165/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/241165/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/241165.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/241165/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/241165/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/241165/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/241165/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/241165/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/241165/contributors",
+ "created_at": "2024-01-11T20:06:51Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/241165/deployments",
+ "description": "Biophysically realistic neuron models for simulation of cortical stimulation (Aberra et al. 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/241165/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/241165/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/241165/forks",
+ "full_name": "OpenSourceBrain/241165",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/241165/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/241165/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/241165/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/241165.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/241165",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/241165/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/241165",
+ "id": 742123404,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/241165/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/241165/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/241165/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/241165/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/241165/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/241165/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/241165/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/241165/milestones{/number}",
+ "mirror_url": null,
+ "name": "241165",
+ "node_id": "R_kgDOLDvnjA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/241165/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/241165/pulls{/number}",
+ "pushed_at": "2023-11-28T21:24:52Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/241165/releases{/id}",
+ "size": 9724,
+ "ssh_url": "git@github.com:OpenSourceBrain/241165.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/241165/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/241165/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/241165/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/241165/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/241165",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/241165/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/241165/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/241165/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:51Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/241165",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/241169": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/241169/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/241169/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/241169/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/241169/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/241169.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/241169/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/241169/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/241169/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/241169/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/241169/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/241169/contributors",
+ "created_at": "2024-01-12T08:19:28Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/241169/deployments",
+ "description": "M-current in a collision detection neuron (LGMD model) (Dewell & Gabbiani 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/241169/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/241169/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/241169/forks",
+ "full_name": "OpenSourceBrain/241169",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/241169/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/241169/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/241169/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/241169.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/241169",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/241169/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/241169",
+ "id": 742325321,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/241169/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/241169/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/241169/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/241169/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/241169/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/241169/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/241169/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/241169/milestones{/number}",
+ "mirror_url": null,
+ "name": "241169",
+ "node_id": "R_kgDOLD78SQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/241169/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/241169/pulls{/number}",
+ "pushed_at": "2023-06-21T00:21:57Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/241169/releases{/id}",
+ "size": 113,
+ "ssh_url": "git@github.com:OpenSourceBrain/241169.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/241169/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/241169/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/241169/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/241169/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/241169",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/241169/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/241169/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/241169/git/trees{/sha}",
+ "updated_at": "2024-01-12T08:19:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/241169",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/241240": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/241240/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/241240/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/241240/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/241240/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/241240.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/241240/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/241240/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/241240/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/241240/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/241240/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/241240/contributors",
+ "created_at": "2024-01-11T20:06:53Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/241240/deployments",
+ "description": "Role of afferent-hair cell connectivity in determining spike train regularity (Holmes et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/241240/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/241240/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/241240/forks",
+ "full_name": "OpenSourceBrain/241240",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/241240/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/241240/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/241240/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/241240.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/241240",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/241240/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/241240",
+ "id": 742123412,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/241240/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/241240/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/241240/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/241240/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/241240/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/241240/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/241240/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/241240/milestones{/number}",
+ "mirror_url": null,
+ "name": "241240",
+ "node_id": "R_kgDOLDvnlA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/241240/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/241240/pulls{/number}",
+ "pushed_at": "2023-11-28T21:24:55Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/241240/releases{/id}",
+ "size": 137,
+ "ssh_url": "git@github.com:OpenSourceBrain/241240.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/241240/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/241240/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/241240/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/241240/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/241240",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/241240/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/241240/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/241240/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:53Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/241240",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/241796": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/241796/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/241796/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/241796/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/241796/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/241796.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/241796/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/241796/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/241796/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/241796/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/241796/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/241796/contributors",
+ "created_at": "2024-01-11T20:06:55Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/241796/deployments",
+ "description": "Contribution of the axon initial segment to APs recorded extracellularly (Telenczuk et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/241796/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/241796/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/241796/forks",
+ "full_name": "OpenSourceBrain/241796",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/241796/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/241796/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/241796/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/241796.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/241796/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/241796",
+ "id": 742123422,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/241796/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/241796/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/241796/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/241796/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/241796/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/241796/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/241796/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/241796/milestones{/number}",
+ "mirror_url": null,
+ "name": "241796",
+ "node_id": "R_kgDOLDvnng",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/241796/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/241796/pulls{/number}",
+ "pushed_at": "2018-07-11T15:03:09Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/241796/releases{/id}",
+ "size": 719,
+ "ssh_url": "git@github.com:OpenSourceBrain/241796.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/241796/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/241796/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/241796/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/241796/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/241796",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/241796/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/241796/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/241796/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:55Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/241796",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/241826": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/241826/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/241826/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/241826/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/241826/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/241826.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/241826/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/241826/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/241826/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/241826/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/241826/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/241826/contributors",
+ "created_at": "2024-01-11T20:06:56Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/241826/deployments",
+ "description": "Genetic, biochemical and bioelectrical dynamics in pattern regulation (Pietak & Levin 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/241826/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/241826/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/241826/forks",
+ "full_name": "OpenSourceBrain/241826",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/241826/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/241826/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/241826/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/241826.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/241826",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/241826/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/241826",
+ "id": 742123436,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/241826/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/241826/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/241826/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/241826/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/241826/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/241826/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/241826/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/241826/milestones{/number}",
+ "mirror_url": null,
+ "name": "241826",
+ "node_id": "R_kgDOLDvnrA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/241826/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/241826/pulls{/number}",
+ "pushed_at": "2019-12-04T22:36:05Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/241826/releases{/id}",
+ "size": 1905,
+ "ssh_url": "git@github.com:OpenSourceBrain/241826.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/241826/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/241826/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/241826/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/241826/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/241826",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/241826/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/241826/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/241826/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:57Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/241826",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/241932": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/241932/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/241932/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/241932/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/241932/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/241932.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/241932/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/241932/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/241932/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/241932/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/241932/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/241932/contributors",
+ "created_at": "2024-01-11T20:06:59Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/241932/deployments",
+ "description": "Place and grid cells in a loop (Renn\u00f3-Costa & Tort 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/241932/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/241932/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/241932/forks",
+ "full_name": "OpenSourceBrain/241932",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/241932/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/241932/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/241932/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/241932.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/241932/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/241932",
+ "id": 742123445,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/241932/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/241932/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/241932/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/241932/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/241932/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/241932/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/241932/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/241932/milestones{/number}",
+ "mirror_url": null,
+ "name": "241932",
+ "node_id": "R_kgDOLDvntQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/241932/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/241932/pulls{/number}",
+ "pushed_at": "2018-06-06T19:41:56Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/241932/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/241932.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/241932/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/241932/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/241932/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/241932/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/241932",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/241932/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/241932/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/241932/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:06:59Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/241932",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/241979": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/241979/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/241979/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/241979/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/241979/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/241979.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/241979/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/241979/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/241979/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/241979/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/241979/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/241979/contributors",
+ "created_at": "2024-01-11T20:07:00Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/241979/deployments",
+ "description": "Convergence regulates synchronization-dependent AP transfer in feedforward NNs (Sailamul et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/241979/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/241979/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/241979/forks",
+ "full_name": "OpenSourceBrain/241979",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/241979/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/241979/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/241979/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/241979.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/241979/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/241979",
+ "id": 742123457,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/241979/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/241979/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/241979/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/241979/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/241979/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/241979/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/241979/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/241979/milestones{/number}",
+ "mirror_url": null,
+ "name": "241979",
+ "node_id": "R_kgDOLDvnwQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/241979/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/241979/pulls{/number}",
+ "pushed_at": "2018-07-11T14:49:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/241979/releases{/id}",
+ "size": 21,
+ "ssh_url": "git@github.com:OpenSourceBrain/241979.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/241979/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/241979/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/241979/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/241979/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/241979",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/241979/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/241979/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/241979/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:01Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/241979",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243212": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243212/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243212/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243212/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243212/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243212.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243212/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243212/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243212/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243212/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243212/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243212/contributors",
+ "created_at": "2024-01-11T20:07:03Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243212/deployments",
+ "description": "Modeling brain dynamics in brain tumor patients using the Virtual Brain (Aerts et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243212/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243212/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243212/forks",
+ "full_name": "OpenSourceBrain/243212",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243212/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243212/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243212/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243212.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/243212",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243212/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243212",
+ "id": 742123470,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243212/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243212/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243212/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243212/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243212/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243212/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243212/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243212/milestones{/number}",
+ "mirror_url": null,
+ "name": "243212",
+ "node_id": "R_kgDOLDvnzg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243212/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243212/pulls{/number}",
+ "pushed_at": "2023-12-23T04:35:15Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243212/releases{/id}",
+ "size": 6369,
+ "ssh_url": "git@github.com:OpenSourceBrain/243212.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243212/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243212/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243212/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243212/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243212",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243212/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243212/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243212/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:03Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243212",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243350": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243350/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243350/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243350/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243350/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243350.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243350/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243350/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243350/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243350/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243350/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243350/contributors",
+ "created_at": "2024-01-11T20:07:05Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243350/deployments",
+ "description": "Model of the hippocampus over the sleep-wake cycle using Hodgkin-Huxley neurons (Aussel et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243350/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243350/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243350/forks",
+ "full_name": "OpenSourceBrain/243350",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243350/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243350/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243350/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243350.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243350/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243350",
+ "id": 742123480,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243350/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243350/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243350/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243350/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243350/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243350/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243350/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243350/milestones{/number}",
+ "mirror_url": null,
+ "name": "243350",
+ "node_id": "R_kgDOLDvn2A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243350/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243350/pulls{/number}",
+ "pushed_at": "2019-01-18T20:16:03Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243350/releases{/id}",
+ "size": 168,
+ "ssh_url": "git@github.com:OpenSourceBrain/243350.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243350/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243350/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243350/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243350/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243350",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243350/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243350/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243350/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:05Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243350",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243446": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243446/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243446/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243446/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243446/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243446.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243446/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243446/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243446/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243446/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243446/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243446/contributors",
+ "created_at": "2024-01-11T20:07:07Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243446/deployments",
+ "description": "Voltage- and Branch-specific Climbing Fiber Responses in Purkinje Cells (Zang et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243446/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243446/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243446/forks",
+ "full_name": "OpenSourceBrain/243446",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243446/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243446/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243446/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243446.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/243446",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243446/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243446",
+ "id": 742123499,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243446/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243446/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243446/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243446/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243446/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243446/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243446/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243446/milestones{/number}",
+ "mirror_url": null,
+ "name": "243446",
+ "node_id": "R_kgDOLDvn6w",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243446/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243446/pulls{/number}",
+ "pushed_at": "2023-11-28T21:24:59Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243446/releases{/id}",
+ "size": 89,
+ "ssh_url": "git@github.com:OpenSourceBrain/243446.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243446/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243446/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243446/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243446/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243446",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243446/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243446/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243446/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:07Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243446",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243447": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243447/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243447/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243447/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243447/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243447.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243447/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243447/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243447/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243447/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243447/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243447/contributors",
+ "created_at": "2024-01-11T20:07:09Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243447/deployments",
+ "description": "SHOT-CA3, RO-CA1 Training, & Simulation CODE in models of hippocampal replay (Nicola & Clopath 2019)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243447/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243447/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243447/forks",
+ "full_name": "OpenSourceBrain/243447",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243447/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243447/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243447/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243447.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/243447",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243447/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243447",
+ "id": 742123508,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243447/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243447/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243447/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243447/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243447/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243447/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243447/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243447/milestones{/number}",
+ "mirror_url": null,
+ "name": "243447",
+ "node_id": "R_kgDOLDvn9A",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243447/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243447/pulls{/number}",
+ "pushed_at": "2019-07-08T20:18:50Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243447/releases{/id}",
+ "size": 218,
+ "ssh_url": "git@github.com:OpenSourceBrain/243447.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243447/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243447/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243447/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243447/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243447",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243447/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243447/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243447/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:09Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243447",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243448": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243448/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243448/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243448/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243448/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243448.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243448/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243448/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243448/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243448/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243448/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243448/contributors",
+ "created_at": "2024-01-11T20:07:11Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243448/deployments",
+ "description": "Computational model of bladder small DRG neuron soma (Mandge & Manchanda 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243448/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243448/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243448/forks",
+ "full_name": "OpenSourceBrain/243448",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243448/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243448/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243448/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243448.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "http://modeldb.yale.edu/243448",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243448/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243448",
+ "id": 742123526,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243448/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243448/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243448/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243448/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243448/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243448/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243448/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243448/milestones{/number}",
+ "mirror_url": null,
+ "name": "243448",
+ "node_id": "R_kgDOLDvoBg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243448/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243448/pulls{/number}",
+ "pushed_at": "2019-06-04T20:26:11Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243448/releases{/id}",
+ "size": 122,
+ "ssh_url": "git@github.com:OpenSourceBrain/243448.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243448/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243448/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243448/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243448/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243448",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243448/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243448/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243448/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:11Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243448",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243508": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243508/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243508/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243508/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243508/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243508.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243508/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243508/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243508/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243508/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243508/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243508/contributors",
+ "created_at": "2024-01-11T20:07:13Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243508/deployments",
+ "description": "Disentangling astroglial physiology with a realistic cell model in silico (Savtchenko et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243508/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243508/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243508/forks",
+ "full_name": "OpenSourceBrain/243508",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243508/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243508/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243508/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243508.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/243508",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243508/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243508",
+ "id": 742123536,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243508/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243508/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243508/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243508/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243508/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243508/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243508/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243508/milestones{/number}",
+ "mirror_url": null,
+ "name": "243508",
+ "node_id": "R_kgDOLDvoEA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243508/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243508/pulls{/number}",
+ "pushed_at": "2019-05-31T03:19:53Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243508/releases{/id}",
+ "size": 10553,
+ "ssh_url": "git@github.com:OpenSourceBrain/243508.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243508/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243508/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243508/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243508/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243508",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243508/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243508/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243508/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:13Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243508",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243510": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243510/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243510/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243510/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243510/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243510.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243510/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243510/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243510/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243510/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243510/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243510/contributors",
+ "created_at": "2024-01-11T20:07:15Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243510/deployments",
+ "description": "QIF method to estimate synaptic conductances (Vich et al 2017)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243510/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243510/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243510/forks",
+ "full_name": "OpenSourceBrain/243510",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243510/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243510/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243510/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243510.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243510/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243510",
+ "id": 742123548,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243510/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243510/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243510/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243510/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243510/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243510/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243510/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243510/milestones{/number}",
+ "mirror_url": null,
+ "name": "243510",
+ "node_id": "R_kgDOLDvoHA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243510/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243510/pulls{/number}",
+ "pushed_at": "2018-06-28T20:10:47Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243510/releases{/id}",
+ "size": 5882,
+ "ssh_url": "git@github.com:OpenSourceBrain/243510.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243510/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243510/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243510/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243510/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243510",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243510/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243510/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243510/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:15Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243510",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243595": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243595/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243595/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243595/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243595/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243595.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243595/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243595/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243595/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243595/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243595/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243595/contributors",
+ "created_at": "2024-01-11T20:07:17Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243595/deployments",
+ "description": "An oscillatory neural autoencoder based on frequency modulation and multiplexing (Soman et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243595/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243595/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243595/forks",
+ "full_name": "OpenSourceBrain/243595",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243595/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243595/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243595/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243595.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243595/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243595",
+ "id": 742123561,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243595/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243595/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243595/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243595/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243595/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243595/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243595/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243595/milestones{/number}",
+ "mirror_url": null,
+ "name": "243595",
+ "node_id": "R_kgDOLDvoKQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243595/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243595/pulls{/number}",
+ "pushed_at": "2019-08-28T21:49:00Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243595/releases{/id}",
+ "size": 47,
+ "ssh_url": "git@github.com:OpenSourceBrain/243595.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243595/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243595/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243595/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243595/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243595",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243595/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243595/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243595/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:17Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243595",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243841": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243841/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243841/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243841/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243841/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243841.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243841/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243841/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243841/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243841/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243841/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243841/contributors",
+ "created_at": "2024-01-11T20:07:19Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243841/deployments",
+ "description": "Human somatosensory and motor axon pair to compare thresholds (Gaines et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243841/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243841/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243841/forks",
+ "full_name": "OpenSourceBrain/243841",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243841/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243841/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243841/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243841.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243841/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243841",
+ "id": 742123579,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243841/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243841/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243841/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243841/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243841/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243841/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243841/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243841/milestones{/number}",
+ "mirror_url": null,
+ "name": "243841",
+ "node_id": "R_kgDOLDvoOw",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243841/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243841/pulls{/number}",
+ "pushed_at": "2018-07-20T21:29:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243841/releases{/id}",
+ "size": 12,
+ "ssh_url": "git@github.com:OpenSourceBrain/243841.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243841/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243841/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243841/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243841/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243841",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243841/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243841/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243841/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:19Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243841",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/243842": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/243842/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/243842/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/243842/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/243842/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/243842.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/243842/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/243842/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/243842/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/243842/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/243842/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/243842/contributors",
+ "created_at": "2024-01-11T20:07:21Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/243842/deployments",
+ "description": "Action potential of mouse urinary bladder smooth muscle (Mahapatra et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/243842/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/243842/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/243842/forks",
+ "full_name": "OpenSourceBrain/243842",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/243842/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/243842/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/243842/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/243842.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/243842",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/243842/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/243842",
+ "id": 742123593,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/243842/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/243842/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/243842/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/243842/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/243842/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/243842/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/243842/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/243842/milestones{/number}",
+ "mirror_url": null,
+ "name": "243842",
+ "node_id": "R_kgDOLDvoSQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/243842/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/243842/pulls{/number}",
+ "pushed_at": "2019-05-31T03:31:41Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/243842/releases{/id}",
+ "size": 22,
+ "ssh_url": "git@github.com:OpenSourceBrain/243842.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/243842/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/243842/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/243842/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/243842/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/243842",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/243842/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/243842/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/243842/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:21Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/243842",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/244202": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/244202/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/244202/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/244202/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/244202/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/244202.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/244202/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/244202/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/244202/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/244202/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/244202/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/244202/contributors",
+ "created_at": "2024-01-11T20:07:23Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/244202/deployments",
+ "description": "A biophysical model of vestibular ganglion neurons (Hight & Kalluri 2016, Ventura & Kalluri 2018) ",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/244202/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/244202/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/244202/forks",
+ "full_name": "OpenSourceBrain/244202",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/244202/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/244202/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/244202/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/244202.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/244202",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/244202/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/244202",
+ "id": 742123600,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/244202/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/244202/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/244202/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/244202/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/244202/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/244202/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/244202/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/244202/milestones{/number}",
+ "mirror_url": null,
+ "name": "244202",
+ "node_id": "R_kgDOLDvoUA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/244202/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/244202/pulls{/number}",
+ "pushed_at": "2023-12-23T04:35:34Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/244202/releases{/id}",
+ "size": 5344,
+ "ssh_url": "git@github.com:OpenSourceBrain/244202.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/244202/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/244202/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/244202/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/244202/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/244202",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/244202/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/244202/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/244202/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:23Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/244202",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/244261": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/244261/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/244261/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/244261/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/244261/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/244261.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/244261/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/244261/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/244261/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/244261/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/244261/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/244261/contributors",
+ "created_at": "2024-01-11T20:07:25Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/244261/deployments",
+ "description": "A full-scale cortical microcircuit spiking network model (Shimoura et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/244261/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/244261/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/244261/forks",
+ "full_name": "OpenSourceBrain/244261",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/244261/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/244261/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/244261/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/244261.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/244261",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/244261/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/244261",
+ "id": 742123614,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/244261/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/244261/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/244261/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/244261/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/244261/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/244261/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/244261/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/244261/milestones{/number}",
+ "mirror_url": null,
+ "name": "244261",
+ "node_id": "R_kgDOLDvoXg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/244261/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/244261/pulls{/number}",
+ "pushed_at": "2019-05-31T02:56:39Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/244261/releases{/id}",
+ "size": 2733,
+ "ssh_url": "git@github.com:OpenSourceBrain/244261.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/244261/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/244261/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/244261/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/244261/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/244261",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/244261/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/244261/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/244261/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:25Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/244261",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/244262": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/244262/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/244262/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/244262/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/244262/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/244262.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/244262/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/244262/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/244262/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/244262/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/244262/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/244262/contributors",
+ "created_at": "2024-01-11T20:07:27Z",
+ "default_branch": "main",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/244262/deployments",
+ "description": "Deconstruction of cortical evoked potentials generated by subthalamic DBS (Kumaravelu et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/244262/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/244262/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/244262/forks",
+ "full_name": "OpenSourceBrain/244262",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/244262/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/244262/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/244262/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/244262.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/244262",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/244262/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/244262",
+ "id": 742123634,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/244262/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/244262/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/244262/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/244262/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/244262/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/244262/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/244262/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/244262/milestones{/number}",
+ "mirror_url": null,
+ "name": "244262",
+ "node_id": "R_kgDOLDvocg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/244262/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/244262/pulls{/number}",
+ "pushed_at": "2023-04-30T20:01:08Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/244262/releases{/id}",
+ "size": 217,
+ "ssh_url": "git@github.com:OpenSourceBrain/244262.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/244262/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/244262/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/244262/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/244262/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/244262",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/244262/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/244262/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/244262/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:27Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/244262",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/244384": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/244384/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/244384/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/244384/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/244384/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/244384.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/244384/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/244384/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/244384/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/244384/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/244384/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/244384/contributors",
+ "created_at": "2024-01-11T20:07:29Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/244384/deployments",
+ "description": "Excitotoxic loss of dopaminergic cells in PD (Muddapu et al 2019)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/244384/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/244384/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/244384/forks",
+ "full_name": "OpenSourceBrain/244384",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/244384/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/244384/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/244384/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/244384.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/244384",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/244384/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/244384",
+ "id": 742123653,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/244384/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/244384/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/244384/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/244384/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/244384/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/244384/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/244384/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/244384/milestones{/number}",
+ "mirror_url": null,
+ "name": "244384",
+ "node_id": "R_kgDOLDvohQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/244384/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/244384/pulls{/number}",
+ "pushed_at": "2019-05-31T05:05:58Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/244384/releases{/id}",
+ "size": 13,
+ "ssh_url": "git@github.com:OpenSourceBrain/244384.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/244384/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/244384/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/244384/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/244384/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/244384",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/244384/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/244384/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/244384/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:29Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/244384",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/244412": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/244412/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/244412/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/244412/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/244412/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/244412.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/244412/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/244412/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/244412/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/244412/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/244412/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/244412/contributors",
+ "created_at": "2024-01-11T20:07:31Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/244412/deployments",
+ "description": "STDP and BDNF in CA1 spines (Solinas et al. 2019)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/244412/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/244412/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/244412/forks",
+ "full_name": "OpenSourceBrain/244412",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/244412/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/244412/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/244412/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/244412.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.science/244412",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/244412/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/244412",
+ "id": 742123670,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/244412/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/244412/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/244412/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/244412/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/244412/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/244412/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/244412/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/244412/milestones{/number}",
+ "mirror_url": null,
+ "name": "244412",
+ "node_id": "R_kgDOLDvolg",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/244412/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/244412/pulls{/number}",
+ "pushed_at": "2023-11-28T21:25:02Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/244412/releases{/id}",
+ "size": 169,
+ "ssh_url": "git@github.com:OpenSourceBrain/244412.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/244412/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/244412/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/244412/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/244412/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/244412",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/244412/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/244412/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/244412/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:31Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/244412",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/244414": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/244414/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/244414/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/244414/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/244414/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/244414.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/244414/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/244414/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/244414/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/244414/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/244414/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/244414/contributors",
+ "created_at": "2024-01-11T20:07:33Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/244414/deployments",
+ "description": "Voltage and light-sensitive Channelrhodopsin-2 model (ChR2-H134R) (Williams et al. 2013) (NEURON)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/244414/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/244414/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/244414/forks",
+ "full_name": "OpenSourceBrain/244414",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/244414/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/244414/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/244414/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/244414.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": "https://modeldb.yale.edu/244414",
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/244414/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/244414",
+ "id": 742123684,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/244414/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/244414/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/244414/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/244414/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/244414/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/244414/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/244414/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/244414/milestones{/number}",
+ "mirror_url": null,
+ "name": "244414",
+ "node_id": "R_kgDOLDvopA",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/244414/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/244414/pulls{/number}",
+ "pushed_at": "2019-05-31T02:48:40Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/244414/releases{/id}",
+ "size": 48,
+ "ssh_url": "git@github.com:OpenSourceBrain/244414.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/244414/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/244414/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/244414/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/244414/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/244414",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/244414/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/244414/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/244414/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:33Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/244414",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/244416": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/244416/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/244416/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/244416/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/244416/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/244416.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/244416/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/244416/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/244416/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/244416/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/244416/contents/{+path}",
+ "contributors_url": "https://api.github.com/repos/OpenSourceBrain/244416/contributors",
+ "created_at": "2024-01-11T20:07:35Z",
+ "default_branch": "master",
+ "deployments_url": "https://api.github.com/repos/OpenSourceBrain/244416/deployments",
+ "description": "CA1 pyramidal neuron (Combe et al 2018)",
+ "disabled": false,
+ "downloads_url": "https://api.github.com/repos/OpenSourceBrain/244416/downloads",
+ "events_url": "https://api.github.com/repos/OpenSourceBrain/244416/events",
+ "fork": true,
+ "forks": 0,
+ "forks_count": 0,
+ "forks_url": "https://api.github.com/repos/OpenSourceBrain/244416/forks",
+ "full_name": "OpenSourceBrain/244416",
+ "git_commits_url": "https://api.github.com/repos/OpenSourceBrain/244416/git/commits{/sha}",
+ "git_refs_url": "https://api.github.com/repos/OpenSourceBrain/244416/git/refs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/OpenSourceBrain/244416/git/tags{/sha}",
+ "git_url": "git://github.com/OpenSourceBrain/244416.git",
+ "has_discussions": false,
+ "has_downloads": true,
+ "has_issues": false,
+ "has_pages": false,
+ "has_projects": true,
+ "has_wiki": true,
+ "homepage": null,
+ "hooks_url": "https://api.github.com/repos/OpenSourceBrain/244416/hooks",
+ "html_url": "https://github.com/OpenSourceBrain/244416",
+ "id": 742123693,
+ "is_template": false,
+ "issue_comment_url": "https://api.github.com/repos/OpenSourceBrain/244416/issues/comments{/number}",
+ "issue_events_url": "https://api.github.com/repos/OpenSourceBrain/244416/issues/events{/number}",
+ "issues_url": "https://api.github.com/repos/OpenSourceBrain/244416/issues{/number}",
+ "keys_url": "https://api.github.com/repos/OpenSourceBrain/244416/keys{/key_id}",
+ "labels_url": "https://api.github.com/repos/OpenSourceBrain/244416/labels{/name}",
+ "language": null,
+ "languages_url": "https://api.github.com/repos/OpenSourceBrain/244416/languages",
+ "license": null,
+ "merges_url": "https://api.github.com/repos/OpenSourceBrain/244416/merges",
+ "milestones_url": "https://api.github.com/repos/OpenSourceBrain/244416/milestones{/number}",
+ "mirror_url": null,
+ "name": "244416",
+ "node_id": "R_kgDOLDvorQ",
+ "notifications_url": "https://api.github.com/repos/OpenSourceBrain/244416/notifications{?since,all,participating}",
+ "open_issues": 0,
+ "open_issues_count": 0,
+ "owner": {
+ "avatar_url": "https://avatars.githubusercontent.com/u/1565478?v=4",
+ "events_url": "https://api.github.com/users/OpenSourceBrain/events{/privacy}",
+ "followers_url": "https://api.github.com/users/OpenSourceBrain/followers",
+ "following_url": "https://api.github.com/users/OpenSourceBrain/following{/other_user}",
+ "gists_url": "https://api.github.com/users/OpenSourceBrain/gists{/gist_id}",
+ "gravatar_id": "",
+ "html_url": "https://github.com/OpenSourceBrain",
+ "id": 1565478,
+ "login": "OpenSourceBrain",
+ "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU0Nzg=",
+ "organizations_url": "https://api.github.com/users/OpenSourceBrain/orgs",
+ "received_events_url": "https://api.github.com/users/OpenSourceBrain/received_events",
+ "repos_url": "https://api.github.com/users/OpenSourceBrain/repos",
+ "site_admin": false,
+ "starred_url": "https://api.github.com/users/OpenSourceBrain/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/OpenSourceBrain/subscriptions",
+ "type": "Organization",
+ "url": "https://api.github.com/users/OpenSourceBrain"
+ },
+ "permissions": {
+ "admin": true,
+ "maintain": true,
+ "pull": true,
+ "push": true,
+ "triage": true
+ },
+ "private": false,
+ "pulls_url": "https://api.github.com/repos/OpenSourceBrain/244416/pulls{/number}",
+ "pushed_at": "2018-09-17T20:39:14Z",
+ "releases_url": "https://api.github.com/repos/OpenSourceBrain/244416/releases{/id}",
+ "size": 190,
+ "ssh_url": "git@github.com:OpenSourceBrain/244416.git",
+ "stargazers_count": 0,
+ "stargazers_url": "https://api.github.com/repos/OpenSourceBrain/244416/stargazers",
+ "statuses_url": "https://api.github.com/repos/OpenSourceBrain/244416/statuses/{sha}",
+ "subscribers_url": "https://api.github.com/repos/OpenSourceBrain/244416/subscribers",
+ "subscription_url": "https://api.github.com/repos/OpenSourceBrain/244416/subscription",
+ "svn_url": "https://github.com/OpenSourceBrain/244416",
+ "tags_url": "https://api.github.com/repos/OpenSourceBrain/244416/tags",
+ "teams_url": "https://api.github.com/repos/OpenSourceBrain/244416/teams",
+ "topics": [],
+ "trees_url": "https://api.github.com/repos/OpenSourceBrain/244416/git/trees{/sha}",
+ "updated_at": "2024-01-11T20:07:35Z",
+ "url": "https://api.github.com/repos/OpenSourceBrain/244416",
+ "visibility": "public",
+ "watchers": 0,
+ "watchers_count": 0,
+ "web_commit_signoff_required": false
+ },
+ "https://api.github.com/repos/OpenSourceBrain/244485": {
+ "allow_forking": true,
+ "archive_url": "https://api.github.com/repos/OpenSourceBrain/244485/{archive_format}{/ref}",
+ "archived": false,
+ "assignees_url": "https://api.github.com/repos/OpenSourceBrain/244485/assignees{/user}",
+ "blobs_url": "https://api.github.com/repos/OpenSourceBrain/244485/git/blobs{/sha}",
+ "branches_url": "https://api.github.com/repos/OpenSourceBrain/244485/branches{/branch}",
+ "clone_url": "https://github.com/OpenSourceBrain/244485.git",
+ "collaborators_url": "https://api.github.com/repos/OpenSourceBrain/244485/collaborators{/collaborator}",
+ "comments_url": "https://api.github.com/repos/OpenSourceBrain/244485/comments{/number}",
+ "commits_url": "https://api.github.com/repos/OpenSourceBrain/244485/commits{/sha}",
+ "compare_url": "https://api.github.com/repos/OpenSourceBrain/244485/compare/{base}...{head}",
+ "contents_url": "https://api.github.com/repos/OpenSourceBrain/244485/contents/{+path}",
+ "contrib